comparison mpegts.c @ 277:a313e1080322 libavformat

disable encoders where appropriate (patch courtesy of BERO <bero -at- geocities.co.jp>)
author melanson
date Tue, 14 Oct 2003 04:15:53 +0000
parents 0543d27721c1
children dcc3f5510818
comparison
equal deleted inserted replaced
276:3dd3646e0164 277:a313e1080322
1045 }; 1045 };
1046 1046
1047 int mpegts_init(void) 1047 int mpegts_init(void)
1048 { 1048 {
1049 av_register_input_format(&mpegts_demux); 1049 av_register_input_format(&mpegts_demux);
1050 #ifdef CONFIG_ENCODERS
1050 av_register_output_format(&mpegts_mux); 1051 av_register_output_format(&mpegts_mux);
1052 #endif
1051 return 0; 1053 return 0;
1052 } 1054 }