aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2005-09-23 00:25:41 +0000
committerDiego Biurrun <diego@biurrun.de>2005-09-23 00:25:41 +0000
commita9e350952992f07f4b560385185f406fbbb752d7 (patch)
tree05d33876774bc092ffee92ecabd160ae3dc2205c /libavformat/allformats.c
parent288f1e6815fc52196fd1f443d305a4822bf371a2 (diff)
downloadffmpeg-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/allformats.c')
-rw-r--r--libavformat/allformats.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 5e8692167b..6603a43d4d 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -37,36 +37,36 @@ void av_register_all(void)
mpegps_init();
mpegts_init();
-#ifdef CONFIG_ENCODERS
+#ifdef CONFIG_MUXERS
crc_init();
img_init();
img2_init();
-#endif //CONFIG_ENCODERS
+#endif //CONFIG_MUXERS
raw_init();
mp3_init();
rm_init();
asf_init();
-#ifdef CONFIG_ENCODERS
+#ifdef CONFIG_MUXERS
avienc_init();
-#endif //CONFIG_ENCODERS
+#endif //CONFIG_MUXERS
avidec_init();
ff_wav_init();
ff_mmf_init();
swf_init();
au_init();
-#ifdef CONFIG_ENCODERS
+#ifdef CONFIG_MUXERS
gif_init();
-#endif //CONFIG_ENCODERS
+#endif //CONFIG_MUXERS
mov_init();
-#ifdef CONFIG_ENCODERS
+#ifdef CONFIG_MUXERS
movenc_init();
jpeg_init();
-#endif //CONFIG_ENCODERS
+#endif //CONFIG_MUXERS
ff_dv_init();
fourxm_init();
-#ifdef CONFIG_ENCODERS
+#ifdef CONFIG_MUXERS
flvenc_init();
-#endif //CONFIG_ENCODERS
+#endif //CONFIG_MUXERS
flvdec_init();
str_init();
roq_init();
@@ -111,7 +111,7 @@ void av_register_all(void)
nsvdec_init();
daud_init();
-#ifdef CONFIG_ENCODERS
+#ifdef CONFIG_MUXERS
/* image formats */
#if 0
av_register_image_format(&pnm_image_format);
@@ -128,7 +128,7 @@ void av_register_all(void)
#endif
av_register_image_format(&gif_image_format);
// av_register_image_format(&sgi_image_format); heap corruption, dont enable
-#endif //CONFIG_ENCODERS
+#endif //CONFIG_MUXERS
/* file protocols */
register_protocol(&file_protocol);