diff ulti.c @ 10132:a16f74116015 libavcodec

Remove useless ulti_decode_end function.
author reimar
date Sat, 05 Sep 2009 16:41:20 +0000
parents 5da84f0d0a55
children 136334ad62b3
line wrap: on
line diff
--- a/ulti.c	Sat Sep 05 11:22:36 2009 +0000
+++ b/ulti.c	Sat Sep 05 16:41:20 2009 +0000
@@ -394,13 +394,6 @@
     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 @@
     sizeof(UltimotionDecodeContext),
     ulti_decode_init,
     NULL,
-    ulti_decode_end,
+    NULL,
     ulti_decode_frame,
     CODEC_CAP_DR1,
     NULL,