summaryrefslogtreecommitdiff
path: root/libavcodec/ra144enc.c
Commit message (Collapse)AuthorAge
* lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov2013-03-09
|
* lavc: Fix assignments in if() when calling ff_af_queue_addMichael Niedermayer2013-01-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* Replace memset(0) by zero initializations.Diego Biurrun2012-03-28
| | | | Also remove one pointless zero initialization in rangecoder.c.
* 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.
* ra144enc: use int16_t* for input samples rather than void*Justin Ruggles2012-02-25
|
* ra144enc: set AVCodecContext.coded_frameJustin Ruggles2012-02-25
|
* ra144enc: remove unneeded sample_fmt checkJustin Ruggles2012-02-25
|
* ra144enc: drop pointless "encoder" from .long_namePaul B Mahol2012-02-01
| | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun2011-12-30
|
* ra144enc: zero the reflection coeffs if the filter is unstableJustin Ruggles2011-12-22
| | | | | fixes use of uninitialized values if the filter is still unstable after using the previous frame lpc coefficients.
* ra144enc: add sample_fmts list to ff_ra_144_encoderJustin Ruggles2011-11-09
| | | | | This enables the user (i.e. avconv) to automatically convert to the supported sample format if needed.
* Use explicit struct initializers for AVCodec declarations.Diego Biurrun2011-09-24
|
* lavc: move some flac-specific options to its private context.Anton Khirnov2011-05-10
|
* 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>
* Separate window function from autocorrelation.Justin Ruggles2011-01-21
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.Justin Ruggles2011-01-21
| | | | 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
* Replace deprecated CODEC_TYPE_AUDIO and CODEC_TYPE_VIDEO with theStefano Sabatini2010-09-25
| | | | | | corresponding AVMEDIA_TYPE_* symbols. Originally committed as revision 25201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.Justin Ruggles2010-07-11
| | | | | | | Add AVLPCType enum. Deprecate AVCodecContext.use_lpc. Originally committed as revision 24199 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
* Remove filename from doxy commentVitor Sessak2010-06-11
| | | | Originally committed as revision 23585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless include. Should fix compilation in MacOS X.Vitor Sessak2010-06-11
| | | | Originally committed as revision 23584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include float.h to provide FLT_MAX define. Should fix compilation on windows.Vitor Sessak2010-06-11
| | | | Originally committed as revision 23580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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