diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-09-23 00:25:41 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-09-23 00:25:41 +0000 |
commit | a9e350952992f07f4b560385185f406fbbb752d7 (patch) | |
tree | 05d33876774bc092ffee92ecabd160ae3dc2205c /libavformat/ogg2.c | |
parent | 288f1e6815fc52196fd1f443d305a4822bf371a2 (diff) | |
download | ffmpeg-a9e350952992f07f4b560385185f406fbbb752d7.tar.gz |
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.
Originally committed as revision 4611 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ogg2.c')
-rw-r--r-- | libavformat/ogg2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/ogg2.c b/libavformat/ogg2.c index b32e27d3ab..e6da34e816 100644 --- a/libavformat/ogg2.c +++ b/libavformat/ogg2.c @@ -44,7 +44,7 @@ static ogg_codec_t *ogg_codecs[] = { NULL }; -#if 0 // CONFIG_ENCODERS +#if 0 // CONFIG_MUXERS static int ogg_write_header (AVFormatContext * avfcontext) { @@ -74,7 +74,7 @@ static AVOutputFormat ogg_oformat = { ogg_write_packet, ogg_write_trailer, }; -#endif //CONFIG_ENCODERS +#endif //CONFIG_MUXERS //FIXME We could avoid some structure duplication static int @@ -638,7 +638,7 @@ static AVInputFormat ogg_iformat = { int ogg_init (void) { -#if 0 // CONFIG_ENCODERS +#if 0 // CONFIG_MUXERS av_register_output_format (&ogg_oformat); #endif av_register_input_format (&ogg_iformat); |