Mercurial > libavformat.hg
diff mmf.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 | acad29abfb70 |
children | da1d5db0ce5c |
line wrap: on
line diff
--- a/mmf.c Wed Sep 21 23:09:16 2005 +0000 +++ b/mmf.c Fri Sep 23 00:25:41 2005 +0000 @@ -24,7 +24,7 @@ offset_t data_size; } MMFContext; -#ifdef CONFIG_ENCODERS +#ifdef CONFIG_MUXERS static int mmf_rates[] = { 4000, 8000, 11025, 22050, 44100 }; static int mmf_rate_code(int rate) @@ -160,7 +160,7 @@ } return 0; } -#endif //CONFIG_ENCODERS +#endif //CONFIG_MUXERS static int mmf_probe(AVProbeData *p) { @@ -308,7 +308,7 @@ mmf_read_seek, }; -#ifdef CONFIG_ENCODERS +#ifdef CONFIG_MUXERS static AVOutputFormat mmf_oformat = { "mmf", "mmf format", @@ -321,14 +321,14 @@ mmf_write_packet, mmf_write_trailer, }; -#endif //CONFIG_ENCODERS +#endif //CONFIG_MUXERS int ff_mmf_init(void) { av_register_input_format(&mmf_iformat); -#ifdef CONFIG_ENCODERS +#ifdef CONFIG_MUXERS av_register_output_format(&mmf_oformat); -#endif //CONFIG_ENCODERS +#endif //CONFIG_MUXERS return 0; }