]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/allformats.c
added still image support
[frescor/ffmpeg.git] / libavformat / allformats.c
1 /*
2  * Register all the formats and protocols
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 #include "avformat.h"
20
21 /* If you do not call this function, then you can select exactly which
22    formats you want to support */
23
24 /**
25  * Initialize libavcodec and register all the codecs and formats.
26  */
27 void av_register_all(void)
28 {
29     avcodec_init();
30     avcodec_register_all();
31
32     mpegps_init();
33     mpegts_init();
34     crc_init();
35     img_init();
36     raw_init();
37     rm_init();
38     asf_init();
39     avienc_init();
40     avidec_init();
41     wav_init();
42     swf_init();
43     au_init();
44     gif_init();
45     mov_init();
46     jpeg_init();
47     dv_init();
48
49     av_register_output_format(&yuv4mpegpipe_oformat);
50     
51 #ifdef CONFIG_VORBIS
52     ogg_init();
53 #endif
54
55 #ifndef CONFIG_WIN32
56     ffm_init();
57 #endif
58 #ifdef CONFIG_VIDEO4LINUX
59     video_grab_init();
60 #endif
61 #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
62     audio_init();
63 #endif
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
73     /* file protocols */
74     register_protocol(&file_protocol);
75     register_protocol(&pipe_protocol);
76 #ifdef CONFIG_NETWORK
77     rtsp_init();
78     rtp_init();
79     register_protocol(&udp_protocol);
80     register_protocol(&rtp_protocol);
81     register_protocol(&tcp_protocol);
82     register_protocol(&http_protocol);
83 #endif
84 }