diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-09-08 18:14:37 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-09-08 18:14:37 +0000 |
commit | 8022a8ebc25966bf6708c33a886eeac115c28bdb (patch) | |
tree | 2c8417fdcf08a876f0a2dbbb045a6887aa9b27aa | |
parent | c96a764c72c9916c5e993da7610d6da812d07b0a (diff) | |
download | ffmpeg-8022a8ebc25966bf6708c33a886eeac115c28bdb.tar.gz |
Add av_cold attribute to decode_init()
Originally committed as revision 15267 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra144.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index f86e0bf4ae..ed60a157ef 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -51,7 +51,7 @@ typedef struct { uint16_t adapt_cb[146+2]; } RA144Context; -static int ra144_decode_init(AVCodecContext * avctx) +static av_cold int ra144_decode_init(AVCodecContext * avctx) { RA144Context *ractx = avctx->priv_data; |