Commit d2dfde08 authored by Diego Biurrun's avatar Diego Biurrun

Add av_cold attribute to amr_nb decoding/encoding initialization functions.

Originally committed as revision 18843 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e5cd2d3d
......@@ -341,7 +341,7 @@ typedef struct AMRWBContext {
Word16 allow_dtx;
} AMRWBContext;
static int amr_wb_encode_init(AVCodecContext * avctx)
static av_cold int amr_wb_encode_init(AVCodecContext * avctx)
{
AMRWBContext *s = avctx->priv_data;
......@@ -399,7 +399,7 @@ static int amr_wb_encode_frame(AVCodecContext *avctx,
return size;
}
static int amr_wb_decode_init(AVCodecContext * avctx)
static av_cold int amr_wb_decode_init(AVCodecContext * avctx)
{
AMRWBContext *s = avctx->priv_data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment