[FFmpeg-soc] [soc]: r2297 - wmapro/wma3dec.c

faust3 subversion at mplayerhq.hu
Sun Jun 1 11:56:03 CEST 2008


Author: faust3
Date: Sun Jun  1 11:56:03 2008
New Revision: 2297

Log:
added av_cold to the init and end functions

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	(original)
+++ wmapro/wma3dec.c	Sun Jun  1 11:56:03 2008
@@ -99,7 +99,7 @@ static int get_samples_per_frame(int sam
     return samples_per_frame;
 }
 
-static int wma3_decode_init(AVCodecContext *avctx)
+static av_cold int wma3_decode_init(AVCodecContext *avctx)
 {
     WMA3DecodeContext *s = avctx->priv_data;
     uint8_t *edata_ptr = avctx->extradata;
@@ -226,7 +226,7 @@ static int wma3_decode_packet(AVCodecCon
     return avctx->block_align;
 }
 
-static int wma3_decode_end(AVCodecContext *avctx)
+static av_cold int wma3_decode_end(AVCodecContext *avctx)
 {
     return 0;
 }



More information about the FFmpeg-soc mailing list