Browse Source

avcodec/dvdsub_parser: print message if packet is smaller than the packet size field

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer 11 years ago
parent
commit
bcc898dd26
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/dvdsub_parser.c

+ 2
- 0
libavcodec/dvdsub_parser.c View File

@@ -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);


Loading…
Cancel
Save