summaryrefslogtreecommitdiff
path: root/libavfilter/dnn/dnn_backend_native_layer_mathunary.h
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2021-01-21 21:39:55 +0000
committerGuo, Yejun <yejun.guo@intel.com>2021-01-22 15:03:09 +0800
commitbb96824510aad2ac4cf0bff545c85af7a256ff92 (patch)
tree82f3c909445b317f48d930d27f1ccd6408ff6ffe /libavfilter/dnn/dnn_backend_native_layer_mathunary.h
parent2c424d963039a7d50b5b93f0db5efd70101d8e44 (diff)
dnn: Add ff_ prefix to unnamespaced globals
Reviewed-By: Guo, Yejun <yejun.guo@intel.com>
Diffstat (limited to 'libavfilter/dnn/dnn_backend_native_layer_mathunary.h')
-rw-r--r--libavfilter/dnn/dnn_backend_native_layer_mathunary.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/dnn/dnn_backend_native_layer_mathunary.h b/libavfilter/dnn/dnn_backend_native_layer_mathunary.h
index 301d02e5fb..2199931e6e 100644
--- a/libavfilter/dnn/dnn_backend_native_layer_mathunary.h
+++ b/libavfilter/dnn/dnn_backend_native_layer_mathunary.h
@@ -53,8 +53,8 @@ typedef struct DnnLayerMathUnaryParams{
DNNMathUnaryOperation un_op;
} DnnLayerMathUnaryParams;
-int dnn_load_layer_math_unary(Layer *layer, AVIOContext *model_file_context, int file_size, int operands_num);
-int dnn_execute_layer_math_unary(DnnOperand *operands, const int32_t *input_operand_indexes,
- int32_t output_operand_index, const void *parameters, NativeContext *ctx);
+int ff_dnn_load_layer_math_unary(Layer *layer, AVIOContext *model_file_context, int file_size, int operands_num);
+int ff_dnn_execute_layer_math_unary(DnnOperand *operands, const int32_t *input_operand_indexes,
+ int32_t output_operand_index, const void *parameters, NativeContext *ctx);
#endif