diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-09-04 14:45:48 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-09-22 09:47:52 +0200 |
commit | 683da86aabb4fbeddc3ead5fce737c63c0ee762c (patch) | |
tree | 40ca837d60567573ebf825e51806d5820b18c292 /libavcodec/audiodsp.c | |
parent | bf58545aace7d14522ce4fa680c7b3ff62109a3a (diff) | |
download | ffmpeg-683da86aabb4fbeddc3ead5fce737c63c0ee762c.tar.gz |
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>
Diffstat (limited to 'libavcodec/audiodsp.c')
-rw-r--r-- | libavcodec/audiodsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/audiodsp.c b/libavcodec/audiodsp.c index f7e6167cb0..776cd11ce1 100644 --- a/libavcodec/audiodsp.c +++ b/libavcodec/audiodsp.c @@ -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; |