summaryrefslogtreecommitdiff
path: root/libavcodec/twinvq.c
Commit message (Collapse)AuthorAge
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove unneeded add bias from 3 functions.Justin Ruggles2011-01-31
| | | | | | | | DSPContext.vector_fmul_window() DCADSPContext.lfe_fir() SynthFilterContext.synth_filter_float() Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Change DSPContext.vector_fmul() from dst=dst*src to dest=src0*src1.Justin Ruggles2011-01-22
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* twinvq: remove VLAsMåns Rullgård2010-06-25
| | | | Originally committed as revision 23775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move clipping of audio samples (for those codecs outputting float) from decoderRonald S. Bultje2010-04-21
| | | | | | to the audio conversion routines. Originally committed as revision 22937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move FFT parts from dsputil.h to fft.hMåns Rullgård2010-03-06
| | | | Originally committed as revision 22235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for hard-coded MDCT-related ff_sine_windows tables.Reimar Döffinger2010-01-09
| | | | Originally committed as revision 21108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing include. Fix the following compiler warnings:Vitor Sessak2009-11-23
| | | | | | | twinvq.c: In function 'decode_lsp': twinvq.c:575: warning: implicit declaration of function 'ff_sort_nearly_sorted_floats' Originally committed as revision 20594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sorting function used in TwinVQ a shared functionVitor Sessak2009-11-22
| | | | Originally committed as revision 20584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum FrameType as parameter to construct_perm_table().Carl Eugen Hoyos2009-11-08
| | | | Originally committed as revision 20480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge FFTContext and MDCTContextMåns Rullgård2009-09-20
| | | | Originally committed as revision 19931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add two more sizes to ff_sine_windows[] and also pad it with NULLs soVitor Sessak2009-09-15
| | | | | | | | that FF_ELEMS(ff_sine_windows[x]) == 1 << x. Fix issue 1384. Originally committed as revision 19862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Formatting K&R fixesVitor Sessak2009-08-27
| | | | Originally committed as revision 19732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, revision 19728 added a bug that broke twinvq decoding. I forgot toVitor Sessak2009-08-27
| | | | | | multiply the buffer size by the number of channels. Originally committed as revision 19730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SSE optimized vector_clipf(). 10% faster TwinVQ decoding.Vitor Sessak2009-08-27
| | | | Originally committed as revision 19728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: add some whitespace around operatorsVitor Sessak2009-08-24
| | | | Originally committed as revision 19695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TwinVQ decoderVitor Sessak2009-08-23
Originally committed as revision 19682 to svn://svn.ffmpeg.org/ffmpeg/trunk