mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user