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/daud.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/daud.c')
-rw-r--r-- | libavformat/daud.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libavformat/daud.c b/libavformat/daud.c index 7799a1f047..05f417dec5 100644 --- a/libavformat/daud.c +++ b/libavformat/daud.c @@ -43,7 +43,7 @@ static int daud_packet(AVFormatContext *s, AVPacket *pkt) { return ret; } -static AVInputFormat daud_demuxer = { +AVInputFormat daud_demuxer = { "daud", "D-Cinema audio format", 0, @@ -54,10 +54,3 @@ static AVInputFormat daud_demuxer = { NULL, .extensions = "302", }; - -int daud_init(void) -{ - av_register_input_format(&daud_demuxer); - return 0; -} - |