mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-16 13:51:37 +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:
@@ -55,8 +55,8 @@ static void vector_clipf_c_opposite_sign(float *dst, const float *src,
|
||||
}
|
||||
}
|
||||
|
||||
static void vector_clipf_c(float *dst, const float *src,
|
||||
float min, float max, int len)
|
||||
static void vector_clipf_c(float *dst, const float *src, int len,
|
||||
float min, float max)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Reference in New Issue
Block a user