projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f5d3b1
)
remove useless close func
author
Baptiste Coudurier
<baptiste.coudurier@gmail.com>
Thu, 19 Jun 2008 22:57:00 +0000
(22:57 +0000)
committer
Baptiste Coudurier
<baptiste.coudurier@gmail.com>
Thu, 19 Jun 2008 22:57:00 +0000
(22:57 +0000)
Originally committed as revision 13833 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/wv.c
patch
|
blob
|
history
diff --git
a/libavformat/wv.c
b/libavformat/wv.c
index
9539554
..
eddd321
100644
(file)
--- a/
libavformat/wv.c
+++ b/
libavformat/wv.c
@@
-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,
};