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-06-24lavc: Add option to encode MPEG-2 AAC with libfdk-aacKieran Kunhya
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-03-09lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov
2013-02-11libfdk-aacenc: Actually check for upper bounds of cutoffDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-01-14lavc: Fix assignments in if() when calling ff_af_queue_addMichael Niedermayer
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-09-25libfdk-aac: Allow setting VBR modes via a private optionMartin Storsjö
This avoids using the global_quality field and QSCALE flag for passing the VBR modes, since the value range of the global_quality field doesn't really map cleanly to this codec's VBR modes. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-25libfdk-aac: Warn the user that the VBR modes are unsupportedMartin Storsjö
These modes were not originally exposed by the library at all. In practice, only a few of them work for each sample rate/profile combination, and they don't work at all for the more uncommon sample rates. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-25libfdk-aac: reindent after last commitNathan Caldwell
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-25libfdk-aac: Limit to supported sample rates.Nathan Caldwell
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-05avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union memberMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-05avopt: Store defaults for AV_OPT_TYPE_CONST in the i64 union memberMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-25libfdk-aacenc: add LATM/LOAS encapsulation supportKieran Kunhya
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-15libfdk-aac: Check if cutoff value is validMohammad Alsaleh
Passing a cutoff value < sample_rate/256 will cause a crash. Also, values >20000 will have no effect and 20000 will be used anyway. Signed-off-by: Mohammad Alsaleh <msal@tormail.org> Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-13libfdk-aac: Allow setting the encoder bandwidth/cutoff frequencyMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-12Support AAC encoding via the external library fdk-aacMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>