toc: Add boxed types for GstToc and GstTocEntry
diff --git a/gst/gsttoc.c b/gst/gsttoc.c
index f04fbdf..44f3b0a 100644
--- a/gst/gsttoc.c
+++ b/gst/gsttoc.c
@@ -72,6 +72,11 @@
 #include "gstpad.h"
 #include "gstquark.h"
 
+G_DEFINE_BOXED_TYPE (GstToc, gst_toc,
+    (GBoxedCopyFunc) gst_toc_copy, (GBoxedFreeFunc) gst_toc_free);
+G_DEFINE_BOXED_TYPE (GstTocEntry, gst_toc_entry,
+    (GBoxedCopyFunc) gst_toc_entry_copy, (GBoxedFreeFunc) gst_toc_entry_free);
+
 /**
  * gst_toc_new:
  *