Commit 529dae12 authored by Reimar Döffinger's avatar Reimar Döffinger

Remove useless cyuv_decode_end function

Originally committed as revision 15516 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9b5ede5b
...@@ -163,13 +163,6 @@ static int cyuv_decode_frame(AVCodecContext *avctx, ...@@ -163,13 +163,6 @@ static int cyuv_decode_frame(AVCodecContext *avctx,
return buf_size; return buf_size;
} }
static av_cold int cyuv_decode_end(AVCodecContext *avctx)
{
/* CyuvDecodeContext *s = avctx->priv_data;*/
return 0;
}
AVCodec cyuv_decoder = { AVCodec cyuv_decoder = {
"cyuv", "cyuv",
CODEC_TYPE_VIDEO, CODEC_TYPE_VIDEO,
...@@ -177,7 +170,7 @@ AVCodec cyuv_decoder = { ...@@ -177,7 +170,7 @@ AVCodec cyuv_decoder = {
sizeof(CyuvDecodeContext), sizeof(CyuvDecodeContext),
cyuv_decode_init, cyuv_decode_init,
NULL, NULL,
cyuv_decode_end, NULL,
cyuv_decode_frame, cyuv_decode_frame,
CODEC_CAP_DR1, CODEC_CAP_DR1,
NULL, 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