diff mbox series

[FFmpeg-devel,3/3] dnn_backend_openvino.c: remove extra semicolon

Message ID 20210126012507.10969-1-yejun.guo@intel.com
State Accepted
Commit eccc7971c2eb2c4aca0fa321298d5e1957c0cb4c
Headers show
Series [FFmpeg-devel,1/3] tests/dnn: enable unit test dense | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Guo, Yejun Jan. 26, 2021, 1:25 a.m. UTC
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
---
 libavfilter/dnn/dnn_backend_openvino.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Guo, Yejun Jan. 27, 2021, 12:25 a.m. UTC | #1
> -----Original Message-----
> From: Guo, Yejun <yejun.guo@intel.com>
> Sent: 2021年1月26日 9:25
> To: ffmpeg-devel@ffmpeg.org
> Cc: Guo, Yejun <yejun.guo@intel.com>
> Subject: [PATCH 3/3] dnn_backend_openvino.c: remove extra semicolon
> 
> Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
> ---
>  libavfilter/dnn/dnn_backend_openvino.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/libavfilter/dnn/dnn_backend_openvino.c
> b/libavfilter/dnn/dnn_backend_openvino.c
> index 9329891c3f..beca256390 100644
> --- a/libavfilter/dnn/dnn_backend_openvino.c
> +++ b/libavfilter/dnn/dnn_backend_openvino.c
> @@ -485,7 +485,7 @@ static DNNReturnType get_output_ov(void *model,
> const char *input_name, int inpu
>          if (init_model_ov(ov_model) != DNN_SUCCESS) {
>              av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable
> network or inference request\n");
>              return DNN_ERROR;
> -        };
> +        }
>      }
> 
>      task.done = 0;
> @@ -601,7 +601,7 @@ DNNReturnType ff_dnn_execute_model_ov(const
> DNNModel *model, const char *input_n
>          if (init_model_ov(ov_model) != DNN_SUCCESS) {
>              av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable
> network or inference request\n");
>              return DNN_ERROR;
> -        };
> +        }
>      }
> 
>      task.done = 0;
> @@ -648,7 +648,7 @@ DNNReturnType
> ff_dnn_execute_model_async_ov(const DNNModel *model, const char *i
>          if (init_model_ov(ov_model) != DNN_SUCCESS) {
>              av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable
> network or inference request\n");
>              return DNN_ERROR;
> -        };
> +        }
>      }
> 
>      task->done = 0;
> --
> 2.17.1

will push this patch set tomorrow if no other comment, thanks
diff mbox series

Patch

diff --git a/libavfilter/dnn/dnn_backend_openvino.c b/libavfilter/dnn/dnn_backend_openvino.c
index 9329891c3f..beca256390 100644
--- a/libavfilter/dnn/dnn_backend_openvino.c
+++ b/libavfilter/dnn/dnn_backend_openvino.c
@@ -485,7 +485,7 @@  static DNNReturnType get_output_ov(void *model, const char *input_name, int inpu
         if (init_model_ov(ov_model) != DNN_SUCCESS) {
             av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n");
             return DNN_ERROR;
-        };
+        }
     }
 
     task.done = 0;
@@ -601,7 +601,7 @@  DNNReturnType ff_dnn_execute_model_ov(const DNNModel *model, const char *input_n
         if (init_model_ov(ov_model) != DNN_SUCCESS) {
             av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n");
             return DNN_ERROR;
-        };
+        }
     }
 
     task.done = 0;
@@ -648,7 +648,7 @@  DNNReturnType ff_dnn_execute_model_async_ov(const DNNModel *model, const char *i
         if (init_model_ov(ov_model) != DNN_SUCCESS) {
             av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n");
             return DNN_ERROR;
-        };
+        }
     }
 
     task->done = 0;