summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cyuv.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavcodec/cyuv.c b/libavcodec/cyuv.c
index d64f6df275..2cfe7b32a9 100644
--- a/libavcodec/cyuv.c
+++ b/libavcodec/cyuv.c
@@ -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,