Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-05-05 21:43:11 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-05-05 21:43:11 +0400
commitdf5ff103cd122ed2286f08ce5c76bbc212eaae4b (patch)
tree71d6c72a0b1314872382eb5b9355386f2a5754af /libswresample/x86
parentb6f4f0d9ef3d6702aae2113e44d28541e499247c (diff)
swr: fix internal asm labels
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/x86')
-rw-r--r--libswresample/x86/audio_convert.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/libswresample/x86/audio_convert.asm b/libswresample/x86/audio_convert.asm
index 654c827045..e566e55289 100644
--- a/libswresample/x86/audio_convert.asm
+++ b/libswresample/x86/audio_convert.asm
@@ -100,13 +100,13 @@ cglobal pack_2ch_%2_to_%1_%3, 3, 4, 6, dst, src, len, src2
mov dstq , [dstq]
%ifidn %3, a
test dstq, mmsize-1
- jne pack_2ch_%1_to_%2_u_int %+ SUFFIX
+ jne pack_2ch_%2_to_%1_u_int %+ SUFFIX
test srcq, mmsize-1
- jne pack_2ch_%1_to_%2_u_int %+ SUFFIX
+ jne pack_2ch_%2_to_%1_u_int %+ SUFFIX
test src2q, mmsize-1
- jne pack_2ch_%1_to_%2_u_int %+ SUFFIX
+ jne pack_2ch_%2_to_%1_u_int %+ SUFFIX
%else
-pack_2ch_%1_to_%2_u_int %+ SUFFIX
+pack_2ch_%2_to_%1_u_int %+ SUFFIX
%endif
lea srcq , [srcq + (1<<%5)*lenq]
lea src2q, [src2q + (1<<%5)*lenq]