comparison swfenc.c @ 4206:c3102b189cb6 libavformat

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents 549a09cf23fe
children 77e0c7511d41
comparison
equal deleted inserted replaced
4205:41878938d030 4206:c3102b189cb6
501 url_fseek(pb, file_size, SEEK_SET); 501 url_fseek(pb, file_size, SEEK_SET);
502 } 502 }
503 return 0; 503 return 0;
504 } 504 }
505 505
506 #ifdef CONFIG_SWF_MUXER 506 #if CONFIG_SWF_MUXER
507 AVOutputFormat swf_muxer = { 507 AVOutputFormat swf_muxer = {
508 "swf", 508 "swf",
509 NULL_IF_CONFIG_SMALL("Flash format"), 509 NULL_IF_CONFIG_SMALL("Flash format"),
510 "application/x-shockwave-flash", 510 "application/x-shockwave-flash",
511 "swf", 511 "swf",
515 swf_write_header, 515 swf_write_header,
516 swf_write_packet, 516 swf_write_packet,
517 swf_write_trailer, 517 swf_write_trailer,
518 }; 518 };
519 #endif 519 #endif
520 #ifdef CONFIG_AVM2_MUXER 520 #if CONFIG_AVM2_MUXER
521 AVOutputFormat avm2_muxer = { 521 AVOutputFormat avm2_muxer = {
522 "avm2", 522 "avm2",
523 NULL_IF_CONFIG_SMALL("Flash 9 (AVM2) format"), 523 NULL_IF_CONFIG_SMALL("Flash 9 (AVM2) format"),
524 "application/x-shockwave-flash", 524 "application/x-shockwave-flash",
525 NULL, 525 NULL,