audio-resampler: overread only 8 taps

We only need 8 taps of zeroes as headroom for the SIMD optimized
functions.
This commit is contained in:
Wim Taymans 2016-02-24 12:56:39 +01:00
parent 4772ebbddf
commit 61460fdfad

View file

@ -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
{