mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-16 20:31:32 +00:00
vf_misc_vaapi: Add missing return value checks
Parameter buffer creation can fail.
This commit is contained in:
parent
6ed34a4379
commit
5fb9eb9ed2
@ -84,10 +84,9 @@ static int denoise_vaapi_build_filter_params(AVFilterContext *avctx)
|
||||
denoise.value = map(ctx->denoise, DENOISE_MIN, DENOISE_MAX,
|
||||
caps.range.min_value,
|
||||
caps.range.max_value);
|
||||
ff_vaapi_vpp_make_param_buffers(avctx, VAProcFilterParameterBufferType,
|
||||
&denoise, sizeof(denoise), 1);
|
||||
|
||||
return 0;
|
||||
return ff_vaapi_vpp_make_param_buffers(avctx,
|
||||
VAProcFilterParameterBufferType,
|
||||
&denoise, sizeof(denoise), 1);
|
||||
}
|
||||
|
||||
static int sharpness_vaapi_build_filter_params(AVFilterContext *avctx)
|
||||
@ -116,11 +115,9 @@ static int sharpness_vaapi_build_filter_params(AVFilterContext *avctx)
|
||||
SHARPNESS_MIN, SHARPNESS_MAX,
|
||||
caps.range.min_value,
|
||||
caps.range.max_value);
|
||||
ff_vaapi_vpp_make_param_buffers(avctx,
|
||||
VAProcFilterParameterBufferType,
|
||||
&sharpness, sizeof(sharpness), 1);
|
||||
|
||||
return 0;
|
||||
return ff_vaapi_vpp_make_param_buffers(avctx,
|
||||
VAProcFilterParameterBufferType,
|
||||
&sharpness, sizeof(sharpness), 1);
|
||||
}
|
||||
|
||||
static int misc_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame)
|
||||
|
Loading…
Reference in New Issue
Block a user