Commit 830d2b2f authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14084 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c2df97e9
...@@ -185,7 +185,7 @@ static av_cold int seqvideo_decode_init(AVCodecContext *avctx) ...@@ -185,7 +185,7 @@ static av_cold int seqvideo_decode_init(AVCodecContext *avctx)
return 0; return 0;
} }
static av_cold int seqvideo_decode_frame(AVCodecContext *avctx, static int seqvideo_decode_frame(AVCodecContext *avctx,
void *data, int *data_size, void *data, int *data_size,
const uint8_t *buf, int buf_size) const uint8_t *buf, int buf_size)
{ {
...@@ -207,7 +207,7 @@ static av_cold int seqvideo_decode_frame(AVCodecContext *avctx, ...@@ -207,7 +207,7 @@ static av_cold int seqvideo_decode_frame(AVCodecContext *avctx,
return buf_size; return buf_size;
} }
static int seqvideo_decode_end(AVCodecContext *avctx) static av_cold int seqvideo_decode_end(AVCodecContext *avctx)
{ {
SeqVideoContext *seq = avctx->priv_data; SeqVideoContext *seq = avctx->priv_data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment