added still image support

Originally committed as revision 1439 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard
2003-01-11 05:02:14 +00:00
parent f746a04616
commit 87a0a6816f
6 changed files with 723 additions and 765 deletions

View File

@@ -45,6 +45,8 @@ void av_register_all(void)
mov_init();
jpeg_init();
dv_init();
av_register_output_format(&yuv4mpegpipe_oformat);
#ifdef CONFIG_VORBIS
ogg_init();
@@ -60,6 +62,14 @@ void av_register_all(void)
audio_init();
#endif
/* image formats */
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(&pgmyuv_image_format);
av_register_image_format(&yuv_image_format);
/* file protocols */
register_protocol(&file_protocol);
register_protocol(&pipe_protocol);