# HG changeset patch # User bcoudurier # Date 1213916220 0 # Node ID 17c0ce4cc314c7f8a0eb68601588deda80b4b7fb # Parent dcb099852975955f161673bad9a538979119be82 remove useless close func diff -r dcb099852975 -r 17c0ce4cc314 wv.c --- 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, };