summaryrefslogtreecommitdiff
path: root/libavfilter/dnn/dnn_backend_native_layer_mathbinary.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_mathbinary.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_mathbinary.h')
-rw-r--r--libavfilter/dnn/dnn_backend_native_layer_mathbinary.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/dnn/dnn_backend_native_layer_mathbinary.h b/libavfilter/dnn/dnn_backend_native_layer_mathbinary.h
index bb97ba2dca..eee294b00f 100644
--- a/libavfilter/dnn/dnn_backend_native_layer_mathbinary.h
+++ b/libavfilter/dnn/dnn_backend_native_layer_mathbinary.h
@@ -47,8 +47,8 @@ typedef struct DnnLayerMathBinaryParams{
float v;
} DnnLayerMathBinaryParams;
-int dnn_load_layer_math_binary(Layer *layer, AVIOContext *model_file_context, int file_size, int operands_num);
-int dnn_execute_layer_math_binary(DnnOperand *operands, const int32_t *input_operand_indexes,
- int32_t output_operand_index, const void *parameters, NativeContext *ctx);
+int ff_dnn_load_layer_math_binary(Layer *layer, AVIOContext *model_file_context, int file_size, int operands_num);
+int ff_dnn_execute_layer_math_binary(DnnOperand *operands, const int32_t *input_operand_indexes,
+ int32_t output_operand_index, const void *parameters, NativeContext *ctx);
#endif