diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-12 07:28:11 -0700 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-04-10 11:04:05 +0300 |
commit | b93b27edb0455287f49182fbf11b68e575f59225 (patch) | |
tree | 2b28d3f9edeb10c7de0e0dc33bc780182306a945 /libavcodec/x86/vp8dsp.asm | |
parent | 85deb51a01f1ecc5ac5faa52ad8ea141c384e23a (diff) | |
download | ffmpeg-b93b27edb0455287f49182fbf11b68e575f59225.tar.gz |
dsputil: Make dsputil selectable
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/x86/vp8dsp.asm')
-rw-r--r-- | libavcodec/x86/vp8dsp.asm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libavcodec/x86/vp8dsp.asm b/libavcodec/x86/vp8dsp.asm index caf2cd679a..1d7aadc809 100644 --- a/libavcodec/x86/vp8dsp.asm +++ b/libavcodec/x86/vp8dsp.asm @@ -143,11 +143,15 @@ filter_h6_shuf1: db 0, 5, 1, 6, 2, 7, 3, 8, 4, 9, 5, 10, 6, 11, 7, 12 filter_h6_shuf2: db 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9 filter_h6_shuf3: db 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11 -pw_256: times 8 dw 256 - +pw_27: times 8 dw 27 +pw_63: times 8 dw 63 +pw_256: times 8 dw 256 pw_20091: times 4 dw 20091 pw_17734: times 4 dw 17734 +pb_4: times 16 db 4 +pb_F8: times 16 db 0xF8 +pb_FE: times 16 db 0xFE pb_27_63: times 8 db 27, 63 pb_18_63: times 8 db 18, 63 pb_9_63: times 8 db 9, 63 @@ -156,15 +160,10 @@ cextern pb_1 cextern pw_3 cextern pb_3 cextern pw_4 -cextern pb_4 cextern pw_9 cextern pw_18 -cextern pw_27 -cextern pw_63 cextern pw_64 cextern pb_80 -cextern pb_F8 -cextern pb_FE SECTION .text |