comparison allformats.c @ 1444:74cb68ad9dce libavformat

kill AVImageFormat
author bcoudurier
date Thu, 02 Nov 2006 23:22:23 +0000
parents 8fb4910bdcc0
children 56fe078ffc27
comparison
equal deleted inserted replaced
1443:404048ea11bc 1444:74cb68ad9dce
165 av_register_output_format(&image2_muxer); 165 av_register_output_format(&image2_muxer);
166 #endif 166 #endif
167 #ifdef CONFIG_IMAGE2PIPE_MUXER 167 #ifdef CONFIG_IMAGE2PIPE_MUXER
168 av_register_output_format(&image2pipe_muxer); 168 av_register_output_format(&image2pipe_muxer);
169 #endif 169 #endif
170 #ifdef CONFIG_IMAGE_DEMUXER
171 av_register_input_format(&image_demuxer);
172 #endif
173 #ifdef CONFIG_IMAGEPIPE_DEMUXER
174 av_register_input_format(&imagepipe_demuxer);
175 #endif
176 #ifdef CONFIG_IMAGE_MUXER
177 av_register_output_format(&image_muxer);
178 #endif
179 #ifdef CONFIG_IMAGEPIPE_MUXER
180 av_register_output_format(&imagepipe_muxer);
181 #endif
182 #ifdef CONFIG_IPMOVIE_DEMUXER 170 #ifdef CONFIG_IPMOVIE_DEMUXER
183 av_register_input_format(&ipmovie_demuxer); 171 av_register_input_format(&ipmovie_demuxer);
184 #endif 172 #endif
185 #ifdef CONFIG_MATROSKA_DEMUXER 173 #ifdef CONFIG_MATROSKA_DEMUXER
186 av_register_input_format(&matroska_demuxer); 174 av_register_input_format(&matroska_demuxer);
480 av_register_input_format(&yuv4mpegpipe_demuxer); 468 av_register_input_format(&yuv4mpegpipe_demuxer);
481 #endif 469 #endif
482 #ifdef CONFIG_TIERTEXSEQ_DEMUXER 470 #ifdef CONFIG_TIERTEXSEQ_DEMUXER
483 av_register_input_format(&tiertexseq_demuxer); 471 av_register_input_format(&tiertexseq_demuxer);
484 #endif 472 #endif
485
486 /* image formats */
487 #if 0
488 av_register_image_format(&pnm_image_format);
489 av_register_image_format(&pbm_image_format);
490 av_register_image_format(&pgm_image_format);
491 av_register_image_format(&ppm_image_format);
492 av_register_image_format(&pam_image_format);
493 av_register_image_format(&pgmyuv_image_format);
494 av_register_image_format(&yuv_image_format);
495 #ifdef CONFIG_ZLIB
496 av_register_image_format(&png_image_format);
497 #endif
498 av_register_image_format(&jpeg_image_format);
499 #endif
500 av_register_image_format(&gif_image_format);
501 // av_register_image_format(&sgi_image_format); heap corruption, dont enable
502 473
503 #ifdef CONFIG_PROTOCOLS 474 #ifdef CONFIG_PROTOCOLS
504 /* file protocols */ 475 /* file protocols */
505 register_protocol(&file_protocol); 476 register_protocol(&file_protocol);
506 register_protocol(&pipe_protocol); 477 register_protocol(&pipe_protocol);