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/constants.h | |
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/constants.h')
-rw-r--r-- | libavcodec/x86/constants.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libavcodec/x86/constants.h b/libavcodec/x86/constants.h index 496933fa86..f989755ba9 100644 --- a/libavcodec/x86/constants.h +++ b/libavcodec/x86/constants.h @@ -68,20 +68,4 @@ extern const ymm_reg ff_pd_32; extern const ymm_reg ff_pd_8192; extern const ymm_reg ff_pd_65535; -# if ARCH_X86_64 -/* simple_idct10, used by prores and dnxhd */ -extern const xmm_reg ff_w4_plus_w2; -extern const xmm_reg ff_w4_min_w2; -extern const xmm_reg ff_w4_plus_w6; -extern const xmm_reg ff_w4_min_w6; -extern const xmm_reg ff_w1_plus_w3; -extern const xmm_reg ff_w3_min_w1; -extern const xmm_reg ff_w7_plus_w3; -extern const xmm_reg ff_w3_min_w7; -extern const xmm_reg ff_w1_plus_w5; -extern const xmm_reg ff_w5_min_w1; -extern const xmm_reg ff_w5_plus_w7; -extern const xmm_reg ff_w7_min_w5; -# endif - #endif /* AVCODEC_X86_CONSTANTS_H */ |