mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
avidemux: Stop reading a ncdt sub-tag if it goes behind the surrounding tag
https://bugzilla.gnome.org/show_bug.cgi?id=777532
This commit is contained in:
parent
32d9f3c158
commit
4f478357ae
1 changed files with 3 additions and 0 deletions
|
@ -3914,6 +3914,9 @@ gst_avi_demux_parse_ncdt (GstAviDemux * avi, GstBuffer * buf,
|
|||
ptr += 4;
|
||||
left -= 4;
|
||||
|
||||
if (sub_size > tsize)
|
||||
break;
|
||||
|
||||
GST_DEBUG_OBJECT (avi, "sub-tag %u, size %u", sub_tag, sub_size);
|
||||
/* http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html#NCTG
|
||||
* for some reason the sub_tag has a +2 offset
|
||||
|
|
Loading…
Reference in a new issue