diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-13 04:20:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-13 04:30:29 +0100 |
commit | 849ad5175b7980aab5801a1ee15dbd0d595cd3c8 (patch) | |
tree | ee382b7aa6744bda6b168addf1c4bc70b2c498be /libavformat | |
parent | c7ad1f562b0fe46b77a8a9987a0d3512fc8197ea (diff) | |
download | ffmpeg-849ad5175b7980aab5801a1ee15dbd0d595cd3c8.tar.gz |
avformat/mov: Heuristically detect raw udta
Fixes tkhd+moov fragment provided by koda
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mov.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 52b6728544..fb3edee129 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -338,7 +338,7 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) case MKTAG(0xa9,'w','r','t'): key = "composer"; break; case MKTAG(0xa9,'x','y','z'): key = "location"; break; } - +retry: if (c->itunes_metadata && atom.size > 8) { int data_size = avio_rb32(pb); int tag = avio_rl32(pb); @@ -358,6 +358,11 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) } else return 0; } else if (atom.size > 4 && key && !c->itunes_metadata && !raw) { str_size = avio_rb16(pb); // string length + if (str_size > atom.size) { + raw = 1; + avio_seek(pb, -2, SEEK_CUR); + goto retry; + } langcode = avio_rb16(pb); ff_mov_lang_to_iso639(langcode, language); atom.size -= 4; |