summaryrefslogtreecommitdiff
path: root/libavfilter/dnn_backend_tf.h
diff options
context:
space:
mode:
authorSergey Lavrushkin <dualfal@gmail.com>2018-07-27 19:34:02 +0300
committerPedro Arthur <bygrandao@gmail.com>2018-08-07 11:58:34 -0300
commit9d87897ba84a3b639a4c3afeb4ec6d21bc306a92 (patch)
tree468eb81a3f45374685ea5f388067d6f43a4d4f97 /libavfilter/dnn_backend_tf.h
parent4eb63efbdaea6d36ad94f1bb0dd129b7f7aaa899 (diff)
libavfilter: Code style fixes for pointers in DNN module and sr filter.
Signed-off-by: Pedro Arthur <bygrandao@gmail.com>
Diffstat (limited to 'libavfilter/dnn_backend_tf.h')
-rw-r--r--libavfilter/dnn_backend_tf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/dnn_backend_tf.h b/libavfilter/dnn_backend_tf.h
index 08e4a568b3..357a82d948 100644
--- a/libavfilter/dnn_backend_tf.h
+++ b/libavfilter/dnn_backend_tf.h
@@ -29,12 +29,12 @@
#include "dnn_interface.h"
-DNNModel* ff_dnn_load_model_tf(const char* model_filename);
+DNNModel *ff_dnn_load_model_tf(const char *model_filename);
-DNNModel* ff_dnn_load_default_model_tf(DNNDefaultModel model_type);
+DNNModel *ff_dnn_load_default_model_tf(DNNDefaultModel model_type);
-DNNReturnType ff_dnn_execute_model_tf(const DNNModel* model);
+DNNReturnType ff_dnn_execute_model_tf(const DNNModel *model);
-void ff_dnn_free_model_tf(DNNModel** model);
+void ff_dnn_free_model_tf(DNNModel **model);
#endif