summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorGuo, Yejun <yejun.guo@intel.com>2020-08-13 14:48:11 +0800
committerGuo, Yejun <yejun.guo@intel.com>2020-08-14 08:59:39 +0800
commit3c05c8a15f2fa5543213f6c8cbe439ad4376137d (patch)
treefb4be31b8095d26abf0997c721a3552658706fda /libavfilter
parentcfc65520324ae640299bd321ef88ae76dcee6f78 (diff)
dnn_backend_tf.c: fix build issue for tensorflow backend
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/dnn/dnn_backend_tf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/dnn/dnn_backend_tf.c b/libavfilter/dnn/dnn_backend_tf.c
index 86da99160d..9099d2b812 100644
--- a/libavfilter/dnn/dnn_backend_tf.c
+++ b/libavfilter/dnn/dnn_backend_tf.c
@@ -490,7 +490,7 @@ static DNNReturnType load_native_model(TFModel *tf_model, const char *model_file
DNNModel *native_model = NULL;
ConvolutionalNetwork *conv_network;
- native_model = ff_dnn_load_model_native(model_filename);
+ native_model = ff_dnn_load_model_native(model_filename, NULL);
if (!native_model){
return DNN_ERROR;
}