diff imc.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 f2c6708aebf9
children a4104482ceef
line wrap: on
line diff
--- a/imc.c	Thu Mar 20 19:36:20 2008 +0000
+++ b/imc.c	Fri Mar 21 03:11:20 2008 +0000
@@ -90,7 +90,7 @@
 } IMCContext;
 
 
-static int imc_decode_init(AVCodecContext * avctx)
+static av_cold int imc_decode_init(AVCodecContext * avctx)
 {
     int i, j;
     IMCContext *q = avctx->priv_data;
@@ -796,7 +796,7 @@
 }
 
 
-static int imc_decode_close(AVCodecContext * avctx)
+static av_cold int imc_decode_close(AVCodecContext * avctx)
 {
     IMCContext *q = avctx->priv_data;