diff options
Diffstat (limited to 'libavformat/ipmovie.c')
-rw-r--r-- | libavformat/ipmovie.c | 9 |
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; -} - |