changeset 589:f847832552e5 libavformat

disable redundant image formats, otherwise we wont get any bugreports about -f image2
author michael
date Sun, 14 Nov 2004 22:30:44 +0000
parents 113101b95d3b
children a6945dfb69ab
files allformats.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/allformats.c	Sat Nov 13 17:35:09 2004 +0000
+++ b/allformats.c	Sun Nov 14 22:30:44 2004 +0000
@@ -113,17 +113,21 @@
 
 #ifdef CONFIG_ENCODERS
     /* image formats */
+#if 0
     av_register_image_format(&pnm_image_format);
     av_register_image_format(&pbm_image_format);
     av_register_image_format(&pgm_image_format);
     av_register_image_format(&ppm_image_format);
     av_register_image_format(&pam_image_format);
     av_register_image_format(&pgmyuv_image_format);
+#endif
     av_register_image_format(&yuv_image_format);
+#if 0
 #ifdef CONFIG_ZLIB
     av_register_image_format(&png_image_format);
 #endif
     av_register_image_format(&jpeg_image_format);
+#endif
     av_register_image_format(&gif_image_format);
     av_register_image_format(&sgi_image_format);
 #endif //CONFIG_ENCODERS