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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-24lavr: x86: optimized 6-channel fltp to s16 conversionJustin Ruggles
2012-08-24lavr: x86: optimized 2-channel fltp to s16 conversionJustin Ruggles
2012-08-24lavr: x86: optimized 6-channel s16p to flt conversionJustin Ruggles
2012-08-24lavr: x86: optimized 2-channel s16p to flt conversionJustin Ruggles
2012-08-24lavr: x86: optimized 6-channel s16p to s16 conversionJustin Ruggles
2012-08-24lavr: x86: optimized 2-channel s16p to s16 conversionJustin Ruggles
2012-08-23doc/APIchanges: add an entry for codec descriptors.Anton Khirnov
Also fill in missing dates and hashes.
2012-08-23vorbisenc: set AVCodecContext.bit_rate to 0Justin Ruggles
The Vorbis encoder is always VBR.
2012-08-23vorbisenc: fix quality parameterJustin Ruggles
This generates output with bitrates similar to libvorbis for a given quality value.
2012-08-23FATE: add ALAC encoding testsJustin Ruggles
2012-08-23lpc: fix alignment of windowed samples for odd maximum LPC orderJustin Ruggles
Fixes crash on x86 due to alignment requirements for w_data in lpc_apply_welch_window_sse2().
2012-08-23alacenc: use s16p sample format as inputJustin Ruggles
2012-08-23alacenc: remove unneeded sample_fmt checkJustin Ruggles
2012-08-23alacenc: fix max_frame_size calculation for the final frameJustin Ruggles
2012-08-22adpcm_swf: Use correct sample offsets when using trellis.Justin Ruggles
Fixes invalid reads when encoding mono streams when trellis is used.
2012-08-22rtmp: support strict rtmp serversSamuel Pitoiset
In order to send or receive a stream FCPublish, FCSubscribe and _checkbw are completely optional and often not implemented. releaseStream over a non-existen stream might report an error instead of being silent. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-08-22mjpegdec: support AVRn interlacedMichael Niedermayer
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-08-22x86: remove FASTDIV inline asmMans Rullgard
GCC 4.3 and later do the right thing with the plain C code. Earlier versions in 32-bit mode generate one extra instruction, needlessly zeroing what would be the high half of the shifted value. At least two gcc configurations miscompile the inline asm in some situations. In 64-bit mode, all gcc versions generate imul r64, r64 followed by shr. On Intel i7 and later, this imul is faster 32-bit mul. On older Intel and all AMD, it is slightly slower. On Atom it is much slower. Considering where the FASTDIV macro is used, any overall negative performance impact of this change should be negligible. If anyone cares, they should file a bug against gcc and get the instruction selection fixed. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-22build: x86: Only compile mpegvideo optimizations when necessaryDiego Biurrun
2012-08-22configure: Drop fastdiv optionDiego Biurrun
There is no point in having the user disable any fastdiv macros. Besides the condition implementation was broken and only disabled the C implementation, but no platform specific assembly versions.
2012-08-22build: Make the E-AC-3 encoder select the AC-3 encoderDiego Biurrun
The E-AC-3 encoder depends on almost all of the code of the AC-3 encoder, so it makes no sense to enable one without the other.
2012-08-22fate: flac: Only run tests requiring samples when samples are availableDiego Biurrun
2012-08-21dirac: use meaningful return valuesJordi Ortiz
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-08-21flacdec: simplify sample buffer handlingMans Rullgard
Pass pointer to sample buffer instead of channel number to various functions called from decode_subframe(). Also simplify a few expressions within this function.
2012-08-21flacdec: simplify loop in decode_residuals()Mans Rullgard
2012-08-21fate: make Ut Video encoder tests use bitexact swscale flagsJan Ekström
The failures on various architectures and compilers on the RGB(A) tests seem to have been because of one-off YCbCr->RGB conversion results. This should make the conversion results match on most if not all code paths. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-08-20build: amrwb: Drop redundant lsp dependency declarationDiego Biurrun
2012-08-20fate: fix utvideoenc testsMans Rullgard
For some reason, the prerequisites have to be specified like this. Make works in mysterious ways. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-20fate: Add FATE tests for the Ut Video encoderJan Ekström
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-08-20lavc: add Ut Video encoderJan Ekström
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-08-20mpegvideo_enc: remove stray duplicate line from 7f9aaa4Anton Khirnov
2012-08-19swscale: x86: fix #endif comments in rgb2rgb template fileGiorgio Vazzana
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-08-19avconv: mark more options as expert.Anton Khirnov
2012-08-19avconv: split printing "main options" into global and per-file.Anton Khirnov
2012-08-19avconv: refactor help printing.Anton Khirnov
By default don't dump every single option on the user, but print only the basic options. Add -h long/full to print more options.
2012-08-19avconv: print info/capabilities options in a separate help group.Anton Khirnov
2012-08-19avtools: add -h demuxer/muxerAnton Khirnov
2012-08-19cmdutils: extend -h to allow printing codec details.Anton Khirnov
2012-08-19cmdutils: change semantics of show_help_options() and document it.Anton Khirnov
Currently it takes a mask and value, such that options for which (flags & mask) == value. Change it to take required flags and forbidden flags instead. This is shorter and simpler to understand.
2012-08-19avtools: move some newlines to show_help_options().Anton Khirnov
Don't require every caller to supply them.
2012-08-19avconv: deprecate -isync.Anton Khirnov
This option does not do anything. Also remove OPT_GRAB, since -isync is the last option using it.
2012-08-19avconv: reformat the options table.Anton Khirnov
2012-08-19avconv: get rid of ugly casts in the options table.Anton Khirnov
2012-08-19avconv: try to match codecs by codec descriptor name as a last resort.Anton Khirnov
This allows e.g. -c:v h264 to select the libx264 encoder.
2012-08-19avtools: fix show_foo() signatures.Anton Khirnov
show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
2012-08-19vorbisdec: remove some pointless commentsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-18avprobe: add const to AVCodec pointerMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-18libavformat: add const to AVCodec pointersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-18pthread: add const to AVCodec pointersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-18mpegvideo_enc: don't use deprecated avcodec_encode_video().Anton Khirnov