summaryrefslogtreecommitdiff
path: root/libavformat/vocdec.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-06-23 12:47:02 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-06-23 12:47:02 +0000
commitfd2e1d88a6083a3cdce13e03701b95b800b7d239 (patch)
tree05681763df0d3e79d5adee30c074146cd061a5d4 /libavformat/vocdec.c
parenteb67342fdc066f08c3722894f81e5293cf6f1dab (diff)
remove useless empty function
Originally committed as revision 9398 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/vocdec.c')
-rw-r--r--libavformat/vocdec.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c
index 02a038a9ec..8ed4fcbdf4 100644
--- a/libavformat/vocdec.c
+++ b/libavformat/vocdec.c
@@ -134,11 +134,6 @@ static int voc_read_packet(AVFormatContext *s, AVPacket *pkt)
return voc_get_packet(s, pkt, s->streams[0], 0);
}
-static int voc_read_close(AVFormatContext *s)
-{
- return 0;
-}
-
AVInputFormat voc_demuxer = {
"voc",
"Creative Voice File format",
@@ -146,6 +141,5 @@ AVInputFormat voc_demuxer = {
voc_probe,
voc_read_header,
voc_read_packet,
- voc_read_close,
.codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0},
};