aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86
Commit message (Expand)AuthorAgeFilesLines
* Don't access upper 32 bits of a 32-bit int on 64-bit systems.Ronald S. Bultje2010-09-171-1/+1
* Properly add HAVE_YASM around yasmified symbols. Should fix compile errorRonald S. Bultje2010-09-171-1/+9
* Move hadamard_diff{,16}_{mmx,mmx2,sse2,ssse3}() from inline asm to yasm,Ronald S. Bultje2010-09-173-212/+291
* Move sse16_sse2() from inline asm to yasm. It is one of the functions causingRonald S. Bultje2010-09-173-62/+90
* Rename h264_idct_sse2.asm to h264_idct.asm; move inline IDCT asm fromRonald S. Bultje2010-09-144-584/+905
* LGPL SSE2 H.264 iDCTJason Garrett-Glaser2010-09-103-14/+14
* Move mm_support() from libavcodec to libavutil, make it a publicStefano Sabatini2010-09-0816-167/+26
* Use "d" suffix for general-purpose registers used with movd.Reimar Döffinger2010-09-054-30/+30
* Rename FF_MM_ symbols related to CPU features flags as AV_CPU_FLAG_Stefano Sabatini2010-09-0415-106/+108
* Port latest x264 deblock asm (before they moved to using NV12 as internalRonald S. Bultje2010-09-035-325/+230
* Fix typo in r25019.Eli Friedman2010-09-011-1/+1
* Unscrew breakage after my last commit because of symbol prefixes.Ronald S. Bultje2010-09-011-8/+8
* Rename h264_weight_sse2.asm to h264_weight.asm; add 16x8/8x16/8x4 non-squareRonald S. Bultje2010-09-014-291/+427
* Split h264dsp_mmx.c (which was #included in dsputil_mmx.c) in h264_qpel_mmx.c,Ronald S. Bultje2010-09-015-1319/+1343
* Fix vertical align.Ronald S. Bultje2010-08-311-1/+1
* Fix compilation failure if yasm is disabled (missing vp3 symbols).Ronald S. Bultje2010-08-301-3/+3
* Split intra prediction initialization (i.e. assigning of function pointers)Ronald S. Bultje2010-08-303-83/+103
* Move H264 chroma MC from inline asm to yasm. This fixes VP3/5/6 and VC-1Ronald S. Bultje2010-08-307-718/+754
* Move VP3 IDCT functions from inline ASM to YASM. This fixes part of the VP3/5/6Ronald S. Bultje2010-08-307-701/+637
* Put ff_ prefix on non-static {put_signed,put,add}_pixels_clamped_mmx()Ronald S. Bultje2010-08-308-27/+27
* cosmetics in imdct_sseLoren Merritt2010-08-281-25/+20
* Fix typos when converting inline asm to yasm, fixes MMX-only fate-ea-vp61.Ronald S. Bultje2010-08-261-5/+5
* Revert r24931, it broke Win32 and some BSD compiles (yay fate).Ronald S. Bultje2010-08-251-1/+0
* Mark xmm6 and xmm7 as clobbered in ff_vp3_idct_sse2(), which is contributingRonald S. Bultje2010-08-251-0/+1
* VP6: fix vp6_filter_diag4_mmx/sse on 64-bitMåns Rullgård2010-08-251-0/+3
* Move vp6_filter_diag4() x86 SIMD code from inline ASM to YASM. This shouldRonald S. Bultje2010-08-257-270/+178
* Move vp6_filter_diag4() from DSPContext to VP56DSPContext.Ronald S. Bultje2010-08-253-12/+46
* Remove global mm_flags variableMåns Rullgård2010-08-2410-10/+14
* Mark xmm registers as clobbered in simple loopfilter. Should fix the lastRonald S. Bultje2010-08-241-11/+11
* imdct/x86: Use "s->mdct_size" instead of "1 << s->mdct_bits".Alex Converse2010-08-232-3/+3
* Fix segfaults in VP8 SIMD code on Win64 (and FATE/win64 failures).Ronald S. Bultje2010-08-231-14/+14
* Convert ff_imdct_half_sse() to yasm.Alex Converse2010-08-222-108/+195
* VP5/6/8: ~7% faster arithmetic decodingJason Garrett-Glaser2010-08-121-1/+1
* Split h264dsp and h264pred in configure.Jason Garrett-Glaser2010-08-072-2/+3
* Add file missing in r24702Jason Garrett-Glaser2010-08-051-0/+170
* H.264: SSE2/SSSE3 weighted prediction asmEli Friedman2010-08-053-0/+23
* Move cavs dsp functions to their own structMåns Rullgård2010-08-033-10/+11
* VP5/6/8: add one inline missed in r24677Jason Garrett-Glaser2010-08-031-1/+1
* VP8: move zeroing of luma DC block into the WHTJason Garrett-Glaser2010-08-022-2/+20
* Use word-writing instead of dword-writing (with two cached but otherwiseRonald S. Bultje2010-07-312-105/+98
* Remove x86/mmx.h. It is not used anymore and has been deprecated for years.Vitor Sessak2010-07-311-267/+0
* Convert deinterlacing MMX code to YASMVitor Sessak2010-07-313-0/+95
* Fix compilation in x86_64. I broke it with r24580.Vitor Sessak2010-07-291-2/+2
* Translate libmpeg2 MMX IDCT to plain asmVitor Sessak2010-07-291-208/+237
* Use pmaddubsw for the mbedge_filter (>=ssse3), 6-10 cycles faster.Ronald S. Bultje2010-07-261-2/+78
* VP8: Much faster SSE2 MCJason Garrett-Glaser2010-07-261-88/+78
* Enable no-loop memory/register saving for ssse3/sse4 also.Ronald S. Bultje2010-07-261-2/+2
* Save a register (or regsize of stackspace for x86-32) for the no-loopRonald S. Bultje2010-07-261-16/+24
* Use nested ifs instead of &&, which appears to not work with %ifidn (i.e. thisRonald S. Bultje2010-07-261-3/+9
* Split pextrw macro-spaghetti into several opt-specific macros, this will makeRonald S. Bultje2010-07-261-30/+49