OSDN Git Service

Remove useless ulti_decode_end function.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sat, 5 Sep 2009 16:41:20 +0000 (16:41 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sat, 5 Sep 2009 16:41:20 +0000 (16:41 +0000)
Originally committed as revision 19770 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ulti.c

index ac21f41..f58874a 100644 (file)
@@ -394,13 +394,6 @@ static int ulti_decode_frame(AVCodecContext *avctx,
     return buf_size;
 }
 
-static av_cold int ulti_decode_end(AVCodecContext *avctx)
-{
-/*    UltimotionDecodeContext *s = avctx->priv_data;*/
-
-    return 0;
-}
-
 AVCodec ulti_decoder = {
     "ultimotion",
     CODEC_TYPE_VIDEO,
@@ -408,7 +401,7 @@ AVCodec ulti_decoder = {
     sizeof(UltimotionDecodeContext),
     ulti_decode_init,
     NULL,
-    ulti_decode_end,
+    NULL,
     ulti_decode_frame,
     CODEC_CAP_DR1,
     NULL,