From ad1549aec3ea826a61637557701acde9d4fc0541 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 14 Feb 2015 11:58:01 +0100 Subject: [PATCH] avformat/mov: print a warning if parsing udta failed Signed-off-by: Michael Niedermayer --- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) 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);