diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-10 21:14:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-10 21:14:37 +0000 |
commit | ff70e60176056daf646109b8e42654a3036fa02b (patch) | |
tree | 42e32d1e4bff334964cf93766ff2da6ee9a8f1d3 /libavformat/4xm.c | |
parent | 4cac0d5589ab1a076e977425925015f2c8e591a8 (diff) | |
download | ffmpeg-ff70e60176056daf646109b8e42654a3036fa02b.tar.gz |
allow individual selection of muxers and demuxers
Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/4xm.c')
-rw-r--r-- | libavformat/4xm.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/4xm.c b/libavformat/4xm.c index 15a845316a..5058e1192e 100644 --- a/libavformat/4xm.c +++ b/libavformat/4xm.c @@ -318,7 +318,7 @@ static int fourxm_read_close(AVFormatContext *s) return 0; } -static AVInputFormat fourxm_demuxer = { +AVInputFormat fourxm_demuxer = { "4xm", "4X Technologies format", sizeof(FourxmDemuxContext), @@ -327,9 +327,3 @@ static AVInputFormat fourxm_demuxer = { fourxm_read_packet, fourxm_read_close, }; - -int fourxm_init(void) -{ - av_register_input_format(&fourxm_demuxer); - return 0; -} |