summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-01 03:46:11 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-02-01 04:43:06 +0100
commit4b4d3d72497729722a099220b6f829c79a54a1ba (patch)
treef042730238350b253ed0c9d94ba6a2c360e212ad /libavcodec/aacenc.c
parent92f9b26c1ea9460d3a5ac1e097f1676ce2cd42dd (diff)
aacenc: fix library references
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacenc.c')
-rw-r--r--libavcodec/aacenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 51c2fa8662..11538856ab 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -144,7 +144,7 @@ static const uint8_t aac_chan_configs[6][5] = {
};
/**
- * Table to remap channels from Libav's default order to AAC order.
+ * Table to remap channels from libavcodec's default order to AAC order.
*/
static const uint8_t aac_chan_maps[AAC_MAX_CHANNELS][AAC_MAX_CHANNELS] = {
{ 0 },
@@ -474,7 +474,7 @@ static void put_bitstream_info(AVCodecContext *avctx, AACEncContext *s,
/*
* Deinterleave input samples.
- * Channels are reordered from Libav's default order to AAC order.
+ * Channels are reordered from libavcodec's default order to AAC order.
*/
static void deinterleave_input_samples(AACEncContext *s,
const float *samples, int nb_samples)