aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/mpegvideo_mmx_template.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-15 12:26:15 +0200
committerMartin Storsjö <martin@martin.st>2012-02-15 22:06:42 +0200
commit873c89e2a6825150edf036fd9993d53f25a0c6b8 (patch)
tree7e161cabe27fbb42c1ff363ff1ffc831c7dc1e17 /libavcodec/x86/mpegvideo_mmx_template.c
parent3e2efacdd8a3ffb5d1c9004f112492b946284f9b (diff)
downloadffmpeg-873c89e2a6825150edf036fd9993d53f25a0c6b8.tar.gz
dsputil: Add ff_ prefix to inv_zigzag_direct16
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/x86/mpegvideo_mmx_template.c')
-rw-r--r--libavcodec/x86/mpegvideo_mmx_template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/mpegvideo_mmx_template.c b/libavcodec/x86/mpegvideo_mmx_template.c
index 0b6cff3540..13653c89b1 100644
--- a/libavcodec/x86/mpegvideo_mmx_template.c
+++ b/libavcodec/x86/mpegvideo_mmx_template.c
@@ -168,7 +168,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s,
"movzb %%al, %%"REG_a" \n\t" // last_non_zero_p1
: "+a" (last_non_zero_p1)
: "r" (block+64), "r" (qmat), "r" (bias),
- "r" (inv_zigzag_direct16+64), "r" (temp_block+64)
+ "r" (ff_inv_zigzag_direct16+64), "r" (temp_block+64)
XMM_CLOBBERS_ONLY("%xmm0", "%xmm1", "%xmm2", "%xmm3",
"%xmm4", "%xmm5", "%xmm6", "%xmm7")
);
@@ -202,7 +202,7 @@ static int RENAME(dct_quantize)(MpegEncContext *s,
"movzb %%al, %%"REG_a" \n\t" // last_non_zero_p1
: "+a" (last_non_zero_p1)
: "r" (block+64), "r" (qmat+64), "r" (bias+64),
- "r" (inv_zigzag_direct16+64), "r" (temp_block+64)
+ "r" (ff_inv_zigzag_direct16+64), "r" (temp_block+64)
XMM_CLOBBERS_ONLY("%xmm0", "%xmm1", "%xmm2", "%xmm3",
"%xmm4", "%xmm5", "%xmm6", "%xmm7")
);