Mercurial > libavcodec.hg
changeset 7206:3092ae791531 libavcodec
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
author | diego |
---|---|
date | Sun, 06 Jul 2008 09:58:23 +0000 |
parents | 68528efbc91f |
children | 655f242bb525 |
files | tiertexseqv.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;