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:
authorDaniel Kang <daniel.d.kang@gmail.com>2013-02-07 07:25:12 +0400
committerMartin Storsjö <martin@martin.st>2013-02-07 13:06:16 +0400
commita1d36730342edf7281e5992a7f8aafabc2464ed0 (patch)
treecbe2af4f81d98c22db73dfd806f0397430df8cbf /libavcodec/x86
parent659d4ba5af5d72716ee370bb367c741bd15e75b4 (diff)
dsputil: x86: Fix compile error
Accidentally prefixed ff_ with cextern. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r--libavcodec/x86/dsputil.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/dsputil.asm b/libavcodec/x86/dsputil.asm
index 9647c558c8..7ea796d99a 100644
--- a/libavcodec/x86/dsputil.asm
+++ b/libavcodec/x86/dsputil.asm
@@ -730,7 +730,7 @@ cglobal h263_v_loop_filter, 3,5
movsxdifnidn r1, r1d
movsxdifnidn r2, r2d
- lea r4, [ff_h263_loop_filter_strength]
+ lea r4, [h263_loop_filter_strength]
movzx r3d, BYTE [r4+r2]
movsx r2, r3b
shl r2, 1
@@ -772,7 +772,7 @@ cglobal h263_h_loop_filter, 3,5,0,32
movsxdifnidn r1, r1d
movsxdifnidn r2, r2d
- lea r4, [ff_h263_loop_filter_strength]
+ lea r4, [h263_loop_filter_strength]
movzx r3d, BYTE [r4+r2]
movsx r2, r3b
shl r2, 1