]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/allformats.c
removing --disable-risky patch by (Josh Varner <jlvarner gmail com>)
[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     static int inited = 0;
30     
31     if (inited != 0)
32         return;
33     inited = 1;
34
35     avcodec_init();
36     avcodec_register_all();
37
38     mpegps_init();
39     mpegts_init();
40 #ifdef CONFIG_ENCODERS
41     crc_init();
42     img_init();
43     img2_init();
44 #endif //CONFIG_ENCODERS
45     raw_init();
46     mp3_init();
47     rm_init();
48     asf_init();
49 #ifdef CONFIG_ENCODERS
50     avienc_init();
51 #endif //CONFIG_ENCODERS
52     avidec_init();
53     ff_wav_init();
54     swf_init();
55     au_init();
56 #ifdef CONFIG_ENCODERS
57     gif_init();
58 #endif //CONFIG_ENCODERS
59     mov_init();
60 #ifdef CONFIG_ENCODERS
61     movenc_init();
62     jpeg_init();
63 #endif //CONFIG_ENCODERS
64     ff_dv_init();
65     fourxm_init();
66 #ifdef CONFIG_ENCODERS
67     flvenc_init();
68 #endif //CONFIG_ENCODERS
69     flvdec_init();
70     str_init();
71     roq_init();
72     ipmovie_init();
73     wc3_init();
74     westwood_init();
75     film_init();
76     idcin_init();
77     flic_init();
78     vmd_init();
79
80 #if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
81     amr_init();
82 #endif
83     yuv4mpeg_init();
84     
85 #ifdef CONFIG_VORBIS
86     ogg_init();
87 #endif
88
89     ffm_init();
90 #ifdef CONFIG_VIDEO4LINUX
91     video_grab_init();
92 #endif
93 #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
94     audio_init();
95 #endif
96
97 #ifdef CONFIG_DV1394
98     dv1394_init();
99 #endif
100
101 #ifdef CONFIG_DC1394
102     dc1394_init();
103 #endif
104
105     nut_init();
106     matroska_init();
107     sol_init();
108     ea_init();
109     nsvdec_init();
110
111 #ifdef CONFIG_ENCODERS
112     /* image formats */
113 #if 0
114     av_register_image_format(&pnm_image_format);
115     av_register_image_format(&pbm_image_format);
116     av_register_image_format(&pgm_image_format);
117     av_register_image_format(&ppm_image_format);
118     av_register_image_format(&pam_image_format);
119     av_register_image_format(&pgmyuv_image_format);
120     av_register_image_format(&yuv_image_format);
121 #ifdef CONFIG_ZLIB
122     av_register_image_format(&png_image_format);
123 #endif
124     av_register_image_format(&jpeg_image_format);
125 #endif
126     av_register_image_format(&gif_image_format);  
127 //    av_register_image_format(&sgi_image_format); heap corruption, dont enable
128 #endif //CONFIG_ENCODERS
129
130     /* file protocols */
131     register_protocol(&file_protocol);
132     register_protocol(&pipe_protocol);
133 #ifdef CONFIG_NETWORK
134     rtsp_init();
135     rtp_init();
136     register_protocol(&udp_protocol);
137     register_protocol(&rtp_protocol);
138     register_protocol(&tcp_protocol);
139     register_protocol(&http_protocol);
140 #endif
141 }