From c6ce18be0819577f382dbea1594efaa71b41eadc Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 3 Dec 2019 15:52:05 +0800 Subject: avfilter/vf_convolution: add 16-column operation for filter_column() Based on patch by Xu Jun --- libavfilter/convolution.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/convolution.h') diff --git a/libavfilter/convolution.h b/libavfilter/convolution.h index fc6aad58fd..88aabe9a20 100644 --- a/libavfilter/convolution.h +++ b/libavfilter/convolution.h @@ -57,7 +57,7 @@ typedef struct ConvolutionContext { void (*filter[4])(uint8_t *dst, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, - int dstride, int stride); + int dstride, int stride, int size); } ConvolutionContext; void ff_convolution_init_x86(ConvolutionContext *s); -- cgit v1.2.3