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-11-12ppc: fix some unused variable warningsMans Rullgard
The third argument of OP_U8_ALTIVEC is evaluated at most once so there is no need for a potentially unused temporary variable. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-11-12binkaudio: set channel layoutJustin Ruggles
2012-11-11build: Drop AVX assembly ifdefsDiego Biurrun
An assembler able to cope with AVX instructions is now required.
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-11-11mss2: prevent potential uninitialized readsAlberto Delmás
The alternative to zeroing on init is setting the corrupted flag in all cases where pal_pic is not fully written, at the cost of added complexity. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2012-11-11mss2: reindent after last commitKostya Shishkov
2012-11-11mss2: fix handling of unmasked implicit WMV9 rectanglesAlberto Delmás
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2012-11-10x86: h264_qpel_10bit: drop unused parameter from MC10/MC20/MC30 macrosDiego Biurrun
2012-11-10x86: PALIGNR: port to cpuflagsDiego Biurrun
2012-11-10x86: h264_qpel_10bit: port to cpuflagsDiego Biurrun
2012-11-08flacenc: ensure the order is within the min/max range in LPC order searchJustin Ruggles
This fixes use of uninitialized values when the FLAC encoder uses the 2-level, 4-level, and 8-level search methods. Fixes failure of the fate-flac-24-comp-8 test when run using valgrind.
2012-11-08x86: h264_intrapred: port to cpuflagsDiego Biurrun
2012-11-08libvpxenc: Allow enabling constrained quality (CQ) modeJames Zern
The CQ mode was introduced in libvpx 0.9.6. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-11-07libopencore-amr: Check the return value of amr_decode_fix_avctxMartin Storsjö
This allows getting rid of redundant checks later in the codec specific init functions. Move the check to before actually initializing the decoder lib, to simplify error handling. This fixes a case of returning a value from a void function, present since d40dab907. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-11-06flacenc: use RICE2 entropy coding mode for 24-bitJustin Ruggles
2012-11-06flacenc: add 24-bit encodingJustin Ruggles
2012-11-06flacdsp: move lpc encoding from FLAC encoder to FLACDSPContextJustin Ruggles
Also, templatize the functions for 16-bit and 32-bit sample range. This will be used for 24-bit FLAC encoding.
2012-11-06flacenc: use uint64_t for bit countsJustin Ruggles
Needed to avoid integer overflows for 24-bit encoding.
2012-11-06flacenc: remove wasted trailing 0 bitsJustin Ruggles
2012-11-06flacenc: use a separate buffer for byte-swapping for MD5 checksum on big-endianJustin Ruggles
This is much faster than calculating the MD5 one sample at a time.
2012-11-05x86: h264qpel: Only define mmxext QPEL functions if H264QPEL is enabledDiego Biurrun
This fixes compilation with --disable-everything and components enabled.
2012-11-05x86: PABSW: port to cpuflagsDiego Biurrun
2012-11-05x86: vc1dsp: port to cpuflagsDiego Biurrun
2012-11-02x86: Refactor PSWAPD fallback implementations and port to cpuflagsDiego Biurrun
2012-11-02parser: Move Doxygen documentation to the header filesDiego Biurrun
2012-11-02PGS subtitles: Expose forced flagJohn Stebbins
Useful for detection of subtitles displayed during foreign language scenes. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-11-02x86: PMINUB: port to cpuflagsDiego Biurrun
2012-11-02x86: ac3dsp: port to cpuflagsDiego Biurrun
2012-11-02lavc: add some AVPacket doxy.Anton Khirnov
2012-11-01decode_audio3: initialize AVFrameIlkka Ollakka
Same fix and issue as in a25d912dca9cd553440167e0476c47581359c0fc Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-11-01ws-snd1: set channel layoutJustin Ruggles
2012-11-01wmavoice: set channel layoutJustin Ruggles
2012-11-01wmapro: use AVCodecContext.channels instead of keeping a private copyJustin Ruggles
2012-11-01wma: do not keep private copies of some AVCodecContext fieldsJustin Ruggles
channels, sample_rate, bit_rate, and block_align can be used directly from the AVCodecContext
2012-11-01vmdaudio: set channel layoutJustin Ruggles
2012-11-01twinvq: validate sample rate codeJustin Ruggles
A large invalid value could cause undefined behavior when left-shifted by 8 later in the function.
2012-11-01twinvq: set channel layoutJustin Ruggles
2012-11-01twinvq: validate that channels is not <= 0Justin Ruggles
This could occur due to integer overflow when reading the channel count from the extradata.
2012-11-01truespeech: set channel layoutJustin Ruggles
2012-11-01sipr: set channel layoutJustin Ruggles
2012-11-01shorten: validate that the channel count in the header is not <= 0Justin Ruggles
2012-11-01ra288dec: set channel layoutJustin Ruggles
2012-11-01ra144dec: set channel layoutJustin Ruggles
2012-11-01qdm2: remove unneeded checks for channel countJustin Ruggles
2012-11-01qdm2: make sure channels is not <= 0 and set channel layoutJustin Ruggles
2012-11-01qcelpdec: set channel layoutJustin Ruggles
2012-11-01nellymoserdec: set channels to 1Justin Ruggles
2012-11-01libopencore-amr: set channel layout for amr-nb or if not set by the userJustin Ruggles
2012-11-01libilbc: set channel layoutJustin Ruggles
2012-11-01dpcm: use AVCodecContext.channels instead of keeping a private copyJustin Ruggles