summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* atrac1: do not keep a copy of channel count in the private contextJustin Ruggles2012-11-01
|
* dsicinaudio: set channels and channel layoutJustin Ruggles2012-11-01
|
* g722dec: set channel layout at initialization instead of validating itJustin Ruggles2012-11-01
|
* amrwbdec: set channels, channel_layout, and sample_rateJustin Ruggles2012-11-01
| | | | Only mono 16kHz is supported.
* amrnbdec: set channels, channel_layout, and sample_rateJustin Ruggles2012-11-01
| | | | Only mono 8kHz is supported.
* dca_parser: allow the parser to change the sample rateJustin Ruggles2012-11-01
|
* lavc: check channel count after decoder initJustin Ruggles2012-11-01
| | | | | | Ensures the decoder did not set channel count to an insanely high value during initialization, which could cause large memory usage when it tries to get a buffer during decoding.
* lavc: move SANE_NB_CHANNELS to internal.h and use it in the PCM decodersJustin Ruggles2012-11-01
|
* fate: add ac3/eac3 tests to FATE_SAMPLES_AVCONVJanne Grunau2012-10-31
| | | | Fixes typo in 2cbdd7c92958cb8226491d8eb23ed2d57d4b841e.
* avconv_opt, cmdutils: Add missing function parameter DoxygenDiego Biurrun2012-10-31
|
* x86: Move optimization suffix to end of function namesDiego Biurrun2012-10-31
| | | | This simplifies cpuflags porting.
* x86: h264_chromamc_10bit: drop pointless PAVG %defineDiego Biurrun2012-10-31
| | | | It is only used in one place so there is no need for the abstraction.
* x86: mmx2 ---> mmxext in function namesDiego Biurrun2012-10-31
|
* swscale: do not forget to swap data in formats with different endiannessKostya Shishkov2012-10-31
| | | | | | | | Otherwise during scaling it will try to interpret input in the wrong way and that leads to the test results disagreeing on different platforms and with different optimizations. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* aacdec: Drop some unused function argumentsDiego Biurrun2012-10-31
|
* x86: Fix assembly with NASMDave Yeo2012-10-31
| | | | | | | Unlike YASM, NASM only looks for include files in the current directory, not in the directory that included files reside in. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86: fmtconvert: Refactor cvtps2pi emulation through cpuflagsDiego Biurrun2012-10-31
|
* x86: fmtconvert: port to cpuflagsDiego Biurrun2012-10-31
|
* x86: MMX2 ---> MMXEXT in macro namesDiego Biurrun2012-10-31
|
* x86: mmx2 ---> mmxext in variable namesDiego Biurrun2012-10-31
|
* x86: mmx2 ---> mmxext in comments and messagesDiego Biurrun2012-10-31
|
* x86: yasm: Use complete source path for macro helper %includesDiego Biurrun2012-10-31
| | | | | This is more consistent with the way we handle C #includes and it simplifies the build system.
* x86: include x86inc.asm in x86util.asmDiego Biurrun2012-10-31
| | | | This is necessary to allow refactoring some x86util macros with cpuflags.
* cng: Reindent some incorrectly indented linesMartin Storsjö2012-10-30
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* cngdec: Allow flushing the decoderMartin Storsjö2012-10-30
| | | | | | | | | | After a flush, don't average the output envelope and energy with previous iterations. Also start directly from the target values for the first iteration at startup. Signed-off-by: Martin Storsjö <martin@martin.st>
* cngdec: Make the dbov variable have the right unitMartin Storsjö2012-10-30
| | | | | | Previously the unit of the variable was Bov, not dBov. Signed-off-by: Martin Storsjö <martin@martin.st>
* cngdec: Fix the memset size to cover the full arrayMartin Storsjö2012-10-30
| | | | | | | This was a leftover from previous iterations of the code, where the refl coef arrays were statically allocated. Signed-off-by: Martin Storsjö <martin@martin.st>
* cngdec: Update the LPC coefficients after averaging the reflection coefficientsMartin Storsjö2012-10-30
| | | | | | I somehow messed up the placement of this one. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: fix print_config() with broke awksMans Rullgard2012-10-30
| | | | | | | | Some awk versions do not treat the result of unary + on a (numeric) string as numeric, giving wrong results when used in a boolean context Using unary - instead is logically equivalent works as expected. Signed-off-by: Mans Rullgard <mans@mansr.com>
* pixfmt: support more yuva formatsLuca Barbato2012-10-30
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* swscale: support gray to 9bit and 10bit formatsLuca Barbato2012-10-30
| | | | With the input of Kostya and Ronald.
* configure: rewrite print_config() function using awkMans Rullgard2012-10-30
| | | | | | | This is much faster with slow shells and noticeably faster even with bash on a fast Linux system. Signed-off-by: Mans Rullgard <mans@mansr.com>
* FATE: fix (AD)PCM test dependencies broken in e519990Anton Khirnov2012-10-30
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Use ptrdiff_t instead of int for intra pred "stride" function parameter.Ronald S. Bultje2012-10-29
| | | | | This way, SIMD-optimized functions don't have to sign-extend their stride argument manually to be able to do pointer arithmetic.
* x86: use PRED4x4/8x8/8x8L/16x16 macros to declare intrapred prototypes.Ronald S. Bultje2012-10-29
|
* Remove INIT_AVX from x86inc.asm.Ronald S. Bultje2012-10-29
|
* Remove usage of INIT_AVX in h264_intrapred_10bit.asm.Ronald S. Bultje2012-10-29
| | | | | | | Replace INIT_AVX by INIT_XMM avx. Port the whole file to use cpuflag based function declarations. Remove (now unused) cputype argument in function declaration macros. Change function prototypes to have mmx2 instead of mmxext as suffix, since that's required by cpuflags.
* dv: fix indentationAnton Khirnov2012-10-29
|
* dv: use AVStream.index instead of abusing AVStream.idAnton Khirnov2012-10-29
|
* lavfi: add ashowinfo filterAnton Khirnov2012-10-29
| | | | | | It can be useful for debugging. Based on a patch by Stefano Sabatini <stefano.sabatini-lala@poste.it>
* avcodec: Add a RFC 3389 comfort noise codecMartin Storsjö2012-10-29
| | | | | | | | | | This isn't too useful as a normal codec, but can be used in voip style applications. The decoder updates the noise generator parameters when a packet is given to it for decoding, but if called with an empty packet, it generates more noise according to the last parameters. Signed-off-by: Martin Storsjö <martin@martin.st>
* lpc: Add a function for calculating reflection coefficients from samplesMartin Storsjö2012-10-29
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lpc: Add a function for calculating reflection coefficients from ↵Justin Ruggles2012-10-29
| | | | | | autocorrelation coefficients Signed-off-by: Martin Storsjö <martin@martin.st>
* lavr: document upper bound on number of output samples.Anton Khirnov2012-10-29
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavr: add general API usage doxyAnton Khirnov2012-10-29
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* indeo3: remove duplicate capabilities line.Anton Khirnov2012-10-29
|
* fate: ac3: Add dependenciesDiego Biurrun2012-10-29
|
* fate: ac3: Place E-AC-3 tests and AC-3 tests in different groupsDiego Biurrun2012-10-29
|
* fate: Add shorthands for acodec PCM and ADPCM testsDiego Biurrun2012-10-29
|
* avconv: Drop unused function argument from do_video_stats()Diego Biurrun2012-10-29
|