mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
tools/target_dec_fuzzer: set some avctx->export_side_data flags
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
247d513beb
commit
ae4c364e92
@ -338,7 +338,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
if ((flags & 0x10) && c->p.id != AV_CODEC_ID_H264)
|
||||
ctx->flags2 |= AV_CODEC_FLAG2_FAST;
|
||||
if (flags & 0x80)
|
||||
ctx->flags2 |= AV_CODEC_FLAG2_EXPORT_MVS;
|
||||
ctx->export_side_data |= AV_CODEC_EXPORT_DATA_MVS;
|
||||
|
||||
if (flags & 0x40)
|
||||
av_force_cpu_flags(0);
|
||||
@ -406,6 +406,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
ctx->debug |= FF_DEBUG_QP;
|
||||
if (flags64 &4)
|
||||
ctx->debug |= FF_DEBUG_MB_TYPE;
|
||||
if (flags64 & 8)
|
||||
ctx->export_side_data |= AV_CODEC_EXPORT_DATA_VIDEO_ENC_PARAMS;
|
||||
|
||||
if (extradata_size < size) {
|
||||
ctx->extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
|
Loading…
Reference in New Issue
Block a user