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 (Collapse)Author
2013-10-08x86: Fix compilation with nasm on PPC & OS/2Ronald S. Bultje
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-18swresample/x86/audio_convert: add emms to CONVMichael Niedermayer
Might fix Ticket1874 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-05swr: add native_simd_oneMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-31Merge commit '6860b4081d046558c44b1b42f22022ea341a2a73'Michael Niedermayer
* commit '6860b4081d046558c44b1b42f22022ea341a2a73': x86: include x86inc.asm in x86util.asm cng: Reindent some incorrectly indented lines cngdec: Allow flushing the decoder cngdec: Make the dbov variable have the right unit cngdec: Fix the memset size to cover the full array cngdec: Update the LPC coefficients after averaging the reflection coefficients configure: fix print_config() with broke awks Conflicts: libavcodec/x86/ac3dsp.asm libavcodec/x86/dct32.asm libavcodec/x86/deinterlace.asm libavcodec/x86/dsputil.asm libavcodec/x86/dsputilenc.asm libavcodec/x86/fft.asm libavcodec/x86/fmtconvert.asm libavcodec/x86/h264_chromamc.asm libavcodec/x86/h264_deblock.asm libavcodec/x86/h264_deblock_10bit.asm libavcodec/x86/h264_idct.asm libavcodec/x86/h264_idct_10bit.asm libavcodec/x86/h264_intrapred.asm libavcodec/x86/h264_intrapred_10bit.asm libavcodec/x86/h264_weight.asm libavcodec/x86/vc1dsp.asm libavcodec/x86/vp3dsp.asm libavcodec/x86/vp56dsp.asm libavcodec/x86/vp8dsp.asm Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-09-09swr: add av_cold to init/free functionsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-09-01Fix compilation with yasm-0.6.2.Carl Eugen Hoyos
2012-08-31Add some missing _EXTERNAL suffixes to yasm source files.Carl Eugen Hoyos
2012-08-09Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: mpegvideo: reduce excessive inlining of mpeg_motion() mpegvideo: convert mpegvideo_common.h to a .c file build: factor out mpegvideo.o dependencies to CONFIG_MPEGVIDEO Move MASK_ABS macro to libavcodec/mathops.h x86: move MANGLE() and related macros to libavutil/x86/asm.h x86: rename libavutil/x86_cpu.h to libavutil/x86/asm.h aacdec: Don't fall back to the old output configuration when no old configuration is present. rtmp: Add message tracking rtsp: Support mpegts in raw udp packets rtsp: Support receiving plain data over UDP without any RTP encapsulation rtpdec: Remove an unused include rtpenc: Remove an av_abort() that depends on user-supplied data vsrc_movie: discourage its use with avconv. avconv: allow no input files. avconv: prevent invalid reads in transcode_init() avconv: rename OutputStream.is_past_recording_time to finished. Conflicts: configure doc/filters.texi ffmpeg.c ffmpeg.h libavcodec/Makefile libavcodec/aacdec.c libavcodec/mpegvideo.c libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-07-07swr/x86: 16bit integer mix functions need SSE2 not SSEMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-07-05swr/x86: 10l, missed some SSE2 instructions in code marked as SSE.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-30swr: fix make checkheaders.Clément Bœsch
2012-06-30swr: small align cosmetic.Clément Bœsch
2012-06-30swr: use __asm__ instead of __asm.Clément Bœsch
For consistency only.
2012-06-28swr: MMX2 & SSSE3 int16 resample coreMichael Niedermayer
about 4 times faster Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-13swr: fix 10l use of uninitialized dataMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-12swr: mix_2_1_int16_mmx/sseMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-12swr: mix_1_1_int16_sseMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-12swr: mix_1_1 int16 MMXMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-12swr: mix_2_1_float SSE/AVXMichael Niedermayer
Based-on code by Justin Ruggles Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-12swr: SIMD rematrixing and SSE/AVX mix_1_1 floatMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample-simd: Add ff_pack_6ch_float_to_int32_a_avx and ↵Michael Niedermayer
ff_pack_6ch_float_to_int32_a_sse4 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample-simd: add ff_pack_6ch_int32_to_float_a_avx and ↵Michael Niedermayer
ff_pack_6ch_int32_to_float_a_sse4 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample: make NOP_N macro less picky on its parametersMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample: Change FLOAT_TO_INT32_N to need 1 register lessMichael Niedermayer
same speed on sandy bridge Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample-simd: rename 6ch pack to what it isMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample-simd: make the converter registers parametersMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample: cosmeticsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample: unaligned AVX/SSE4 float and int32 6ch packMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-13libswresample: Implement MMX, SSE4 and AVX 6ch float and int32 packing function.Justin Ruggles
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-06swr-x86-simd: add ff_unpack_2ch_int16_to_int16/int32/float_a_ssse3Michael Niedermayer
more than 10% faster (tested on sandybridge) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-06swr-x86-simd: stereo unpack S16/S32/FLT-> S16/S32/FLT SSE/SSE2 (16 new SIMD ↵Michael Niedermayer
functions) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-06swr-x86-simd: create prototypes with macros, this is simpler.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-06swr-x86-SIMD: 3 instructions less for stereo planar->packed s32/flt->s16Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05swr: replace the remaining 2 audio convert SIMD macros by the new onesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05swr: fix internal asm labelsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05swr: fix PACK_2CH register countMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05swr: replace planar->planar/packed->packed FLT<->S16/S32 SIMD by new macrosMichael Niedermayer
this simplifies the code Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05swr: implement stereo S16/S32/FLT->S16/S32/FLT planar->packed in SSE/SSE2Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-05swr: change simd len argument to be in samples instead of dst bytes.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-03swr: add ff_int32_to_float_a_avxMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-29swr: int32_to_int16_mmx/sseMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-29swr: float_to_int16_sse2()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-29swr: float_to_int32_sse2()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-28swr: add int16_to_float_sse2()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-28swr: add int32_to_float_sse2Michael Niedermayer
could be done for sse/3dnow too if someone wants Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-28swr: int16->int32: use the old index negate trick to avoid 2 addsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-28swr: more correct cglobal parameters to int16->int32Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-28swr: seperate functions for aligned & unalignedMichael Niedermayer
If someone has an idea on how to do this cleaner, its welcome Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-28swr: add int16_to_int32_mmx/sseMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>