Browse Source

dnn_backend_openvino.c: allow out_frame as NULL for analytic case

tags/n4.4
Ting Fu Guo, Yejun 4 years ago
parent
commit
b0d75a8de9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/dnn/dnn_backend_openvino.c

+ 2
- 2
libavfilter/dnn/dnn_backend_openvino.c View File

@@ -616,7 +616,7 @@ DNNReturnType ff_dnn_execute_model_ov(const DNNModel *model, const char *input_n
return DNN_ERROR;
}

if (!out_frame) {
if (!out_frame && model->func_type == DFT_PROCESS_FRAME) {
av_log(ctx, AV_LOG_ERROR, "out frame is NULL when execute model.\n");
return DNN_ERROR;
}
@@ -669,7 +669,7 @@ DNNReturnType ff_dnn_execute_model_async_ov(const DNNModel *model, const char *i
return DNN_ERROR;
}

if (!out_frame) {
if (!out_frame && model->func_type == DFT_PROCESS_FRAME) {
av_log(ctx, AV_LOG_ERROR, "out frame is NULL when async execute model.\n");
return DNN_ERROR;
}


Loading…
Cancel
Save