[FFmpeg-cvslog] r15516 - trunk/libavcodec/cyuv.c

reimar subversion
Thu Oct 2 17:52:12 CEST 2008


Author: reimar
Date: Thu Oct  2 17:52:12 2008
New Revision: 15516

Log:
Remove useless cyuv_decode_end function

Modified:
   trunk/libavcodec/cyuv.c

Modified: trunk/libavcodec/cyuv.c
==============================================================================
--- trunk/libavcodec/cyuv.c	(original)
+++ trunk/libavcodec/cyuv.c	Thu Oct  2 17:52:12 2008
@@ -163,13 +163,6 @@ static int cyuv_decode_frame(AVCodecCont
     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,




More information about the ffmpeg-cvslog mailing list