changeset 10132:a16f74116015 libavcodec

Remove useless ulti_decode_end function.
author reimar
date Sat, 05 Sep 2009 16:41:20 +0000
parents 4f974b8d8851
children 45cb3db81201
files ulti.c
diffstat 1 files changed, 1 insertions(+), 8 deletions(-) [+]
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,