changeset 3431:3fe66e65fdff libavformat

Remove useless img_read_close().
author ramiro
date Fri, 06 Jun 2008 17:02:06 +0000
parents 08987e520651
children 32bb3a8d8762
files img2.c
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/img2.c	Fri Jun 06 17:00:28 2008 +0000
+++ b/img2.c	Fri Jun 06 17:02:06 2008 +0000
@@ -303,11 +303,6 @@
     }
 }
 
-static int img_read_close(AVFormatContext *s1)
-{
-    return 0;
-}
-
 #ifdef CONFIG_MUXERS
 /******************************************************/
 /* image output */
@@ -384,7 +379,7 @@
     image_probe,
     img_read_header,
     img_read_packet,
-    img_read_close,
+    NULL,
     NULL,
     NULL,
     AVFMT_NOFILE,
@@ -398,7 +393,6 @@
     NULL, /* no probe */
     img_read_header,
     img_read_packet,
-    img_read_close,
 };
 #endif