[FFmpeg-devel] [PATCH]Ticket 55
Carl Eugen Hoyos
cehoyos at ag.or.at
Sun May 29 23:57:08 CEST 2011
Hi!
Attached patch fixes the channel layout in the native aac encoder for the
default channel configurations.
Please comment, Carl Eugen
-------------- next part --------------
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index b51fccd..8fb83af 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -134,6 +134,22 @@ static const uint8_t aac_chan_configs[6][5] = {
{4, TYPE_SCE, TYPE_CPE, TYPE_CPE, TYPE_LFE}, // 6 channels - front center + stereo + back stereo + LFE
};
+static const uint8_t psy_start_channels[][AAC_MAX_CHANNELS] = {
+ { 0 },
+ { 0 },
+ { 2, 0 },
+ { 2, 0, 0, 3 },
+ { 2, 0, 0, 3 },
+ { 2, 0, 0, 4, 4, 3 },
+};
+
+static int8_t channel_reordering[][AAC_MAX_CHANNELS] = {
+ { 2, 0, 1 },
+ { 2, 0, 1, 3 },
+ { 2, 0, 1, 3, 4 },
+ { 2, 0, 1, 4, 5, 3 },
+};
+
/**
* Make AAC audio config object.
* @see 1.6.2.1 "Syntax - AudioSpecificConfig"
@@ -498,15 +514,24 @@ static int aac_encode_frame(AVCodecContext *avctx,
return 0;
if (data) {
if (!s->psypp) {
+ if (avctx->channels <= 2) {
memcpy(s->samples + 1024 * avctx->channels, data,
1024 * avctx->channels * sizeof(s->samples[0]));
+ } else {
+ for (i = 0; i < 1024; i++)
+ for (ch = 0; ch < avctx->channels; ch++)
+ s->samples[(i + 1024) * avctx->channels + ch] =
+ ((int16_t*)data)[i * avctx->channels +
+ channel_reordering[avctx->channels-3][ch]];
+ }
} else {
start_ch = 0;
samples2 = s->samples + 1024 * avctx->channels;
for (i = 0; i < chan_map[0]; i++) {
tag = chan_map[i+1];
chans = tag == TYPE_CPE ? 2 : 1;
- ff_psy_preprocess(s->psypp, (uint16_t*)data + start_ch,
+ ff_psy_preprocess(s->psypp,
+ (uint16_t*)data + psy_start_channels[avctx->channels-1][start_ch],
samples2 + start_ch, start_ch, chans);
start_ch += chans;
}
More information about the ffmpeg-devel
mailing list