Remove useless cyuv_decode_end function

Originally committed as revision 15516 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2008-10-02 15:52:12 +00:00
parent 9b5ede5b64
commit 529dae12f7
1 changed files with 1 additions and 8 deletions

View File

@ -163,13 +163,6 @@ static int cyuv_decode_frame(AVCodecContext *avctx,
return buf_size;
}
static av_cold int cyuv_decode_end(AVCodecContext *avctx)
{
/* CyuvDecodeContext *s = avctx->priv_data;*/
return 0;
}
AVCodec cyuv_decoder = {
"cyuv",
CODEC_TYPE_VIDEO,
@ -177,7 +170,7 @@ AVCodec cyuv_decoder = {
sizeof(CyuvDecodeContext),
cyuv_decode_init,
NULL,
cyuv_decode_end,
NULL,
cyuv_decode_frame,
CODEC_CAP_DR1,
NULL,