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-07-01x86: lpc: fix a segfault in av_evaluate_lls_sse2()Loren Merritt
2013-06-29lpc: use levinson for the first pass of multipass choleskyLoren Merritt
Levinson is faster, and cholesky is only needed if we want to apply different weights to different samples, which doesn't happen on the first pass. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-06-29x86: lpc: simd av_update_llsLoren Merritt
4x-6x faster on sandybridge Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-06-29lpc: use function pointers, in preparation for asmLoren Merritt
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-06-29lpc: remove "decay" argumentLoren Merritt
We never used the rolling-average mode, and this makes av_update_lls 15% faster. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-02-28lls: move to the private namespaceLuca Barbato
The functions are private.
2012-10-29lpc: Add a function for calculating reflection coefficients from samplesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-08x86: call most of the x86 dsp init functions under if (ARCH_X86)Janne Grunau
Rename the called dsp init functions to *_init_x86.
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-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-06doxygen: Do not include license boilerplates in Doxygen comment blocks.Diego Biurrun
2011-12-21Replace Subversion revisions in comments by Git hashes.Diego Biurrun
2011-07-14doxygen: Make sure parameter names match between .c and .h files.Diego Biurrun
2011-07-03doxygen: Fix parameter names to match the function prototypes.Diego Biurrun
2011-05-10lavc: move some flac-specific options to its private context.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-21cosmetics related to LPC changes.Justin Ruggles
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-21Separate window function from autocorrelation.Justin Ruggles
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-21Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.Justin Ruggles
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-07-11Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.Justin Ruggles
Add AVLPCType enum. Deprecate AVCodecContext.use_lpc. Originally committed as revision 24199 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-18Move autocorrelation function from flacenc.c to lpc.c. Also rename theJustin Ruggles
corresponding dsputil functions and remove their dependency on the FLAC encoder. Fixes Issue1486. Originally committed as revision 20266 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-14lpc: Remove false positive compilation warning about weight beingPatrik Kullman
uninitialized. Patch by Patrik Kullman (patrik A yes D nu). Originally committed as revision 17218 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-14Assert that ff_lpc_calc_coefs() is called with a valid LPC method.Patrik Kullman
Patch by Patrik Kullman (patrik A yes D nu). Originally committed as revision 17217 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-14lpc: Document the use_lpc parameter to ff_lpc_calc_coefs().Patrik Kullman
Patch by Patrik Kullman (patrik A yes D nu). Originally committed as revision 17216 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-04Avoid duplicating compute_lpc_coefs() function in both the RA288 and AAC ↵Vitor Sessak
decoders. Originally committed as revision 15193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Misc cosmetics in compute_lpc_coefs(): braces removal and empty linesVitor Sessak
Originally committed as revision 15093 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Remove useless var in compute_lpc_coefs()Vitor Sessak
Originally committed as revision 15091 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Merge declaration and initialization of a few vars in compute_lpc_coefs()Vitor Sessak
Originally committed as revision 15088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-30Remove useless zeroing of a bufferVitor Sessak
Originally committed as revision 15038 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-21cosmetics: Fix incorrect indentation.Diego Biurrun
Originally committed as revision 14878 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17update my email address to one which does not depend on my service providerJustin Ruggles
Originally committed as revision 14797 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17use range of lpc orders in ORDER_METHOD_ESTJustin Ruggles
Originally committed as revision 14796 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17cosmetics: adjust line breaks and vertical alignmentJustin Ruggles
Originally committed as revision 14795 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-17use limited range of lpc orders when quantizing coefficientsJustin Ruggles
Originally committed as revision 14794 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16lpc: cosmetics: vertically align declarations and definitions.Ramiro Polla
Originally committed as revision 14792 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-16flacenc, lpc: Move LPC code from flacenc.c to new lpc.[ch] files.Ramiro Polla
Originally committed as revision 14790 to svn://svn.ffmpeg.org/ffmpeg/trunk