diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2006-07-10 09:57:26 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-07-10 09:57:26 +0000 |
commit | a6b2a99472d181451dc60ab18c3d32cdd2bfb4c2 (patch) | |
tree | 26fe6b021b9c5c2d42cfe6a8501c055fa70f9ae0 /gst | |
parent | 63cc2135a56e52b144904ad78f2b340e98bd5b43 (diff) |
gst/qtdemux/qtdemux.c: Extract comment information!!
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
Extract comment information!!
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 2fc0a06a..291f0731 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -3713,6 +3713,11 @@ qtdemux_parse_udta (GstQTDemux * qtdemux, GNode * udta) qtdemux_tag_add_date (qtdemux, GST_TAG_DATE, node); } + node = qtdemux_tree_get_child_by_type (ilst, FOURCC__too); + if (node) { + qtdemux_tag_add_str (qtdemux, GST_TAG_COMMENT, node); + } + node = qtdemux_tree_get_child_by_type (ilst, FOURCC_trkn); if (node) { qtdemux_tag_add_num (qtdemux, GST_TAG_TRACK_NUMBER, |