summaryrefslogtreecommitdiff
path: root/libavformat/wv.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-19 22:57:00 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-19 22:57:00 +0000
commit6a862b49476395f87636c14329301b51c332316c (patch)
tree474b8b180da89707abb66b02a13509acc33a2663 /libavformat/wv.c
parent9f5d3b13cf3be4d97515fac0542819060db69411 (diff)
remove useless close func
Originally committed as revision 13833 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wv.c')
-rw-r--r--libavformat/wv.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/wv.c b/libavformat/wv.c
index 953955412d..eddd32148a 100644
--- a/libavformat/wv.c
+++ b/libavformat/wv.c
@@ -187,11 +187,6 @@ static int wv_read_packet(AVFormatContext *s,
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,
};