summaryrefslogtreecommitdiff
path: root/libavformat/mp3.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-19 23:25:04 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-19 23:25:04 +0000
commit9b64a036c0bcdbea33d6a253066312ef6c3304fe (patch)
treec2bd1fc066d5806f1a15d43bf469f56d2e2200e3 /libavformat/mp3.c
parent2562ccb38dad69d8bd2b48b8a6e5a622e8933490 (diff)
remove useless close funcs
Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mp3.c')
-rw-r--r--libavformat/mp3.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index 5a75a95fbe..c54f0ee4ab 100644
--- a/libavformat/mp3.c
+++ b/libavformat/mp3.c
@@ -549,11 +549,6 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
return ret;
}
-static int mp3_read_close(AVFormatContext *s)
-{
- return 0;
-}
-
#ifdef CONFIG_MUXERS
/* simple formats */
@@ -651,7 +646,6 @@ AVInputFormat mp3_demuxer = {
mp3_read_probe,
mp3_read_header,
mp3_read_packet,
- mp3_read_close,
.flags= AVFMT_GENERIC_INDEX,
.extensions = "mp2,mp3,m2a", /* XXX: use probe */
};