diff ipmovie.c @ 3484:31a0f3b99ef7 libavformat

remove useless close funcs
author bcoudurier
date Thu, 19 Jun 2008 23:25:04 +0000
parents 7a0230981402
children 1d3d17de20ba
line wrap: on
line diff
--- a/ipmovie.c	Thu Jun 19 22:58:13 2008 +0000
+++ b/ipmovie.c	Thu Jun 19 23:25:04 2008 +0000
@@ -607,13 +607,6 @@
     return ret;
 }
 
-static int ipmovie_read_close(AVFormatContext *s)
-{
-//    IPMVEContext *ipmovie = s->priv_data;
-
-    return 0;
-}
-
 AVInputFormat ipmovie_demuxer = {
     "ipmovie",
     NULL_IF_CONFIG_SMALL("Interplay MVE format"),
@@ -621,5 +614,4 @@
     ipmovie_probe,
     ipmovie_read_header,
     ipmovie_read_packet,
-    ipmovie_read_close,
 };