diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-19 23:25:04 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-19 23:25:04 +0000 |
commit | 9b64a036c0bcdbea33d6a253066312ef6c3304fe (patch) | |
tree | c2bd1fc066d5806f1a15d43bf469f56d2e2200e3 /libavformat/wav.c | |
parent | 2562ccb38dad69d8bd2b48b8a6e5a622e8933490 (diff) | |
download | ffmpeg-9b64a036c0bcdbea33d6a253066312ef6c3304fe.tar.gz |
remove useless close funcs
Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r-- | libavformat/wav.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c index 44c245d13b..945ee39b32 100644 --- a/libavformat/wav.c +++ b/libavformat/wav.c @@ -235,11 +235,6 @@ static int wav_read_packet(AVFormatContext *s, 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 @@ AVInputFormat wav_demuxer = { 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}, |