mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
qtdemux: strip out bogus tags from XMP atom
https://bugzilla.gnome.org/show_bug.cgi?id=623366
This commit is contained in:
parent
0b5172eb06
commit
fcf1995020
1 changed files with 4 additions and 0 deletions
|
@ -6980,7 +6980,11 @@ qtdemux_parse_udta (GstQTDemux * qtdemux, GNode * udta)
|
|||
|
||||
taglist = gst_tag_list_from_xmp_buffer (buf);
|
||||
gst_buffer_unref (buf);
|
||||
|
||||
/* Strip out bogus fields */
|
||||
|
||||
if (taglist) {
|
||||
gst_tag_list_remove_tag (taglist, GST_TAG_VIDEO_CODEC);
|
||||
if (qtdemux->tag_list) {
|
||||
GST_DEBUG_OBJECT (qtdemux, "Found XMP tags");
|
||||
|
||||
|
|
Loading…
Reference in a new issue