summaryrefslogtreecommitdiff
path: root/libavfilter/dnn/dnn_backend_native.c
diff options
context:
space:
mode:
authorGuo, Yejun <yejun.guo@intel.com>2021-01-18 15:56:34 +0800
committerGuo, Yejun <yejun.guo@intel.com>2021-01-22 08:28:13 +0800
commit2d6af4a501d0563268580740c5a51073382ad045 (patch)
tree7eadae6d42f575f2e514d373220163e30b299ee5 /libavfilter/dnn/dnn_backend_native.c
parent0d5fd4999a2291d82fe5cc8a4c8157165536ba04 (diff)
libavfilter/dnn: use avpriv_report_missing_feature for unsupported features
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Diffstat (limited to 'libavfilter/dnn/dnn_backend_native.c')
-rw-r--r--libavfilter/dnn/dnn_backend_native.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/dnn/dnn_backend_native.c b/libavfilter/dnn/dnn_backend_native.c
index 5e7fc0f10c..2700251ee6 100644
--- a/libavfilter/dnn/dnn_backend_native.c
+++ b/libavfilter/dnn/dnn_backend_native.c
@@ -327,7 +327,7 @@ static DNNReturnType execute_model_native(const DNNModel *model, const char *inp
if (nb_output != 1) {
// currently, the filter does not need multiple outputs,
// so we just pending the support until we really need it.
- av_log(ctx, AV_LOG_ERROR, "do not support multiple outputs\n");
+ avpriv_report_missing_feature(ctx, "multiple outputs");
return DNN_ERROR;
}