diff sol.c @ 3484:31a0f3b99ef7 libavformat

remove useless close funcs
author bcoudurier
date Thu, 19 Jun 2008 23:25:04 +0000
parents 7a0230981402
children 4fd67f05bad9
line wrap: on
line diff
--- a/sol.c	Thu Jun 19 22:58:13 2008 +0000
+++ b/sol.c	Thu Jun 19 23:25:04 2008 +0000
@@ -140,11 +140,6 @@
     return 0;
 }
 
-static int sol_read_close(AVFormatContext *s)
-{
-    return 0;
-}
-
 AVInputFormat sol_demuxer = {
     "sol",
     NULL_IF_CONFIG_SMALL("Sierra SOL format"),
@@ -152,6 +147,6 @@
     sol_probe,
     sol_read_header,
     sol_read_packet,
-    sol_read_close,
+    NULL,
     pcm_read_seek,
 };