summaryrefslogtreecommitdiff
path: root/libavcodec/ra144.h
Commit message (Collapse)AuthorAge
* cosmetics: Fix spelling mistakesVittorio Giovara2016-05-04
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* ra144: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* Give all anonymously typedeffed structs in headers a nameDiego Biurrun2012-10-06
| | | | Anonymous structs cannot be forward declared and have no benefit.
* ra144enc: use AVCodec.encode2()Justin Ruggles2012-03-21
|
* ra144enc: fix end-of-stream handlingJustin Ruggles2012-03-04
| | | | | | Use CODEC_CAP_DELAY and CODEC_CAP_SMALL_LAST_FRAME to properly pad and flush the encoder at the end of encoding. This is needed in order to have all input samples decoded.
* Add avcodec_decode_audio4().Justin Ruggles2011-12-02
| | | | | | Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Make ff_add_wav static to ra144.cDiego Elio Pettenò2011-01-25
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.Justin Ruggles2011-01-21
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* RealAudio 14.4k encoder.Francesco Lavra2010-06-11
| | | | | | Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split do_output_subblock() into common code and decoder specific partsFrancesco Lavra2010-06-11
| | | | | | Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentFrancesco Lavra2010-06-11
| | | | | | Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ prefix to non-static functionsFrancesco Lavra2010-06-11
| | | | | | Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split ra144.c in common code (to be shared with the future encoder) andFrancesco Lavra2010-06-11
| | | | | | | | decoder. Patch by Francesco Lavra (firstnamelastname@interfree.it) Originally committed as revision 23573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless commentVitor Sessak2008-09-08
| | | | Originally committed as revision 15274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Normalize triplets in gain_val_tab[][] so gain_exp_tab[] can be just anVitor Sessak2008-09-08
| | | | | | one-dimensional array. Originally committed as revision 15273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mark read-only data as constStefan Gehrer2008-06-24
| | | | Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused entries from lpc_refl_cb*Vitor Sessak2008-06-24
| | | | Originally committed as revision 13945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused entries from energy_tabVitor Sessak2008-06-24
| | | | Originally committed as revision 13944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused values from gain_{val,exp}_tabVitor Sessak2008-06-23
| | | | Originally committed as revision 13937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Now these tables fit in 16 bits.Vitor Sessak2008-06-23
| | | | Originally committed as revision 13936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the >> 4 calculation of cb1_base in the tableVitor Sessak2008-06-23
| | | | Originally committed as revision 13935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Last table renamingVitor Sessak2008-06-19
| | | | Originally committed as revision 13828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Yet more table renamingVitor Sessak2008-06-19
| | | | Originally committed as revision 13827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix typoVitor Sessak2008-06-19
| | | | Originally committed as revision 13826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More table renamingVitor Sessak2008-06-19
| | | | Originally committed as revision 13825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename tableVitor Sessak2008-06-19
| | | | Originally committed as revision 13824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #includes to fix 'make checkheaders'.Diego Biurrun2008-06-16
| | | | Originally committed as revision 13776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Yet more cosmeticsVitor Sessak2008-05-25
| | | | Originally committed as revision 13396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use (u)int16_t instead of short for tablesVitor Sessak2008-05-25
| | | | Originally committed as revision 13376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make tables that fit in one byte (u)int8_tVitor Sessak2008-05-25
| | | | Originally committed as revision 13375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make wavtable a table instead of an arrayVitor Sessak2008-05-24
| | | | Originally committed as revision 13274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make etable1 and etable2 tables instead of arrays.Vitor Sessak2008-05-21
| | | | Originally committed as revision 13212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ff_sqrt() function instead of using a tableVitor Sessak2008-05-21
| | | | Originally committed as revision 13210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert ra144.h tables from hex to decimalVitor Sessak2008-05-17
| | | | Originally committed as revision 13190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The first table of decodetable[] is unrelated to the other. Rename it.Vitor Sessak2008-05-15
| | | | Originally committed as revision 13159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moved the tables into header files (and applied the 'static' patch). Nick: ↵Alex Beregszaszi2003-06-29
why do you like mergeing tables and code into one file, so making it unusable big? Originally committed as revision 1999 to svn://svn.ffmpeg.org/ffmpeg/trunk