mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
4772ebbddf
commit
61460fdfad
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ typedef void (*DeinterleaveFunc) (GstAudioResampler * resampler,
|
||||||
|
|
||||||
#define MEM_ALIGN(m,a) ((gint8 *)((guintptr)((gint8 *)(m) + ((a)-1)) & ~((a)-1)))
|
#define MEM_ALIGN(m,a) ((gint8 *)((guintptr)((gint8 *)(m) + ((a)-1)) & ~((a)-1)))
|
||||||
#define ALIGN 16
|
#define ALIGN 16
|
||||||
#define TAPS_OVERREAD 16
|
#define TAPS_OVERREAD 8
|
||||||
|
|
||||||
struct _GstAudioResampler
|
struct _GstAudioResampler
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue