summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-14 11:58:01 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-14 13:02:24 +0100
commitad1549aec3ea826a61637557701acde9d4fc0541 (patch)
treef63ae01ad28c6bf86fd2398a7f5afb0d01779c35 /libavformat
parentac7fc444eed553d5010c5860f2e91bfa42628e08 (diff)
avformat/mov: print a warning if parsing udta failed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c1
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);