Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-02-12comfortnoise: decode directly to the user-provided AVFrameJustin Ruggles
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
It will be useful in the upcoming transition to refcounted AVFrames.
2012-10-30cng: Reindent some incorrectly indented linesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-30cngdec: Allow flushing the decoderMartin Storsjö
After a flush, don't average the output envelope and energy with previous iterations. Also start directly from the target values for the first iteration at startup. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-30cngdec: Make the dbov variable have the right unitMartin Storsjö
Previously the unit of the variable was Bov, not dBov. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-30cngdec: Fix the memset size to cover the full arrayMartin Storsjö
This was a leftover from previous iterations of the code, where the refl coef arrays were statically allocated. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-30cngdec: Update the LPC coefficients after averaging the reflection coefficientsMartin Storsjö
I somehow messed up the placement of this one. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-30avcodec: Add a RFC 3389 comfort noise codecMartin Storsjö
This isn't too useful as a normal codec, but can be used in voip style applications. The decoder updates the noise generator parameters when a packet is given to it for decoding, but if called with an empty packet, it generates more noise according to the last parameters. Signed-off-by: Martin Storsjö <martin@martin.st>