Apply 'cold' attribute to init/uninit functions in libavcodec

Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Zuxy Meng
2008-03-21 03:11:20 +00:00
parent 77ab59eb7f
commit 98a6fff98c
145 changed files with 296 additions and 288 deletions

View File

@ -35,7 +35,7 @@
//#define DEBUG
//#define PRINT_FRAME_TIME
int ff_h263_decode_init(AVCodecContext *avctx)
av_cold int ff_h263_decode_init(AVCodecContext *avctx)
{
MpegEncContext *s = avctx->priv_data;
@ -119,7 +119,7 @@ int ff_h263_decode_init(AVCodecContext *avctx)
return 0;
}
int ff_h263_decode_end(AVCodecContext *avctx)
av_cold int ff_h263_decode_end(AVCodecContext *avctx)
{
MpegEncContext *s = avctx->priv_data;