commit | 6f54f3619960c6c08d21dafe53cffaf74ab459e1 | [log] [tgz] |
---|---|---|
author | Anton Belka <antonbelka@gmail.com> | Mon May 21 01:48:29 2012 +0300 |
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | Mon May 21 08:46:48 2012 +0200 |
tree | 9da2ee66a5704b3979944d567aa3c6446667024d | |
parent | 04f8cd886daf88b6ce2e0a65a343219d6a863bbb [diff] [blame] |
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: *