diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-10-13 21:21:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-13 22:52:33 +0200 |
commit | 74c414202f0eda01571dc362a4b4cb342dc1fb64 (patch) | |
tree | e052422f8ec2eb345e4cb76b5430435685fda492 /libavcodec/x86/proresdsp.asm | |
parent | 147b12162da60da1ebfe38f626e9f82b2102f26b (diff) | |
download | ffmpeg-74c414202f0eda01571dc362a4b4cb342dc1fb64.tar.gz |
x86: simple_idct10_template: use const
This avoid going through constants.c while still sharing them
with proresdsp.asm
Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/x86/proresdsp.asm')
-rw-r--r-- | libavcodec/x86/proresdsp.asm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libavcodec/x86/proresdsp.asm b/libavcodec/x86/proresdsp.asm index 463384476b..edfd2f7c02 100644 --- a/libavcodec/x86/proresdsp.asm +++ b/libavcodec/x86/proresdsp.asm @@ -32,6 +32,19 @@ pw_88: times 8 dw 0x2008 cextern pw_1 cextern pw_4 cextern pw_1019 +; Below are defined in simple_idct10.asm built from selecting idctdsp +cextern w4_plus_w2 +cextern w4_min_w2 +cextern w4_plus_w6 +cextern w4_min_w6 +cextern w1_plus_w3 +cextern w3_min_w1 +cextern w7_plus_w3 +cextern w3_min_w7 +cextern w1_plus_w5 +cextern w5_min_w1 +cextern w5_plus_w7 +cextern w7_min_w5 %include "libavcodec/x86/simple_idct10_template.asm" |