Mercurial > libavformat.hg
annotate allformats.c @ 201:85def00971c3 libavformat
mov, 3gp, mp4 muxer by (Thomas Raivio <tjraivio at cc dot hut dot fi>)
author | michaelni |
---|---|
date | Tue, 26 Aug 2003 20:23:13 +0000 |
parents | 2438e76dde67 |
children | 7414bbf64011 |
rev | line source |
---|---|
0 | 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(); | |
40 | 38 #ifdef CONFIG_RISKY |
0 | 39 asf_init(); |
40 | 40 #endif |
0 | 41 avienc_init(); |
42 avidec_init(); | |
43 wav_init(); | |
44 swf_init(); | |
45 au_init(); | |
46 gif_init(); | |
47 mov_init(); | |
201
85def00971c3
mov, 3gp, mp4 muxer by (Thomas Raivio <tjraivio at cc dot hut dot fi>)
michaelni
parents:
184
diff
changeset
|
48 movenc_init(); |
0 | 49 jpeg_init(); |
50 dv_init(); | |
138 | 51 fourxm_init(); |
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
146
diff
changeset
|
52 flvenc_init(); |
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
146
diff
changeset
|
53 flvdec_init(); |
20 | 54 |
146 | 55 #ifdef AMR_NB |
56 amr_init(); | |
57 #endif | |
184
2438e76dde67
yuv4mpeg pipe reader for libavformat patch by (D Richard Felker III <dalias at aerifal dot cx>)
michaelni
parents:
164
diff
changeset
|
58 yuv4mpeg_init(); |
0 | 59 |
60 #ifdef CONFIG_VORBIS | |
61 ogg_init(); | |
62 #endif | |
63 | |
64 #ifndef CONFIG_WIN32 | |
65 ffm_init(); | |
66 #endif | |
67 #ifdef CONFIG_VIDEO4LINUX | |
68 video_grab_init(); | |
69 #endif | |
70 #if defined(CONFIG_AUDIO_OSS) || defined(CONFIG_AUDIO_BEOS) | |
71 audio_init(); | |
72 #endif | |
73 | |
27
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
20
diff
changeset
|
74 #ifdef CONFIG_DV1394 |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
20
diff
changeset
|
75 dv1394_init(); |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
20
diff
changeset
|
76 #endif |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
20
diff
changeset
|
77 |
20 | 78 /* image formats */ |
79 av_register_image_format(&pnm_image_format); | |
80 av_register_image_format(&pbm_image_format); | |
81 av_register_image_format(&pgm_image_format); | |
82 av_register_image_format(&ppm_image_format); | |
109
c82a6062485e
added new netpbm pam format support (needed for alpha plane support)
bellard
parents:
71
diff
changeset
|
83 av_register_image_format(&pam_image_format); |
20 | 84 av_register_image_format(&pgmyuv_image_format); |
85 av_register_image_format(&yuv_image_format); | |
71 | 86 #ifdef CONFIG_ZLIB |
44 | 87 av_register_image_format(&png_image_format); |
71 | 88 #endif |
47
45308962220f
added jpeg image encoder and decoder (new YUV handling routines and mjpeg codec fixes are necessary to go further)
bellard
parents:
44
diff
changeset
|
89 av_register_image_format(&jpeg_image_format); |
52 | 90 av_register_image_format(&gif_image_format); |
20 | 91 |
0 | 92 /* file protocols */ |
93 register_protocol(&file_protocol); | |
94 register_protocol(&pipe_protocol); | |
95 #ifdef CONFIG_NETWORK | |
96 rtsp_init(); | |
97 rtp_init(); | |
98 register_protocol(&udp_protocol); | |
99 register_protocol(&rtp_protocol); | |
100 register_protocol(&tcp_protocol); | |
101 register_protocol(&http_protocol); | |
102 #endif | |
103 } |