]> git.sesse.net Git - ffmpeg/blob - libavformat/allformats.c
fix alac decoder on little endian
[ffmpeg] / 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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_MUXERS
41     crc_init();
42     img_init();
43     img2_init();
44 #endif //CONFIG_MUXERS
45     raw_init();
46     mp3_init();
47     rm_init();
48     asf_init();
49 #ifdef CONFIG_MUXERS
50     avienc_init();
51 #endif //CONFIG_MUXERS
52     avidec_init();
53     ff_wav_init();
54     ff_mmf_init();
55     swf_init();
56     au_init();
57     ff_aiff_init();
58 #ifdef CONFIG_MUXERS
59     ff_adts_init();
60     gif_init();
61 #endif //CONFIG_MUXERS
62     mov_init();
63 #ifdef CONFIG_MUXERS
64     movenc_init();
65     jpeg_init();
66 #endif //CONFIG_MUXERS
67     ff_dv_init();
68     fourxm_init();
69 #ifdef CONFIG_MUXERS
70     flvenc_init();
71 #endif //CONFIG_MUXERS
72     flvdec_init();
73     str_init();
74     roq_init();
75     ipmovie_init();
76     wc3_init();
77     westwood_init();
78     film_init();
79     idcin_init();
80     flic_init();
81     vmd_init();
82     mm_init();
83     smacker_init();
84
85 #if defined(AMR_NB) || defined(AMR_NB_FIXED) || defined(AMR_WB)
86     amr_init();
87 #endif
88     yuv4mpeg_init();
89
90     ogg_init();
91 #ifdef CONFIG_LIBOGG
92     libogg_init();
93 #endif
94
95     ffm_init();
96 #if defined(CONFIG_VIDEO4LINUX2)
97     v4l2_init();
98 #endif
99 #if defined(CONFIG_VIDEO4LINUX) || defined(CONFIG_BKTR)
100     video_grab_init();
101 #endif
102 #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS)
103     audio_init();
104 #endif
105
106 #ifdef CONFIG_DV1394
107     dv1394_init();
108 #endif
109
110 #ifdef CONFIG_DC1394
111     dc1394_init();
112 #endif
113
114     nut_init();
115     matroska_init();
116     sol_init();
117     ea_init();
118     nsvdec_init();
119     daud_init();
120     voc_init();
121     tta_init();
122     avs_init();
123     nuv_init();
124
125 #ifdef CONFIG_MUXERS
126     /* image formats */
127 #if 0
128     av_register_image_format(&pnm_image_format);
129     av_register_image_format(&pbm_image_format);
130     av_register_image_format(&pgm_image_format);
131     av_register_image_format(&ppm_image_format);
132     av_register_image_format(&pam_image_format);
133     av_register_image_format(&pgmyuv_image_format);
134     av_register_image_format(&yuv_image_format);
135 #ifdef CONFIG_ZLIB
136     av_register_image_format(&png_image_format);
137 #endif
138     av_register_image_format(&jpeg_image_format);
139 #endif
140     av_register_image_format(&gif_image_format);
141 //    av_register_image_format(&sgi_image_format); heap corruption, dont enable
142 #endif //CONFIG_MUXERS
143
144 #ifdef CONFIG_PROTOCOLS
145     /* file protocols */
146     register_protocol(&file_protocol);
147     register_protocol(&pipe_protocol);
148 #ifdef CONFIG_NETWORK
149     rtsp_init();
150     rtp_init();
151     register_protocol(&udp_protocol);
152     register_protocol(&rtp_protocol);
153     register_protocol(&tcp_protocol);
154     register_protocol(&http_protocol);
155 #endif
156 #endif
157 }