Mercurial > libavformat.hg
diff wv.c @ 3482:17c0ce4cc314 libavformat
remove useless close func
| author | bcoudurier |
|---|---|
| date | Thu, 19 Jun 2008 22:57:00 +0000 |
| parents | 7a0230981402 |
| children | 1d3d17de20ba |
line wrap: on
line diff
--- a/wv.c Thu Jun 19 22:50:17 2008 +0000 +++ b/wv.c Thu Jun 19 22:57:00 2008 +0000 @@ -187,11 +187,6 @@ 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 @@ wv_probe, wv_read_header, wv_read_packet, - wv_read_close, + NULL, wv_read_seek, };
