changeset 7979:5214daf6ce78 libavcodec

Remove useless cyuv_decode_end function
author reimar
date Thu, 02 Oct 2008 15:52:12 +0000
parents dc1a7a6ec58d
children 3b5964de95cd
files cyuv.c
diffstat 1 files changed, 1 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/cyuv.c	Thu Oct 02 15:52:04 2008 +0000
+++ b/cyuv.c	Thu Oct 02 15:52:12 2008 +0000
@@ -163,13 +163,6 @@
     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 @@
     sizeof(CyuvDecodeContext),
     cyuv_decode_init,
     NULL,
-    cyuv_decode_end,
+    NULL,
     cyuv_decode_frame,
     CODEC_CAP_DR1,
     NULL,