diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-02-04 11:41:45 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-07 17:48:14 +0100 |
commit | ed450d4acfc9fea0dae2df2b0a543ec0d602d31a (patch) | |
tree | 8228bf68a0ede5d53dc1c24c8a02bc804634998c /libavcodec/x86/h264_weight_10bit.asm | |
parent | ac923ed47002092e16e3fbd252f607e1d68a9106 (diff) | |
download | ffmpeg-ed450d4acfc9fea0dae2df2b0a543ec0d602d31a.tar.gz |
x86: lavc: share more constant through defines
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/h264_weight_10bit.asm')
-rw-r--r-- | libavcodec/x86/h264_weight_10bit.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_weight_10bit.asm b/libavcodec/x86/h264_weight_10bit.asm index 5d9496224a..f924e55854 100644 --- a/libavcodec/x86/h264_weight_10bit.asm +++ b/libavcodec/x86/h264_weight_10bit.asm @@ -26,11 +26,12 @@ SECTION_RODATA 32 -pw_pixel_max: times 8 dw ((1 << 10)-1) sq_1: dq 1 dq 0 cextern pw_1 +cextern pw_1023 +%define pw_pixel_max pw_1023 SECTION .text |