From 61460fdfad5b519af26b24b80fcbde7b1317affd Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 24 Feb 2016 12:56:39 +0100 Subject: [PATCH] audio-resampler: overread only 8 taps We only need 8 taps of zeroes as headroom for the SIMD optimized functions. --- gst-libs/gst/audio/audio-resampler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/audio/audio-resampler.c b/gst-libs/gst/audio/audio-resampler.c index a140812..84e49aa 100644 --- a/gst-libs/gst/audio/audio-resampler.c +++ b/gst-libs/gst/audio/audio-resampler.c @@ -61,7 +61,7 @@ typedef void (*DeinterleaveFunc) (GstAudioResampler * resampler, #define MEM_ALIGN(m,a) ((gint8 *)((guintptr)((gint8 *)(m) + ((a)-1)) & ~((a)-1))) #define ALIGN 16 -#define TAPS_OVERREAD 16 +#define TAPS_OVERREAD 8 struct _GstAudioResampler { -- 2.7.4