Skip to content
Snippets Groups Projects
Commit 4b4d3d72 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

aacenc: fix library references

parent 92f9b26c
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,7 @@ static const uint8_t aac_chan_configs[6][5] = { ...@@ -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] = { static const uint8_t aac_chan_maps[AAC_MAX_CHANNELS][AAC_MAX_CHANNELS] = {
{ 0 }, { 0 },
...@@ -474,7 +474,7 @@ static void put_bitstream_info(AVCodecContext *avctx, AACEncContext *s, ...@@ -474,7 +474,7 @@ static void put_bitstream_info(AVCodecContext *avctx, AACEncContext *s,
/* /*
* Deinterleave input samples. * 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, static void deinterleave_input_samples(AACEncContext *s,
const float *samples, int nb_samples) const float *samples, int nb_samples)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment