summaryrefslogtreecommitdiff
path: root/libavfilter/dnn_backend_native.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_native.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_native.h')
-rw-r--r--libavfilter/dnn_backend_native.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/dnn_backend_native.h b/libavfilter/dnn_backend_native.h
index 599c1302e2..adbb7088b4 100644
--- a/libavfilter/dnn_backend_native.h
+++ b/libavfilter/dnn_backend_native.h
@@ -29,12 +29,12 @@
#include "dnn_interface.h"
-DNNModel* ff_dnn_load_model_native(const char* model_filename);
+DNNModel *ff_dnn_load_model_native(const char *model_filename);
-DNNModel* ff_dnn_load_default_model_native(DNNDefaultModel model_type);
+DNNModel *ff_dnn_load_default_model_native(DNNDefaultModel model_type);
-DNNReturnType ff_dnn_execute_model_native(const DNNModel* model);
+DNNReturnType ff_dnn_execute_model_native(const DNNModel *model);
-void ff_dnn_free_model_native(DNNModel** model);
+void ff_dnn_free_model_native(DNNModel **model);
#endif