diff options
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index e13b018f0f..fe252a7c19 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1907,7 +1907,7 @@ static int mov_read_close(AVFormatContext *s) return 0; } -static AVInputFormat mov_demuxer = { +AVInputFormat mov_demuxer = { "mov,mp4,m4a,3gp,3g2,mj2", "QuickTime/MPEG4/Motion JPEG 2000 format", sizeof(MOVContext), @@ -1917,9 +1917,3 @@ static AVInputFormat mov_demuxer = { mov_read_close, mov_read_seek, }; - -int mov_init(void) -{ - av_register_input_format(&mov_demuxer); - return 0; -} |