summaryrefslogtreecommitdiff
path: root/libavcodec/acelp_pitch_delay.c
Commit message (Collapse)AuthorAge
* dsputil: Split audio operations off into a separate contextDiego Biurrun2014-06-22
|
* floatdsp: move scalarproduct_float from dsputil to avfloatdsp.Ronald S. Bultje2013-01-22
| | | | This makes the aac decoder and all voice codecs independent of dsputil.
* celp_math: rename ff_log2 to ff_log2_q15Mans Rullgard2012-10-20
| | | | | | | This name is more descriptive as the function returns a fixed-point value with 15 fraction bits. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Restore dependency of acelp_filters.o on celp_math.oDiego Biurrun2012-08-27
|
* celp_math: Replace duplicate ff_dot_productf() by ff_scalarproduct_c()Diego Biurrun2012-08-27
|
* Don't include common.h from avutil.hMartin Storsjö2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* dsputil: remove shift parameter from scalarproduct_int16Christophe GISQUET2012-03-07
| | | | | | | | | There is only one caller, which does not need the shifting. Other use cases are situations where different roundings would be needed. The x86 and neon versions are modified accordingly. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Remove unused code under G729_BITEXACT #ifdef.Diego Biurrun2011-07-20
| | | | G729_BITEXACT is never set, so the code is all dead code.
* Do not include mathematics.h in avutil.hMans Rullgard2011-07-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace log2f(10) with a constantMåns Rullgård2010-02-20
| | | | Originally committed as revision 21924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement ff_decode_pitch_lag() that is used by both AMR and SIPR.Vitor Sessak2009-11-15
| | | | | | Based on code written by Colin McQuillan during his SoC project. Originally committed as revision 20540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement AMR gain function that is used by both AMR and SIPR.Vitor Sessak2009-10-31
| | | | | | Based on AMR SoC code by Robert Swain and Colin McQuillan. Originally committed as revision 20421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated dot product code. Use dsputil'sAurelien Jacobs2008-12-29
| | | | | | scalarproduct instead. Patch by Aurelien Jacobs. Originally committed as revision 16391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename acelp_math.[ch] to celp_math.[ch] to prepare for QCELP decoder merge.Kenan Gillet2008-10-24
| | | | | | patch by Kenan Gillet, kenan.gillet gmail com Originally committed as revision 15679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make sum_of_squares() more genericMichael Niedermayer2008-07-03
| | | | Originally committed as revision 14056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* gain code, gain pitch and pitch delay decoding for ACELP based codecsVladimir Voroshilov2008-06-30
Originally committed as revision 14037 to svn://svn.ffmpeg.org/ffmpeg/trunk