summaryrefslogtreecommitdiff
path: root/libavcodec/x86/h264_weight_10bit.asm
Commit message (Collapse)AuthorAge
* config.asm: change %ifdef directives to %if directives.Ronald S. Bultje2012-01-27
| | | | This allows combining multiple conditionals in a single statement.
* h264_weight: initialize "height" function argument properly.Ronald S. Bultje2011-10-22
| | | | | Right now it's not actually initialized on 32-bit, leading to crashes on win32.
* H264: change weight/biweight functions to take a height argument.Ronald S. Bultje2011-10-21
| | | | Neon parts by Mans Rullgard <mans@mansr.com>.
* Fix NASM include directiveDave Yeo2011-08-15
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Move x86util.asm from libavcodec/ to libavutil/.Ronald S. Bultje2011-08-12
| | | | This allows using it in swscale also.
* Move x86inc.asm to libavutil/.Ronald S. Bultje2011-08-12
| | | | This allows using it in libswscale/ also.
* h264: Add x86 assembly for 10-bit weight/biweight H.264 functions.Daniel Kang2011-06-21
Mainly ported from 8-bit H.264 weight/biweight. Signed-off-by: Diego Biurrun <diego@biurrun.de>