> -----Original Message-----
> From: ffmpeg-devel <[email protected]> On Behalf Of
> Shubhanshu Saxena
> Sent: 2021年5月28日 2:06
> To: [email protected]
> Cc: Shubhanshu Saxena <[email protected]>
> 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 <[email protected]>
> ---
>  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.
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to