mirror of
https://github.com/nu774/fdkaac.git
synced 2025-06-05 23:29:14 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
5063c6dce1 | |||
57aa91419d | |||
b3dcf08647 |
24
ChangeLog
24
ChangeLog
@ -1,7 +1,29 @@
|
|||||||
2013-11-08 nu774 <honeycomb77@gmail.com>
|
2014-01-18 nu774 <honeycomb77@gmail.com>
|
||||||
|
|
||||||
* update ChangeLog [HEAD]
|
* update ChangeLog [HEAD]
|
||||||
|
|
||||||
|
* bump version [v0.5.2]
|
||||||
|
|
||||||
|
* fix reading of caf file without chan chunk
|
||||||
|
|
||||||
|
2013-11-17 nu774 <honeycomb77@gmail.com>
|
||||||
|
|
||||||
|
* Merge pull request #9 from rbrito/fix-typo [origin/master]
|
||||||
|
|
||||||
|
2013-11-18 Rogério Brito <rbrito@ime.usp.br>
|
||||||
|
|
||||||
|
* man: Regen manpage with hyphens escaped.
|
||||||
|
|
||||||
|
* README: Remove trailing whitespaces that end up in the manpages.
|
||||||
|
|
||||||
|
* README: Fix typo in bandwidth to match CLI options.
|
||||||
|
|
||||||
|
2013-11-08 nu774 <honeycomb77@gmail.com>
|
||||||
|
|
||||||
|
* add genman.sh, update fdkaac.1
|
||||||
|
|
||||||
|
* update ChangeLog
|
||||||
|
|
||||||
* bump version [v0.5.1]
|
* bump version [v0.5.1]
|
||||||
|
|
||||||
* fix to use libFDKAAC signaling mode 1
|
* fix to use libFDKAAC signaling mode 1
|
||||||
|
@ -204,7 +204,7 @@ int apple_chan_chunk(pcm_io_context_t *io, uint32_t chunk_size,
|
|||||||
|
|
||||||
switch (mChannelLayoutTag) {
|
switch (mChannelLayoutTag) {
|
||||||
case kAudioChannelLayoutTag_UseChannelBitmap:
|
case kAudioChannelLayoutTag_UseChannelBitmap:
|
||||||
ENSURE(bitcount(mask) == nchannels);
|
ENSURE(bitcount(mChannelBitmap) == nchannels);
|
||||||
TRY_IO(pcm_skip(io, chunk_size - 12));
|
TRY_IO(pcm_skip(io, chunk_size - 12));
|
||||||
fmt->channel_mask = mChannelBitmap;
|
fmt->channel_mask = mChannelBitmap;
|
||||||
for (i = 0; i < nchannels; ++i)
|
for (i = 0; i < nchannels; ++i)
|
||||||
|
Reference in New Issue
Block a user