[FFmpeg-cvslog] r14084 - trunk/libavcodec/tiertexseqv.c

diego subversion
Sun Jul 6 11:58:23 CEST 2008


Author: diego
Date: Sun Jul  6 11:58:23 2008
New Revision: 14084

Log:
Remove av_cold attribute on decode_frame and add it to decode_end
to match other codecs.
patch by Gregory Montoir, cyx users sourceforge net


Modified:
   trunk/libavcodec/tiertexseqv.c

Modified: trunk/libavcodec/tiertexseqv.c
==============================================================================
--- trunk/libavcodec/tiertexseqv.c	(original)
+++ trunk/libavcodec/tiertexseqv.c	Sun Jul  6 11:58:23 2008
@@ -185,7 +185,7 @@ static av_cold int seqvideo_decode_init(
     return 0;
 }
 
-static av_cold int seqvideo_decode_frame(AVCodecContext *avctx,
+static int seqvideo_decode_frame(AVCodecContext *avctx,
                                  void *data, int *data_size,
                                  const uint8_t *buf, int buf_size)
 {
@@ -207,7 +207,7 @@ static av_cold int seqvideo_decode_frame
     return buf_size;
 }
 
-static int seqvideo_decode_end(AVCodecContext *avctx)
+static av_cold int seqvideo_decode_end(AVCodecContext *avctx)
 {
     SeqVideoContext *seq = avctx->priv_data;
 




More information about the ffmpeg-cvslog mailing list