Mercurial > libavcodec.hg
diff sonic.c @ 6517:48759bfbd073 libavcodec
Apply 'cold' attribute to init/uninit functions in libavcodec
author | zuxy |
---|---|
date | Fri, 21 Mar 2008 03:11:20 +0000 |
parents | cffdb71f0930 |
children | f282270c589f |
line wrap: on
line diff
--- a/sonic.c Thu Mar 20 19:36:20 2008 +0000 +++ b/sonic.c Fri Mar 21 03:11:20 2008 +0000 @@ -503,7 +503,7 @@ return -1; } -static int sonic_encode_init(AVCodecContext *avctx) +static av_cold int sonic_encode_init(AVCodecContext *avctx) { SonicContext *s = avctx->priv_data; PutBitContext pb; @@ -608,7 +608,7 @@ return 0; } -static int sonic_encode_close(AVCodecContext *avctx) +static av_cold int sonic_encode_close(AVCodecContext *avctx) { SonicContext *s = avctx->priv_data; int i; @@ -751,7 +751,7 @@ #endif //CONFIG_ENCODERS #ifdef CONFIG_DECODERS -static int sonic_decode_init(AVCodecContext *avctx) +static av_cold int sonic_decode_init(AVCodecContext *avctx) { SonicContext *s = avctx->priv_data; GetBitContext gb; @@ -831,7 +831,7 @@ return 0; } -static int sonic_decode_close(AVCodecContext *avctx) +static av_cold int sonic_decode_close(AVCodecContext *avctx) { SonicContext *s = avctx->priv_data; int i;