diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-13 01:50:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-13 01:50:08 +0200 |
commit | d21ab8e4119e9f5ace30a813ed1af0d98b3782f1 (patch) | |
tree | 3777f238c7c8831a4105bf871772018c7aa89006 /libavcodec | |
parent | 8009a1f1fdce16a59ea911e2b768e56ec4c8e344 (diff) | |
download | ffmpeg-d21ab8e4119e9f5ace30a813ed1af0d98b3782f1.tar.gz |
avcodec/dvbsubdec: Print field lens in case they are too lerge
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dvbsubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index 21ef43f303..ec7c146001 100644 --- a/libavcodec/dvbsubdec.c +++ b/libavcodec/dvbsubdec.c @@ -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; } |