diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-03-05 12:51:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-03-14 16:24:35 +0100 |
commit | 9a9f0e239c1c6f5c96cc90ba673087f86ca1eabc (patch) | |
tree | 4ae3f09e95f6aa464ec64f7f34378efaa449092d /libavcodec/cdgraphics.c | |
parent | 38381400fca45d1ae6e7604335b507b7dc70a903 (diff) | |
download | ffmpeg-streaming-9a9f0e239c1c6f5c96cc90ba673087f86ca1eabc.zip ffmpeg-streaming-9a9f0e239c1c6f5c96cc90ba673087f86ca1eabc.tar.gz |
avcodec/cdgraphics: Use ff_set_dimensions()
Fixes: Timeout (17 sec -> 65 milli sec)
Fixes: 13264/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CDGRAPHICS_fuzzer-5711167941509120
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/cdgraphics.c')
-rw-r--r-- | libavcodec/cdgraphics.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/cdgraphics.c b/libavcodec/cdgraphics.c index be85e54..cf3f01a 100644 --- a/libavcodec/cdgraphics.c +++ b/libavcodec/cdgraphics.c @@ -81,11 +81,8 @@ static av_cold int cdg_decode_init(AVCodecContext *avctx) return AVERROR(ENOMEM); cc->transparency = -1; - avctx->width = CDG_FULL_WIDTH; - avctx->height = CDG_FULL_HEIGHT; avctx->pix_fmt = AV_PIX_FMT_PAL8; - - return 0; + return ff_set_dimensions(avctx, CDG_FULL_WIDTH, CDG_FULL_HEIGHT); } static void cdg_border_preset(CDGraphicsContext *cc, uint8_t *data) |