diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-05-28 14:39:18 -0400 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-05-28 22:43:40 +0300 |
commit | 70bb747a57d8df6f33803bb4824b0a447c708823 (patch) | |
tree | a1f766180baca71961414a945926c1593c903f19 /libavcodec/x86 | |
parent | dc0ad40de2b0d6995eb842e56b22f9096bd539ff (diff) | |
download | ffmpeg-70bb747a57d8df6f33803bb4824b0a447c708823.tar.gz |
ac3dsp: do not use the ff_* prefix when referencing ff_ac3_bap_bits.
this should fix the windows builds
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/ac3dsp.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/ac3dsp.asm b/libavcodec/x86/ac3dsp.asm index 0d8f4b78eb..6892ec2765 100644 --- a/libavcodec/x86/ac3dsp.asm +++ b/libavcodec/x86/ac3dsp.asm @@ -324,8 +324,8 @@ cglobal ac3_compute_mantissa_size_sse2, 1,2,4, mant_cnt, sum paddw m1, [mant_cntq+ 9*16] paddw m0, [mant_cntq+10*16] paddw m1, [mant_cntq+11*16] - pmaddwd m0, [ff_ac3_bap_bits ] - pmaddwd m1, [ff_ac3_bap_bits+16] + pmaddwd m0, [ac3_bap_bits ] + pmaddwd m1, [ac3_bap_bits+16] paddd m0, m1 PHADDD4 m0, m1 movd sumd, m0 |