# HG changeset patch # User michael # Date 1100471444 0 # Node ID f847832552e5831f70566707a37d4124b117e4e0 # Parent 113101b95d3bc4e544e3f2bcedfc3d45caca08e1 disable redundant image formats, otherwise we wont get any bugreports about -f image2 diff -r 113101b95d3b -r f847832552e5 allformats.c --- 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