[FFmpeg-soc] [soc]: r2706 - aac/aac.c

superdump subversion at mplayerhq.hu
Sun Jul 6 13:59:51 CEST 2008


Author: superdump
Date: Sun Jul  6 13:59:50 2008
New Revision: 2706

Log:
Make init and close functions av_cold


Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Sun Jul  6 13:59:50 2008
@@ -762,7 +762,7 @@ static int AudioSpecificConfig(AACContex
     return 0;
 }
 
-static int aac_decode_init(AVCodecContext * avccontext) {
+static av_cold int aac_decode_init(AVCodecContext * avccontext) {
     static const struct {
         const uint16_t     *a_code;
         const unsigned int s;
@@ -2158,7 +2158,7 @@ static int aac_decode_frame(AVCodecConte
     return buf_size;
 }
 
-static int aac_decode_close(AVCodecContext * avccontext) {
+static av_cold int aac_decode_close(AVCodecContext * avccontext) {
     AACContext * ac = avccontext->priv_data;
     int i, j;
 



More information about the FFmpeg-soc mailing list