Mercurial > libavformat.hg
changeset 3482:17c0ce4cc314 libavformat
remove useless close func
author | bcoudurier |
---|---|
date | Thu, 19 Jun 2008 22:57:00 +0000 |
parents | dcb099852975 |
children | e85a3d8478c1 |
files | wv.c |
diffstat | 1 files changed, 1 insertions(+), 6 deletions(-) [+] |
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, };