diff interplayvideo.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 1c99abd63afb
children a4104482ceef
line wrap: on
line diff
--- a/interplayvideo.c	Thu Mar 20 19:36:20 2008 +0000
+++ b/interplayvideo.c	Fri Mar 21 03:11:20 2008 +0000
@@ -835,7 +835,7 @@
     }
 }
 
-static int ipvideo_decode_init(AVCodecContext *avctx)
+static av_cold int ipvideo_decode_init(AVCodecContext *avctx)
 {
     IpvideoContext *s = avctx->priv_data;
 
@@ -919,7 +919,7 @@
     return buf_size;
 }
 
-static int ipvideo_decode_end(AVCodecContext *avctx)
+static av_cold int ipvideo_decode_end(AVCodecContext *avctx)
 {
     IpvideoContext *s = avctx->priv_data;