Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2010-09-29Move static inline function to a macro, so that constant propagation inRonald S. Bultje
2010-09-29Use sse2 variant of put_pixels16() for no_rnd also. Provides a minor speedEli Friedman
2010-09-29Merge b_idx and edge variables, and optimize the ASM to directly load variablesRonald S. Bultje
2010-09-29Remove mv_mask variable. Replace the related pand -1/0 instructions by eitherRonald S. Bultje
2010-09-29Remove d_idx as a variable, and instead load it as a constant in the asm.Ronald S. Bultje
2010-09-29Unroll inner bidir loop in h264_loop_filter_strength_mmx2(), which gets ridRonald S. Bultje
2010-09-29Unloop the outer loop in h264_loop_filter_strength_mmx2(), which allowsRonald S. Bultje
2010-09-26Add d suffix to movd target register to make it work with nasm.Reimar Döffinger
2010-09-26Split and then simplify address generation macro.Reimar Döffinger
2010-09-24Remove unused variable.Ronald S. Bultje
2010-09-24Unroll loop in h264_idct_add16intra_sse2(). Basically identical to r25171, thisRonald S. Bultje
2010-09-24Unroll loop in h264_idct_add8_sse2(). This means we can inline scan8[] in theRonald S. Bultje
2010-09-21x86: disable SSE functions using stack when stack is not alignedMåns Rullgård
2010-09-19x86: remove hack disabling sse2 h264 loop filter with 32-bit iccMåns Rullgård
2010-09-17Don't access upper 32 bits of a 32-bit int on 64-bit systems.Ronald S. Bultje
2010-09-17Properly add HAVE_YASM around yasmified symbols. Should fix compile errorRonald S. Bultje
2010-09-17Move hadamard_diff{,16}_{mmx,mmx2,sse2,ssse3}() from inline asm to yasm,Ronald S. Bultje
2010-09-17Move sse16_sse2() from inline asm to yasm. It is one of the functions causingRonald S. Bultje
2010-09-14Rename h264_idct_sse2.asm to h264_idct.asm; move inline IDCT asm fromRonald S. Bultje
2010-09-10LGPL SSE2 H.264 iDCTJason Garrett-Glaser
2010-09-08Move mm_support() from libavcodec to libavutil, make it a publicStefano Sabatini
2010-09-05Use "d" suffix for general-purpose registers used with movd.Reimar Döffinger
2010-09-04Rename FF_MM_ symbols related to CPU features flags as AV_CPU_FLAG_Stefano Sabatini
2010-09-03Port latest x264 deblock asm (before they moved to using NV12 as internalRonald S. Bultje
2010-09-02Fix typo in r25019.Eli Friedman
2010-09-02Unscrew breakage after my last commit because of symbol prefixes.Ronald S. Bultje
2010-09-02Rename h264_weight_sse2.asm to h264_weight.asm; add 16x8/8x16/8x4 non-squareRonald S. Bultje
2010-09-02Split h264dsp_mmx.c (which was #included in dsputil_mmx.c) in h264_qpel_mmx.c,Ronald S. Bultje
2010-08-31Fix vertical align.Ronald S. Bultje
2010-08-31Fix compilation failure if yasm is disabled (missing vp3 symbols).Ronald S. Bultje
2010-08-30Split intra prediction initialization (i.e. assigning of function pointers)Ronald S. Bultje
2010-08-30Move H264 chroma MC from inline asm to yasm. This fixes VP3/5/6 and VC-1Ronald S. Bultje
2010-08-30Move VP3 IDCT functions from inline ASM to YASM. This fixes part of the VP3/5/6Ronald S. Bultje
2010-08-30Put ff_ prefix on non-static {put_signed,put,add}_pixels_clamped_mmx()Ronald S. Bultje
2010-08-29cosmetics in imdct_sseLoren Merritt
2010-08-26Fix typos when converting inline asm to yasm, fixes MMX-only fate-ea-vp61.Ronald S. Bultje
2010-08-26Revert r24931, it broke Win32 and some BSD compiles (yay fate).Ronald S. Bultje
2010-08-25Mark xmm6 and xmm7 as clobbered in ff_vp3_idct_sse2(), which is contributingRonald S. Bultje
2010-08-25VP6: fix vp6_filter_diag4_mmx/sse on 64-bitMåns Rullgård
2010-08-25Move vp6_filter_diag4() x86 SIMD code from inline ASM to YASM. This shouldRonald S. Bultje
2010-08-25Move vp6_filter_diag4() from DSPContext to VP56DSPContext.Ronald S. Bultje
2010-08-24Remove global mm_flags variableMåns Rullgård
2010-08-24Mark xmm registers as clobbered in simple loopfilter. Should fix the lastRonald S. Bultje
2010-08-23imdct/x86: Use "s->mdct_size" instead of "1 << s->mdct_bits".Alex Converse
2010-08-23Fix segfaults in VP8 SIMD code on Win64 (and FATE/win64 failures).Ronald S. Bultje
2010-08-22Convert ff_imdct_half_sse() to yasm.Alex Converse
2010-08-12VP5/6/8: ~7% faster arithmetic decodingJason Garrett-Glaser
2010-08-08Split h264dsp and h264pred in configure.Jason Garrett-Glaser
2010-08-05Add file missing in r24702Jason Garrett-Glaser
2010-08-05H.264: SSE2/SSSE3 weighted prediction asmEli Friedman