comparison mpegts.c @ 858:66cc656ea404 libavformat

Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS in libavformat to allow building (de)coders and (de)muxers independently at some point + support for this option in configure.
author diego
date Fri, 23 Sep 2005 00:25:41 +0000
parents 62e66722e9bb
children da1d5db0ce5c
comparison
equal deleted inserted replaced
857:26aaf3eed638 858:66cc656ea404
1496 }; 1496 };
1497 1497
1498 int mpegts_init(void) 1498 int mpegts_init(void)
1499 { 1499 {
1500 av_register_input_format(&mpegts_demux); 1500 av_register_input_format(&mpegts_demux);
1501 #ifdef CONFIG_ENCODERS 1501 #ifdef CONFIG_MUXERS
1502 av_register_output_format(&mpegts_mux); 1502 av_register_output_format(&mpegts_mux);
1503 #endif 1503 #endif
1504 return 0; 1504 return 0;
1505 } 1505 }