Browse Source

dnn/dnn_backend_native: Fix typo in log message

Reviewed-by: Guo, Yejun <yejun.guo@intel.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 4 years ago
parent
commit
f51f13902b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/dnn/dnn_backend_native.c

+ 1
- 1
libavfilter/dnn/dnn_backend_native.c View File

@@ -331,7 +331,7 @@ static DNNReturnType execute_model_native(const DNNModel *model, const char *inp
native_model->layers[layer].output_operand_index,
native_model->layers[layer].params,
&native_model->ctx) == DNN_ERROR) {
av_log(ctx, AV_LOG_ERROR, "Failed to execuet model\n");
av_log(ctx, AV_LOG_ERROR, "Failed to execute model\n");
return DNN_ERROR;
}
}


Loading…
Cancel
Save