Home
last modified time | relevance | path

Searched refs:padding_method (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavfilter/dnn/
Ddnn_backend_native_layer_avgpool.c38 avgpool_params->padding_method = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_avg_pool()
84 if (avgpool_params->padding_method == SAME) { in ff_dnn_execute_layer_avg_pool()
94 av_assert0(avgpool_params->padding_method == VALID); in ff_dnn_execute_layer_avg_pool()
Ddnn_backend_native_layer_conv2d.c56 conv_params->padding_method = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_conv2d()
128 …int pad_size = (conv_params->padding_method == VALID) ? (conv_params->kernel_size - 1) / 2 * conv_… in dnn_execute_layer_conv2d_thread()
147 if (conv_params->padding_method == SAME_CLAMP_TO_EDGE) { in dnn_execute_layer_conv2d_thread()
202 …int pad_size = (conv_params->padding_method == VALID) ? (conv_params->kernel_size - 1) / 2 * conv_… in ff_dnn_execute_layer_conv2d()
Ddnn_backend_native_layer_avgpool.h33 DNNPaddingParam padding_method; member
Ddnn_backend_native_layer_conv2d.h30 DNNPaddingParam padding_method; member
/third_party/ffmpeg/tests/dnn/
Ddnn-layer-avgpool-test.c84 params.padding_method = SAME; in test_with_same()
164 params.padding_method = VALID; in test_with_valid()
Ddnn-layer-conv2d-test.c111 params.padding_method = SAME; in test_with_same_dilate()
215 params.padding_method = VALID; in test_with_valid()
/third_party/ffmpeg/libavfilter/tests/
Ddnn-layer-avgpool.c84 params.padding_method = SAME; in test_with_same()
164 params.padding_method = VALID; in test_with_valid()
Ddnn-layer-conv2d.c111 params.padding_method = SAME; in test_with_same_dilate()
215 params.padding_method = VALID; in test_with_valid()