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
2016-06-17lavc/audiotoolboxenc: fix dropped frames on iOSRick Kern
AudioConverterFillComplexBuffer() doesn't always call its callback. A frame queue is used to prevent skipped audio samples. Signed-off-by: Rick Kern <kernrj@gmail.com>
2016-04-02lavc/audiotoolboxenc: allow setting maxrate with pre-10.9 deployment targetsRodger Combs
The build failure here is caused by the enum value not being defined, but as long as we're on a newer SDK that has it, it's safe to use it even when our deployment target is older. Setting the property will error, but we're not failing on errors there.
2016-04-02lavc/audiotoolboxenc: fix iOS buildRodger Combs
2016-04-02lavc/audiotoolboxenc: fix a number of config issuesRodger Combs
- size variables were used in a confusing way - incorrect size var use led to channel layouts not being set properly - channel layouts were incorrectly mapped for >2-channel AAC - bitrates not accepted by the encoder were discarded instead of being clamped - some minor style/indentation fixes
2016-04-02lavc/audiotoolboxenc: remove unneeded packet metadataRodger Combs
This isn't necessary here, and for some reason broke only multichannel AAC encoding when a channel layout tag was set.
2016-03-26avcodec/audiotoolboxenc: Fix compile error on OS X 10.8.Dan Dennedy
Fixes error "libavcodec/audiotoolboxenc.c:294:50: error: use of undeclared identifier 'kAudioCodecPropertyPacketSizeLimitForVBR'." That was added to 10.9: https://developer.apple.com/library/mac/releasenotes/General/APIDiffsMacOSX10_9/AudioUnit.html Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-03-22lavc: add AudioToolbox encodersRodger Combs
Fixes trac #4828