]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/dnn/dnn_backend_native_layer_pad.h
avcodec: Constify AVCodecs
[ffmpeg] / libavfilter / dnn / dnn_backend_native_layer_pad.h
index 7cc821352182d0a77e3b495545e1a4fcacfba237..4f76c67c3f62e48e0e515079af15b28d8188f7b8 100644 (file)
@@ -36,7 +36,8 @@ typedef struct LayerPadParams{
     float constant_values;
 } LayerPadParams;
 
-int dnn_execute_layer_pad(DnnOperand *operands, const int32_t *input_operand_indexes, int32_t output_operand_index,
-                           const LayerPadParams *params);
+int ff_dnn_load_layer_pad(Layer *layer, AVIOContext *model_file_context, int file_size, int operands_num);
+int ff_dnn_execute_layer_pad(DnnOperand *operands, const int32_t *input_operand_indexes,
+                             int32_t output_operand_index, const void *parameters, NativeContext *ctx);
 
 #endif