]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/cdgraphics: Clear first frame only once
authorMichael Niedermayer <michael@niedermayer.cc>
Sun, 15 Jul 2018 12:12:56 +0000 (14:12 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Mon, 23 Jul 2018 00:58:38 +0000 (02:58 +0200)
frame_number will not increase if nothing is output

Fixes: Timeout
Fixes: 9057/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CDGRAPHICS_fuzzer-4844661498707968
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/cdgraphics.c

index 87ad5e79f441fa7514b3e19817fafbad82a93b90..be85e542887872af1c99145a729bec7b2bc00f7b 100644 (file)
@@ -69,6 +69,7 @@ typedef struct CDGraphicsContext {
     int hscroll;
     int vscroll;
     int transparency;
+    int cleared;
 } CDGraphicsContext;
 
 static av_cold int cdg_decode_init(AVCodecContext *avctx)
@@ -287,9 +288,10 @@ static int cdg_decode_frame(AVCodecContext *avctx,
 
     if ((ret = ff_reget_buffer(avctx, cc->frame)) < 0)
         return ret;
-    if (!avctx->frame_number) {
+    if (!cc->cleared) {
         memset(cc->frame->data[0], 0, cc->frame->linesize[0] * avctx->height);
         memset(cc->frame->data[1], 0, AVPALETTE_SIZE);
+        cc->cleared = 1;
     }
 
     command = bytestream2_get_byte(&gb);