]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/dvbsubdec: Print field lens in case they are too lerge
authorMichael Niedermayer <michael@niedermayer.cc>
Wed, 12 Aug 2015 23:50:08 +0000 (01:50 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Wed, 12 Aug 2015 23:50:08 +0000 (01:50 +0200)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/dvbsubdec.c

index 21ef43f3032d2e01b502c2df9610a2447592d640..ec7c146001b81ea12ec3c2db18583eb68ab449b3 100644 (file)
@@ -1090,7 +1090,7 @@ static int dvbsub_parse_object_segment(AVCodecContext *avctx,
         buf += 2;
 
         if (buf + top_field_len + bottom_field_len > buf_end) {
-            av_log(avctx, AV_LOG_ERROR, "Field data size too large\n");
+            av_log(avctx, AV_LOG_ERROR, "Field data size %d+%d too large\n", top_field_len, bottom_field_len);
             return AVERROR_INVALIDDATA;
         }