diff apedec.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 258f569d30ca
children 5b3acf9fd50a
line wrap: on
line diff
--- a/apedec.c	Thu Mar 20 19:36:20 2008 +0000
+++ b/apedec.c	Fri Mar 21 03:11:20 2008 +0000
@@ -185,7 +185,7 @@
     return res;
 }
 
-static int ape_decode_init(AVCodecContext * avctx)
+static av_cold int ape_decode_init(AVCodecContext * avctx)
 {
     APEContext *s = avctx->priv_data;
     int i;
@@ -224,7 +224,7 @@
     return 0;
 }
 
-static int ape_decode_close(AVCodecContext * avctx)
+static av_cold int ape_decode_close(AVCodecContext * avctx)
 {
     APEContext *s = avctx->priv_data;
     int i;