summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorGuo, Yejun <yejun.guo@intel.com>2021-01-26 08:22:27 +0800
committerGuo, Yejun <yejun.guo@intel.com>2021-01-28 09:45:13 +0800
commiteccc7971c2eb2c4aca0fa321298d5e1957c0cb4c (patch)
treea1f1669b2ba78629d8b6f6869cf4f00fa312e516 /libavfilter
parent06c01f1763bd2a9266659be6097d2fc07e014163 (diff)
dnn_backend_openvino.c: remove extra semicolon
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/dnn/dnn_backend_openvino.c6
1 files 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;