comparison allformats.c @ 20:3d52de18ecc3 libavformat

added still image support
author bellard
date Sat, 11 Jan 2003 05:02:14 +0000
parents 05318cf2e886
children fcdea3df94fe
comparison
equal deleted inserted replaced
19:81e87c8de3dc 20:3d52de18ecc3
43 au_init(); 43 au_init();
44 gif_init(); 44 gif_init();
45 mov_init(); 45 mov_init();
46 jpeg_init(); 46 jpeg_init();
47 dv_init(); 47 dv_init();
48
49 av_register_output_format(&yuv4mpegpipe_oformat);
48 50
49 #ifdef CONFIG_VORBIS 51 #ifdef CONFIG_VORBIS
50 ogg_init(); 52 ogg_init();
51 #endif 53 #endif
52 54
58 #endif 60 #endif
59 #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS) 61 #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
60 audio_init(); 62 audio_init();
61 #endif 63 #endif
62 64
65 /* image formats */
66 av_register_image_format(&pnm_image_format);
67 av_register_image_format(&pbm_image_format);
68 av_register_image_format(&pgm_image_format);
69 av_register_image_format(&ppm_image_format);
70 av_register_image_format(&pgmyuv_image_format);
71 av_register_image_format(&yuv_image_format);
72
63 /* file protocols */ 73 /* file protocols */
64 register_protocol(&file_protocol); 74 register_protocol(&file_protocol);
65 register_protocol(&pipe_protocol); 75 register_protocol(&pipe_protocol);
66 #ifdef CONFIG_NETWORK 76 #ifdef CONFIG_NETWORK
67 rtsp_init(); 77 rtsp_init();