diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-28 17:02:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-28 17:06:11 +0200 |
commit | 113738d6c289748bb6e32a1776986a97a2e2f515 (patch) | |
tree | 156858285a45e9ea828e625e49a4dc9458cd42cf /libswresample | |
parent | 12eeced8b41bbe46693f8c9625ed61b51f8438a1 (diff) | |
download | ffmpeg-113738d6c289748bb6e32a1776986a97a2e2f515.tar.gz |
swr: more correct cglobal parameters to int16->int32
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/x86/audio_convert.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/x86/audio_convert.asm b/libswresample/x86/audio_convert.asm index d98c35cf5d..118b5e3716 100644 --- a/libswresample/x86/audio_convert.asm +++ b/libswresample/x86/audio_convert.asm @@ -24,7 +24,7 @@ SECTION .text %macro INT16_TO_INT32 1 -cglobal int16_to_int32_%1, 3, 3, 0, dst, src, len +cglobal int16_to_int32_%1, 3, 3, 3, dst, src, len mov srcq, [srcq] mov dstq, [dstq] %ifidn %1, a |