diff options
author | Zuxy Meng <zuxy.meng@gmail.com> | 2008-03-21 03:11:20 +0000 |
---|---|---|
committer | Zuxy Meng <zuxy.meng@gmail.com> | 2008-03-21 03:11:20 +0000 |
commit | 98a6fff98c3f2e963783e52fb193529bdc14e040 (patch) | |
tree | d950fcf03110d5716c0d348f0ffbbc5f459b71aa /libavcodec/4xm.c | |
parent | 77ab59eb7ff28d8183ea51c5a46aab3b430edd9c (diff) | |
download | ffmpeg-98a6fff98c3f2e963783e52fb193529bdc14e040.tar.gz |
Apply 'cold' attribute to init/uninit functions in libavcodec
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r-- | libavcodec/4xm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 13cd66fb85..71954d8c18 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -235,7 +235,7 @@ static void idct(DCTELEM block[64]){ } } -static void init_vlcs(FourXContext *f){ +static av_cold void init_vlcs(FourXContext *f){ int i; for(i=0; i<8; i++){ @@ -792,7 +792,7 @@ static void common_init(AVCodecContext *avctx){ f->avctx= avctx; } -static int decode_init(AVCodecContext *avctx){ +static av_cold int decode_init(AVCodecContext *avctx){ FourXContext * const f = avctx->priv_data; if(avctx->extradata_size != 4 || !avctx->extradata) { @@ -811,7 +811,7 @@ static int decode_init(AVCodecContext *avctx){ } -static int decode_end(AVCodecContext *avctx){ +static av_cold int decode_end(AVCodecContext *avctx){ FourXContext * const f = avctx->priv_data; int i; |