diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-14 11:58:01 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-14 13:02:24 +0100 |
commit | ad1549aec3ea826a61637557701acde9d4fc0541 (patch) | |
tree | f63ae01ad28c6bf86fd2398a7f5afb0d01779c35 /libavformat/mov.c | |
parent | ac7fc444eed553d5010c5860f2e91bfa42628e08 (diff) | |
download | ffmpeg-ad1549aec3ea826a61637557701acde9d4fc0541.tar.gz |
avformat/mov: print a warning if parsing udta failed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index fb3edee129..636c2bbb0a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -361,6 +361,7 @@ retry: if (str_size > atom.size) { raw = 1; avio_seek(pb, -2, SEEK_CUR); + av_log(c->fc, AV_LOG_WARNING, "UDTA parsing failed retrying raw\n"); goto retry; } langcode = avio_rb16(pb); |