diff options
author | Gregory Montoir <cyx@users.sourceforge.net> | 2008-07-06 09:58:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-06 09:58:23 +0000 |
commit | ce83d48b2204e52d4a0b8096ae2d14e85d9b1a5b (patch) | |
tree | 672ea555952bab4bc9142a3199b5c82765e7a413 | |
parent | ed76af08a4405e64aaa85fcc703684fd8f0a5aab (diff) | |
download | ffmpeg-ce83d48b2204e52d4a0b8096ae2d14e85d9b1a5b.tar.gz |
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
Originally committed as revision 14084 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/tiertexseqv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/tiertexseqv.c b/libavcodec/tiertexseqv.c index 723d946207..d91ed05894 100644 --- a/libavcodec/tiertexseqv.c +++ b/libavcodec/tiertexseqv.c @@ -185,7 +185,7 @@ static av_cold int seqvideo_decode_init(AVCodecContext *avctx) 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(AVCodecContext *avctx, return buf_size; } -static int seqvideo_decode_end(AVCodecContext *avctx) +static av_cold int seqvideo_decode_end(AVCodecContext *avctx) { SeqVideoContext *seq = avctx->priv_data; |