comparison mpegenc.c @ 2177:fa17c3c6e546 libavformat

remove now useless ifdef
author bcoudurier
date Thu, 21 Jun 2007 09:49:20 +0000
parents 50322a49fa2b
children 6e503a584e8f
comparison
equal deleted inserted replaced
2176:50322a49fa2b 2177:fa17c3c6e546
74 double vcd_padding_bitrate; //FIXME floats 74 double vcd_padding_bitrate; //FIXME floats
75 int64_t vcd_padding_bytes_written; 75 int64_t vcd_padding_bytes_written;
76 76
77 } MpegMuxContext; 77 } MpegMuxContext;
78 78
79 #ifdef CONFIG_MUXERS
80 AVOutputFormat mpeg1system_muxer; 79 AVOutputFormat mpeg1system_muxer;
81 AVOutputFormat mpeg1vcd_muxer; 80 AVOutputFormat mpeg1vcd_muxer;
82 AVOutputFormat mpeg2vob_muxer; 81 AVOutputFormat mpeg2vob_muxer;
83 AVOutputFormat mpeg2svcd_muxer; 82 AVOutputFormat mpeg2svcd_muxer;
84 AVOutputFormat mpeg2dvd_muxer; 83 AVOutputFormat mpeg2dvd_muxer;
1217 assert(av_fifo_size(&stream->fifo) == 0); 1216 assert(av_fifo_size(&stream->fifo) == 0);
1218 av_fifo_free(&stream->fifo); 1217 av_fifo_free(&stream->fifo);
1219 } 1218 }
1220 return 0; 1219 return 0;
1221 } 1220 }
1222 #endif //CONFIG_MUXERS
1223 1221
1224 #ifdef CONFIG_MPEG1SYSTEM_MUXER 1222 #ifdef CONFIG_MPEG1SYSTEM_MUXER
1225 AVOutputFormat mpeg1system_muxer = { 1223 AVOutputFormat mpeg1system_muxer = {
1226 "mpeg", 1224 "mpeg",
1227 "MPEG1 System format", 1225 "MPEG1 System format",