mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-08 10:11:04 +08:00
audiodsp: reorder arguments for vector_clipf
This will make the x86 asm simpler. ARM conversion by Martin Storsjö <martin@martin.st> and Janne Grunau <janne-libav@jannau.net>
This commit is contained in:
@@ -111,7 +111,7 @@ static void scale_coefficients(AC3EncodeContext *s)
|
||||
static void clip_coefficients(AudioDSPContext *adsp, float *coef,
|
||||
unsigned int len)
|
||||
{
|
||||
adsp->vector_clipf(coef, coef, COEF_MIN, COEF_MAX, len);
|
||||
adsp->vector_clipf(coef, coef, len, COEF_MIN, COEF_MAX);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user