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/dc1394.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/dc1394.c')
-rw-r--r-- | libavformat/dc1394.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/dc1394.c b/libavformat/dc1394.c index a47bd3934f..f5d8b547a5 100644 --- a/libavformat/dc1394.c +++ b/libavformat/dc1394.c @@ -180,7 +180,7 @@ static int dc1394_close(AVFormatContext * context) return 0; } -static AVInputFormat dc1394_demuxer = { +AVInputFormat dc1394_demuxer = { .name = "dc1394", .long_name = "dc1394 A/V grab", .priv_data_size = sizeof(struct dc1394_data), @@ -189,9 +189,3 @@ static AVInputFormat dc1394_demuxer = { .read_close = dc1394_close, .flags = AVFMT_NOFILE }; - -int dc1394_init(void) -{ - av_register_input_format(&dc1394_demuxer); - return 0; -} |