diff wav.c @ 3484:31a0f3b99ef7 libavformat

remove useless close funcs
author bcoudurier
date Thu, 19 Jun 2008 23:25:04 +0000
parents 7a0230981402
children f062deeedb8d
line wrap: on
line diff
--- a/wav.c	Thu Jun 19 22:58:13 2008 +0000
+++ b/wav.c	Thu Jun 19 23:25:04 2008 +0000
@@ -235,11 +235,6 @@
     return ret;
 }
 
-static int wav_read_close(AVFormatContext *s)
-{
-    return 0;
-}
-
 static int wav_read_seek(AVFormatContext *s,
                          int stream_index, int64_t timestamp, int flags)
 {
@@ -267,7 +262,7 @@
     wav_probe,
     wav_read_header,
     wav_read_packet,
-    wav_read_close,
+    NULL,
     wav_read_seek,
     .flags= AVFMT_GENERIC_INDEX,
     .codec_tag= (const AVCodecTag*[]){codec_wav_tags, 0},