diff tiertexseqv.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 2134a0fc46f3
children 6eeb19edcee3
line wrap: on
line diff
--- a/tiertexseqv.c	Thu Mar 20 19:36:20 2008 +0000
+++ b/tiertexseqv.c	Fri Mar 21 03:11:20 2008 +0000
@@ -173,7 +173,7 @@
     }
 }
 
-static int seqvideo_decode_init(AVCodecContext *avctx)
+static av_cold int seqvideo_decode_init(AVCodecContext *avctx)
 {
     SeqVideoContext *seq = avctx->priv_data;
 
@@ -185,7 +185,7 @@
     return 0;
 }
 
-static int seqvideo_decode_frame(AVCodecContext *avctx,
+static av_cold int seqvideo_decode_frame(AVCodecContext *avctx,
                                  void *data, int *data_size,
                                  const uint8_t *buf, int buf_size)
 {