]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dvdsub_parser.c
avcodec: disable FF_API_FAST_MALLOC
[ffmpeg] / libavcodec / dvdsub_parser.c
index 07ed4f72fc80e2a3aa3c7b0eaf1b16445c53f821..32a945ed6532f227b5154cddd00dbd218b5be498 100644 (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);