diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-08-06 07:43:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-06 18:36:31 +0200 |
commit | 4e128ab0b1b32d2e0a1a8350e224b8d6cc534f93 (patch) | |
tree | d0033797b32f27be09ac7567ab55c1ed507ec8f3 /libavcodec/x86/vp9itxfm.asm | |
parent | 305f72aee77bc36d1da9feaec42f9ddcdc9b0689 (diff) | |
download | ffmpeg-4e128ab0b1b32d2e0a1a8350e224b8d6cc534f93.tar.gz |
x86: vpx/h264/hevc/mpeg2: share constants
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/vp9itxfm.asm')
-rw-r--r-- | libavcodec/x86/vp9itxfm.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/x86/vp9itxfm.asm b/libavcodec/x86/vp9itxfm.asm index 8087c2e336..6cce0aa196 100644 --- a/libavcodec/x86/vp9itxfm.asm +++ b/libavcodec/x86/vp9itxfm.asm @@ -66,10 +66,11 @@ pw_m5283_m15212: times 4 dw -5283, -15212 pw_13377x2: times 8 dw 13377*2 pd_8192: times 4 dd 8192 -pw_2048: times 8 dw 2048 -pw_1024: times 8 dw 1024 -pw_512: times 8 dw 512 -pw_m1: times 8 dw -1 + +cextern pw_512 +cextern pw_1024 +cextern pw_2048 +cextern pw_m1 SECTION .text |