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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-07libvo-amrwbenc: Add braces to shut up gcc warning.Diego Biurrun
libavcodec/libvo-amrwbenc.c:37:5: warning: missing braces around initializer
2011-04-19libvo-aacenc,libvo-amrwbenc}: fix api usageLuca Barbato
Use the correct error codes and format identifier.
2011-04-14libopencore-amr, libvo-amrwbenc: Allow enabling DTX via private AVOptionsMartin Storsjö
DTX, discontinuous transmission, allows emitting frames with comfort noise when no voice is detected in the input audio. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-14libopencore-amr, libvo-amrwbenc: Only check the bitrate when changedMartin Storsjö
Also rename the incorrectly named enc_bitrate to enc_mode, use the enc_bitrate variable for storing the last chosen bitrate. This avoids continuous warning log messages if not using an exactly matching bitrate, while still allowing changing bitrate at any point. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-14libopencore-amr, libvo-amrwbenc: Find the closest matching bitrateMartin Storsjö
Dynamically print the supported bitrates from the local table, instead of using a hardcoded log message. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-13libvo-*: Fix up the long codec namesMartin Storsjö
Include VisualOn to clarify the codec name, but remove the actual library name from the user-friendly description. Also mention Android, to clarify which VisualOn implementation this refers to, since they do sell other variants of the same code, too. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-13libopencore-amr, libvo-amrbwenc: Rename variables and functionsMartin Storsjö
Avoid camelCase names for functions and variables. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-13libvo-amrwbenc: Don't explicitly store bitrate modes in the bitrate tableMartin Storsjö
The bitrate modes are equal to the array indices. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-13libopencore-amr, libvo-amrwbenc: Make the bitrate/mode mapping array static ↵Martin Storsjö
const Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-13libopencore-amr, libvo-amrwbenc: Return proper error codes in most placesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-12libvo-*: Don't use deprecated sample format names and enum namesMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-12libavcodec: Use "const enum AVSampleFormat[]" in AVCodec initializationMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-11Add support for AMR-WB encoding via libvo-amrwbencMartin Storsjö
The wrapper code is based on the libamr wrapper removed in SVN rev 19365. Signed-off-by: Martin Storsjö <martin@martin.st>