summaryrefslogtreecommitdiff
path: root/libavcodec/sipr.c
Commit message (Collapse)AuthorAge
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* cosmetics: Align codec declarationsMartin Storsjö2012-04-06
| | | | | | | Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
* Drop ALT_ prefix from BITSTREAM_READER_LE name.Diego Biurrun2011-12-22
| | | | | The prefix is a historic remnant that probably meant "alternative". Now that the A32 bitstream reader has been dropped it makes no sense anymore.
* 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.
* sipr: use a function pointer to select the decode_frame functionJustin Ruggles2011-11-09
|
* sipr: set mode based on block_align instead of bit_rateJustin Ruggles2011-11-09
| | | | the user is not required to set bit_rate
* sipr: do not needlessly set *data_size to 0 when returning an errorJustin Ruggles2011-11-09
|
* sipr: fix get_bits(0) callsMans Rullgard2011-10-11
| | | | | | Zero-length get_bits() is undefined, must check before calling. Signed-off-by: Mans Rullgard <mans@mansr.com>
* sipr: fix the output data size check and only calculate it once.Justin Ruggles2011-10-04
|
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-29
| | | | It's more readable and less prone to breakage.
* sipr: Drop unused DSPContextAlex Converse2011-06-18
|
* sipr: include string.h for mem*()Alex Converse2011-06-18
|
* sipr: Use memmove() to copy overlapped buffers.Alex Converse2011-06-18
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | 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>
* 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
* Remove pointless semicolonVitor Sessak2010-09-17
| | | | Originally committed as revision 25141 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move lsp2lpc_sipr() function to common code so it can be reused in aMarcelo Galvăo Póvoa2010-09-07
| | | | | | | | AMRWB decoder. Patch by Marcelo Galvăo Póvoa. Originally committed as revision 25062 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
* 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
* Split input/output data arguments to ff_acelp_apply_order_2_transfer_function().Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the input/output data arguments to ff_adaptive_gain_control().Ronald S. Bultje2010-04-21
| | | | Originally committed as revision 22932 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
* Fix spelling.Ronald S. Bultje2010-03-11
| | | | Originally committed as revision 22470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SIPR16k decoderVitor Sessak2010-01-16
| | | | Originally committed as revision 21234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow a SIPR table to be used by the upcoming SIPR16k decoderVitor Sessak2010-01-16
| | | | Originally committed as revision 21233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split some SIPR structs to a header file for the upcoming SIPR16k commitVitor Sessak2010-01-16
| | | | Originally committed as revision 21232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove needless use of log2f()Vitor Sessak2010-01-13
| | | | Originally committed as revision 21185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the struct SiprModeParam of the context. This will simplify splittingVitor Sessak2010-01-13
| | | | | | the file for future 16k mode decoder code. Originally committed as revision 21184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SIPR: kill variable-length arraysMåns Rullgård2010-01-13
| | | | | | | | Two of these are in fact constant size, so use the constant instead of a variable in the declarations. The remaining one is small enough that always using the maximum size is acceptable. Originally committed as revision 21183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SIPR decoder for modes 8k5, 6k5 and 5k0.Vladimir Voroshilov2010-01-10
Patch by Vladimir Voroshilov and myself. Originally committed as revision 21125 to svn://svn.ffmpeg.org/ffmpeg/trunk