]> git.sesse.net Git - ffmpeg/commitdiff
dnn_backend_openvino.c: remove extra semicolon
authorGuo, Yejun <yejun.guo@intel.com>
Tue, 26 Jan 2021 00:22:27 +0000 (08:22 +0800)
committerGuo, Yejun <yejun.guo@intel.com>
Thu, 28 Jan 2021 01:45:13 +0000 (09:45 +0800)
libavfilter/dnn/dnn_backend_openvino.c

index 9329891c3fcab85a5694737de56d23a49e36d5e7..beca256390b4313a416ef9d87242e459f7b938b5 100644 (file)
@@ -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;