diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-02-15 16:29:46 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-02-15 16:29:46 +0000 |
commit | 895844589801e249fcdccc330b364b76a5f4a931 (patch) | |
tree | 998f20b11fa7348e3f577cfbb175a6093b754383 | |
parent | ff98c17cba7698f851276b53f87446e72aeda4a4 (diff) | |
download | ffmpeg-895844589801e249fcdccc330b364b76a5f4a931.tar.gz |
AAC: Mark che_configure() as av_cold.
It is also only called when the output configuration is not locked.
Originally committed as revision 21834 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index fdb054ceb8..1561449d61 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -169,7 +169,7 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id) * * @return Returns error status. 0 - OK, !0 - error */ -static int che_configure(AACContext *ac, +static av_cold int che_configure(AACContext *ac, enum ChannelPosition che_pos[4][MAX_ELEM_ID], int type, int id, int *channels) |