[FFmpeg-devel] [PATCH] lavfi/dnn_backend_openvino.c: Correct Pointer Type while Freeing

Guo, Yejun yejun.guo at intel.com
Fri May 28 03:59:52 EEST 2021



> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces at ffmpeg.org> On Behalf Of
> Shubhanshu Saxena
> Sent: 2021年5月28日 2:06
> To: ffmpeg-devel at ffmpeg.org
> Cc: Shubhanshu Saxena <shubhanshu.e01 at gmail.com>
> Subject: [FFmpeg-devel] [PATCH] lavfi/dnn_backend_openvino.c: Correct
> Pointer Type while Freeing
> 
> This commit corrects the type of pointer of elements from the
> inference queue in ff_dnn_free_model_ov.
> 
> Signed-off-by: Shubhanshu Saxena <shubhanshu.e01 at gmail.com>
> ---
>  libavfilter/dnn/dnn_backend_openvino.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/dnn/dnn_backend_openvino.c
> b/libavfilter/dnn/dnn_backend_openvino.c
> index e0781e854a..58c4ec9c9b 100644
> --- a/libavfilter/dnn/dnn_backend_openvino.c
> +++ b/libavfilter/dnn/dnn_backend_openvino.c
> @@ -963,7 +963,7 @@ void ff_dnn_free_model_ov(DNNModel **model)
>          ff_safe_queue_destroy(ov_model->request_queue);
> 
>          while (ff_queue_size(ov_model->inference_queue) != 0) {
> -            TaskItem *item =
> ff_queue_pop_front(ov_model->inference_queue);
> +            InferenceItem *item =
> ff_queue_pop_front(ov_model->inference_queue);
>              av_freep(&item);
>          }
>          ff_queue_destroy(ov_model->inference_queue);

thanks for the catch, will push soon.


More information about the ffmpeg-devel mailing list