# HG changeset patch # User diego # Date 1215338303 0 # Node ID 3092ae791531fd1aac3c0da761f9dc7f6ea4eed5 # Parent 68528efbc91f4b6efd36dd0f6aaf8f2d0c130a7c 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 diff -r 68528efbc91f -r 3092ae791531 tiertexseqv.c --- a/tiertexseqv.c Sun Jul 06 08:16:50 2008 +0000 +++ b/tiertexseqv.c Sun Jul 06 09:58:23 2008 +0000 @@ -185,7 +185,7 @@ 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 @@ return buf_size; } -static int seqvideo_decode_end(AVCodecContext *avctx) +static av_cold int seqvideo_decode_end(AVCodecContext *avctx) { SeqVideoContext *seq = avctx->priv_data;