summaryrefslogtreecommitdiff
path: root/libavformat/ipmovie.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-10 21:14:37 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-10 21:14:37 +0000
commitff70e60176056daf646109b8e42654a3036fa02b (patch)
tree42e32d1e4bff334964cf93766ff2da6ee9a8f1d3 /libavformat/ipmovie.c
parent4cac0d5589ab1a076e977425925015f2c8e591a8 (diff)
allow individual selection of muxers and demuxers
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ipmovie.c')
-rw-r--r--libavformat/ipmovie.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavformat/ipmovie.c b/libavformat/ipmovie.c
index 430a7c6334..7c8efa88b4 100644
--- a/libavformat/ipmovie.c
+++ b/libavformat/ipmovie.c
@@ -612,7 +612,7 @@ static int ipmovie_read_close(AVFormatContext *s)
return 0;
}
-static AVInputFormat ipmovie_demuxer = {
+AVInputFormat ipmovie_demuxer = {
"ipmovie",
"Interplay MVE format",
sizeof(IPMVEContext),
@@ -621,10 +621,3 @@ static AVInputFormat ipmovie_demuxer = {
ipmovie_read_packet,
ipmovie_read_close,
};
-
-int ipmovie_init(void)
-{
- av_register_input_format(&ipmovie_demuxer);
- return 0;
-}
-