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/raw.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/raw.c')
-rw-r--r-- | libavformat/raw.c | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index d69a5d7b95..752dbf0931 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -813,70 +813,3 @@ AVOutputFormat null_muxer = { .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE, }; #endif //CONFIG_MUXERS - -#ifndef CONFIG_MUXERS -#define av_register_output_format(format) -#endif -#ifndef CONFIG_DEMUXERS -#define av_register_input_format(format) -#endif - -int raw_init(void) -{ - - av_register_input_format(&shorten_demuxer); - av_register_input_format(&flac_demuxer); - av_register_output_format(&flac_muxer); - - av_register_input_format(&ac3_demuxer); - av_register_output_format(&ac3_muxer); - - av_register_input_format(&aac_demuxer); - - av_register_input_format(&dts_demuxer); - - av_register_input_format(&h261_demuxer); - av_register_output_format(&h261_muxer); - - av_register_input_format(&h263_demuxer); - av_register_output_format(&h263_muxer); - - av_register_input_format(&m4v_demuxer); - av_register_output_format(&m4v_muxer); - - av_register_input_format(&h264_demuxer); - av_register_output_format(&h264_muxer); - - av_register_input_format(&mpegvideo_demuxer); - av_register_output_format(&mpeg1video_muxer); - - av_register_output_format(&mpeg2video_muxer); - - av_register_input_format(&mjpeg_demuxer); - av_register_output_format(&mjpeg_muxer); - - av_register_input_format(&ingenient_demuxer); - - av_register_input_format(&pcm_s16le_demuxer); - av_register_output_format(&pcm_s16le_muxer); - av_register_input_format(&pcm_s16be_demuxer); - av_register_output_format(&pcm_s16be_muxer); - av_register_input_format(&pcm_u16le_demuxer); - av_register_output_format(&pcm_u16le_muxer); - av_register_input_format(&pcm_u16be_demuxer); - av_register_output_format(&pcm_u16be_muxer); - av_register_input_format(&pcm_s8_demuxer); - av_register_output_format(&pcm_s8_muxer); - av_register_input_format(&pcm_u8_demuxer); - av_register_output_format(&pcm_u8_muxer); - av_register_input_format(&pcm_mulaw_demuxer); - av_register_output_format(&pcm_mulaw_muxer); - av_register_input_format(&pcm_alaw_demuxer); - av_register_output_format(&pcm_alaw_muxer); - - av_register_input_format(&rawvideo_demuxer); - av_register_output_format(&rawvideo_muxer); - - av_register_output_format(&null_muxer); - return 0; -} |