mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/av1dec: partially clean state on frame decoding errors
Fixes: member access within null pointer of type 'TileGroupInfo' (aka 'struct TileGroupInfo') Fixes: 25725/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AV1_fuzzer-5166692706287616 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
069d2b4a50
commit
05872c67a4
|
@ -686,6 +686,7 @@ static int av1_decode_frame(AVCodecContext *avctx, void *frame,
|
||||||
ret = set_context_with_sequence(avctx, s->raw_seq);
|
ret = set_context_with_sequence(avctx, s->raw_seq);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Failed to set context.\n");
|
av_log(avctx, AV_LOG_ERROR, "Failed to set context.\n");
|
||||||
|
s->raw_seq = NULL;
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -694,6 +695,7 @@ static int av1_decode_frame(AVCodecContext *avctx, void *frame,
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR,
|
av_log(avctx, AV_LOG_ERROR,
|
||||||
"Failed to get pixel format.\n");
|
"Failed to get pixel format.\n");
|
||||||
|
s->raw_seq = NULL;
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -703,6 +705,7 @@ static int av1_decode_frame(AVCodecContext *avctx, void *frame,
|
||||||
unit->data_size);
|
unit->data_size);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "HW accel decode params fail.\n");
|
av_log(avctx, AV_LOG_ERROR, "HW accel decode params fail.\n");
|
||||||
|
s->raw_seq = NULL;
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -841,6 +844,8 @@ static int av1_decode_frame(AVCodecContext *avctx, void *frame,
|
||||||
|
|
||||||
end:
|
end:
|
||||||
ff_cbs_fragment_reset(&s->current_obu);
|
ff_cbs_fragment_reset(&s->current_obu);
|
||||||
|
if (ret < 0)
|
||||||
|
s->raw_frame_header = NULL;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue