Commit 7ad5efb8 authored by reimar's avatar reimar

Remove useless cyuv_decode_end function

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15516 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2183bc48
......@@ -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,
......
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