Commit c16e5064 authored by bcoudurier's avatar bcoudurier

remove useless close func

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13833 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ba76932
......@@ -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,
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment