mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
gst/qtdemux/qtdemux.c: Extract comment information!!
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta): Extract comment information!!
This commit is contained in:
parent
07a62a3b69
commit
4c58388cd5
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-07-10 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
|
||||||
|
Extract comment information!!
|
||||||
|
|
||||||
2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
|
2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
|
* gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
|
||||||
|
|
|
@ -3713,6 +3713,11 @@ qtdemux_parse_udta (GstQTDemux * qtdemux, GNode * udta)
|
||||||
qtdemux_tag_add_date (qtdemux, GST_TAG_DATE, node);
|
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);
|
node = qtdemux_tree_get_child_by_type (ilst, FOURCC_trkn);
|
||||||
if (node) {
|
if (node) {
|
||||||
qtdemux_tag_add_num (qtdemux, GST_TAG_TRACK_NUMBER,
|
qtdemux_tag_add_num (qtdemux, GST_TAG_TRACK_NUMBER,
|
||||||
|
|
Loading…
Reference in a new issue