diff options
author | Shubhanshu Saxena <shubhanshu.e01@gmail.com> | 2021-05-01 20:47:06 +0530 |
---|---|---|
committer | Guo, Yejun <yejun.guo@intel.com> | 2021-05-06 10:17:57 +0800 |
commit | 26d3fe1a525b10cc0ea186de1e432f748287e755 (patch) | |
tree | 2534e4261b79d3f6fc6850fb07aa7880d667aa26 /libavfilter | |
parent | 2329f7f21eb55281af439f70ded40a0c3ecec47b (diff) | |
download | ffmpeg-26d3fe1a525b10cc0ea186de1e432f748287e755.tar.gz |
lavfi/dnn_backend_native_layer_avgpool.c: Correct Spelling of Pixel
Correct spelling of word `pixel` from `pxiels`
Signed-off-by: Shubhanshu Saxena <shubhanshu.e01@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/dnn/dnn_backend_native_layer_avgpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/dnn/dnn_backend_native_layer_avgpool.c b/libavfilter/dnn/dnn_backend_native_layer_avgpool.c index dcfb8c816f..89f1787523 100644 --- a/libavfilter/dnn/dnn_backend_native_layer_avgpool.c +++ b/libavfilter/dnn/dnn_backend_native_layer_avgpool.c @@ -73,7 +73,7 @@ int ff_dnn_execute_layer_avg_pool(DnnOperand *operands, const int32_t *input_ope DnnOperand *output_operand = &operands[output_operand_index]; /** - * When padding_method = SAME, the tensorflow will only padding the hald number of 0 pxiels + * When padding_method = SAME, the tensorflow will only padding the hald number of 0 pixels * except the remainders. * Eg: assuming the input height = 1080, the strides = 11, so the remainders = 1080 % 11 = 2 * and if ksize = 5: it will fill (5 - 2) >> 1 = 1 line before the first line of input image, |