Re: [FFmpeg-devel] [PATCH] libavfilter/dnn/dnn_backend_openvino.c: fix openvino async mode

2022-12-16 Thread Saliev, Rafik F
yejun@intel.com: > There's a warning at > https://patchwork.ffmpeg.org/project/ffmpeg/patch/ph7pr11mb5887f1a68c19249217a6c09eda...@ph7pr11mb5887.namprd11.prod.outlook.com/, > > please fix and send v2 patch, thanks. The warning was reported against the 'context' field in the patch subject. A

[FFmpeg-devel] [PATCH v2] libavfilter/dnn: fix openvino async mode

2022-12-16 Thread Saliev, Rafik F
Bugfix: The OpenVino DNN backend in the 'async' mode sets 'task->inference_done' to 'complete' prior to data copy from OpenVino output buffer to task's output frame. This order causes task destroy in ff_dnn_get_result_common() prior to model output processing. Signed-off-by: Rafik Saliev --- lib

[FFmpeg-devel] [PATCH v2] libavfilter/dnn: fix openvino async mode

2022-12-16 Thread Saliev, Rafik F
Bugfix: The OpenVino DNN backend in the 'async' mode sets 'task->inference_done' to 'complete' prior to data copy from OpenVino output buffer to task's output frame. This order causes task destroy in ff_dnn_get_result_common() prior to model output processing. Signed-off-by: Rafik Saliev --- lib

[FFmpeg-devel] [PATCH] configure: add OpenVino v.2022.x support

2022-12-12 Thread Saliev, Rafik F
Since OpenVino release 2022.1, the C API library filename changed from 'libinference_engine_c_api.so' to 'libopenvino_c.so'. This commit reflects such rename in the 'configure' script. Signed-off-by: Rafik Saliev --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a

[FFmpeg-devel] [PATCH] libavfilter/dnn/dnn_backend_openvino.c: fix openvino async mode

2022-12-12 Thread Saliev, Rafik F
Bugfix: The OpenVino DNN backend in the 'async' mode sets 'task->inference_done' to 'complete' prior to data copy from OpenVino output buffer to task's output frame. This order causes task destroy in ff_dnn_get_result_common() prior to model output processing. Signed-off-by: Rafik Saliev --- lib