[FFmpeg-cvslog] r13833 - trunk/libavformat/wv.c

bcoudurier subversion
Fri Jun 20 00:57:00 CEST 2008


Author: bcoudurier
Date: Fri Jun 20 00:57:00 2008
New Revision: 13833

Log:
remove useless close func

Modified:
   trunk/libavformat/wv.c

Modified: trunk/libavformat/wv.c
==============================================================================
--- trunk/libavformat/wv.c	(original)
+++ trunk/libavformat/wv.c	Fri Jun 20 00:57:00 2008
@@ -187,11 +187,6 @@ static int wv_read_packet(AVFormatContex
     return 0;
 }
 
-static int wv_read_close(AVFormatContext *s)
-{
-    return 0;
-}
-
 static int wv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
 {
     AVStream *st = s->streams[stream_index];
@@ -231,6 +226,6 @@ AVInputFormat wv_demuxer = {
     wv_probe,
     wv_read_header,
     wv_read_packet,
-    wv_read_close,
+    NULL,
     wv_read_seek,
 };




More information about the ffmpeg-cvslog mailing list