summaryrefslogtreecommitdiff
path: root/libavcodec/dvdsub_parser.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-02 01:16:14 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-02 01:17:24 +0200
commitbcc898dd2643c883522ffa565be4b226ce798c78 (patch)
treed551a808f8c1d5b444b3ceae383c081dab0ea73c /libavcodec/dvdsub_parser.c
parent81c1657a593b1c0f8e46fca00ead1d30ee1cd418 (diff)
downloadffmpeg-bcc898dd2643c883522ffa565be4b226ce798c78.tar.gz
avcodec/dvdsub_parser: print message if packet is smaller than the packet size field
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dvdsub_parser.c')
-rw-r--r--libavcodec/dvdsub_parser.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dvdsub_parser.c b/libavcodec/dvdsub_parser.c
index 07ed4f72fc..32a945ed65 100644
--- a/libavcodec/dvdsub_parser.c
+++ b/libavcodec/dvdsub_parser.c
@@ -46,6 +46,8 @@ static int dvdsub_parse(AVCodecParserContext *s,
if (pc->packet_index == 0) {
if (buf_size < 2 || AV_RB16(buf) && buf_size < 6) {
+ if (buf_size)
+ av_log(avctx, AV_LOG_DEBUG, "Parser input %d too small\n", buf_size);
return buf_size;
}
pc->packet_len = AV_RB16(buf);