Mercurial > libavcodec.hg
annotate allcodecs.c @ 3866:4d5f73f10198 libavcodec
Original Commit: r66 | ods15 | 2006-09-25 18:42:13 +0300 (Mon, 25 Sep 2006) | 2 lines
some different values for higher accuracy
author | ods15 |
---|---|
date | Mon, 02 Oct 2006 06:07:59 +0000 |
parents | 5b987af96509 |
children | ac5df84bc14c |
rev | line source |
---|---|
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
1 /* |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
2 * Utils for libavcodec |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
3 * Copyright (c) 2002 Fabrice Bellard. |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
4 * |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
5 * This library is free software; you can redistribute it and/or |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
6 * modify it under the terms of the GNU Lesser General Public |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
7 * License as published by the Free Software Foundation; either |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
8 * version 2 of the License, or (at your option) any later version. |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
9 * |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
10 * This library is distributed in the hope that it will be useful, |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
13 * Lesser General Public License for more details. |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
14 * |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
15 * You should have received a copy of the GNU Lesser General Public |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
16 * License along with this library; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
3030
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
18 */ |
1106 | 19 |
20 /** | |
21 * @file allcodecs.c | |
22 * Utils for libavcodec. | |
23 */ | |
24 | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
25 #include "avcodec.h" |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
26 |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
27 /* If you do not call this function, then you can select exactly which |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
28 formats you want to support */ |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
29 |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
30 /** |
2967 | 31 * simple call to register all the codecs. |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
32 */ |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
33 void avcodec_register_all(void) |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
34 { |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
35 static int inited = 0; |
2967 | 36 |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
37 if (inited != 0) |
2979 | 38 return; |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
39 inited = 1; |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
40 |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
41 /* encoders */ |
2638 | 42 #ifdef CONFIG_AC3_ENCODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
43 register_avcodec(&ac3_encoder); |
2638 | 44 #endif //CONFIG_AC3_ENCODER |
45 #ifdef CONFIG_MP2_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
46 register_avcodec(&mp2_encoder); |
2638 | 47 #endif //CONFIG_MP2_ENCODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
48 #ifdef CONFIG_MP3LAME |
2638 | 49 #ifdef CONFIG_MP3LAME_ENCODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
50 register_avcodec(&mp3lame_encoder); |
2638 | 51 #endif //CONFIG_MP3LAME_ENCODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
52 #endif |
2520 | 53 #ifdef CONFIG_LIBVORBIS |
2638 | 54 #ifdef CONFIG_OGGVORBIS_ENCODER |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
573
diff
changeset
|
55 register_avcodec(&oggvorbis_encoder); |
2638 | 56 #endif //CONFIG_OGGVORBIS_ENCODER |
2697
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2665
diff
changeset
|
57 #if (defined CONFIG_OGGVORBIS_DECODER && !defined CONFIG_VORBIS_DECODER) |
883 | 58 register_avcodec(&oggvorbis_decoder); |
2638 | 59 #endif //CONFIG_OGGVORBIS_DECODER |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
573
diff
changeset
|
60 #endif |
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
61 #ifdef CONFIG_FAAC |
2638 | 62 #ifdef CONFIG_FAAC_ENCODER |
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
63 register_avcodec(&faac_encoder); |
2638 | 64 #endif //CONFIG_FAAC_ENCODER |
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
65 #endif |
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
3329
diff
changeset
|
66 #ifdef CONFIG_FLAC_ENCODER |
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
3329
diff
changeset
|
67 register_avcodec(&flac_encoder); |
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
3329
diff
changeset
|
68 #endif |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
69 #ifdef CONFIG_XVID |
2638 | 70 #ifdef CONFIG_XVID_ENCODER |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
71 register_avcodec(&xvid_encoder); |
2638 | 72 #endif //CONFIG_XVID_ENCODER |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
73 #endif |
2638 | 74 #ifdef CONFIG_MPEG1VIDEO_ENCODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
75 register_avcodec(&mpeg1video_encoder); |
2638 | 76 #endif //CONFIG_MPEG1VIDEO_ENCODER |
77 #ifdef CONFIG_H264_ENCODER | |
1168 | 78 // register_avcodec(&h264_encoder); |
2638 | 79 #endif //CONFIG_H264_ENCODER |
80 #ifdef CONFIG_MPEG2VIDEO_ENCODER | |
1421 | 81 register_avcodec(&mpeg2video_encoder); |
2638 | 82 #endif //CONFIG_MPEG2VIDEO_ENCODER |
83 #ifdef CONFIG_H261_ENCODER | |
2327
5e5cf598a48b
H.261 encoder by (Maarten Daniels <maarten dot daniels at luc dot ac dot be>)
michael
parents:
2325
diff
changeset
|
84 register_avcodec(&h261_encoder); |
2638 | 85 #endif //CONFIG_H261_ENCODER |
86 #ifdef CONFIG_H263_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
87 register_avcodec(&h263_encoder); |
2638 | 88 #endif //CONFIG_H263_ENCODER |
89 #ifdef CONFIG_H263P_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
90 register_avcodec(&h263p_encoder); |
2638 | 91 #endif //CONFIG_H263P_ENCODER |
92 #ifdef CONFIG_FLV_ENCODER | |
1357 | 93 register_avcodec(&flv_encoder); |
2638 | 94 #endif //CONFIG_FLV_ENCODER |
95 #ifdef CONFIG_RV10_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
96 register_avcodec(&rv10_encoder); |
2638 | 97 #endif //CONFIG_RV10_ENCODER |
98 #ifdef CONFIG_RV20_ENCODER | |
2380 | 99 register_avcodec(&rv20_encoder); |
2638 | 100 #endif //CONFIG_RV20_ENCODER |
101 #ifdef CONFIG_MPEG4_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
102 register_avcodec(&mpeg4_encoder); |
2638 | 103 #endif //CONFIG_MPEG4_ENCODER |
104 #ifdef CONFIG_MSMPEG4V1_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
105 register_avcodec(&msmpeg4v1_encoder); |
2638 | 106 #endif //CONFIG_MSMPEG4V1_ENCODER |
107 #ifdef CONFIG_MSMPEG4V2_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
108 register_avcodec(&msmpeg4v2_encoder); |
2638 | 109 #endif //CONFIG_MSMPEG4V2_ENCODER |
110 #ifdef CONFIG_MSMPEG4V3_ENCODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
111 register_avcodec(&msmpeg4v3_encoder); |
2638 | 112 #endif //CONFIG_MSMPEG4V3_ENCODER |
113 #ifdef CONFIG_WMV1_ENCODER | |
500 | 114 register_avcodec(&wmv1_encoder); |
2638 | 115 #endif //CONFIG_WMV1_ENCODER |
116 #ifdef CONFIG_WMV2_ENCODER | |
936 | 117 register_avcodec(&wmv2_encoder); |
2638 | 118 #endif //CONFIG_WMV2_ENCODER |
119 #ifdef CONFIG_SVQ1_ENCODER | |
2005 | 120 register_avcodec(&svq1_encoder); |
2638 | 121 #endif //CONFIG_SVQ1_ENCODER |
122 #ifdef CONFIG_MJPEG_ENCODER | |
1042 | 123 register_avcodec(&mjpeg_encoder); |
2638 | 124 #endif //CONFIG_MJPEG_ENCODER |
125 #ifdef CONFIG_LJPEG_ENCODER | |
1315
6696d3bf4ff2
lossless mjpeg encoding (planar yuv & RGB) and somerelated bugfixes
michaelni
parents:
1304
diff
changeset
|
126 register_avcodec(&ljpeg_encoder); |
2638 | 127 #endif //CONFIG_LJPEG_ENCODER |
2970
583b6ac45c07
unfinished jpeg-ls codec (feel free to finish it ...)
michael
parents:
2967
diff
changeset
|
128 #ifdef CONFIG_JPEGLS_ENCODER |
583b6ac45c07
unfinished jpeg-ls codec (feel free to finish it ...)
michael
parents:
2967
diff
changeset
|
129 register_avcodec(&jpegls_encoder); |
583b6ac45c07
unfinished jpeg-ls codec (feel free to finish it ...)
michael
parents:
2967
diff
changeset
|
130 #endif //CONFIG_JPEGLS_ENCODER |
2343 | 131 #ifdef CONFIG_ZLIB |
2638 | 132 #ifdef CONFIG_PNG_ENCODER |
2342 | 133 register_avcodec(&png_encoder); |
2638 | 134 #endif //CONFIG_PNG_ENCODER |
2343 | 135 #endif |
2638 | 136 #ifdef CONFIG_PPM_ENCODER |
2344 | 137 register_avcodec(&ppm_encoder); |
2638 | 138 #endif //CONFIG_PPM_ENCODER |
139 #ifdef CONFIG_PGM_ENCODER | |
2344 | 140 register_avcodec(&pgm_encoder); |
2638 | 141 #endif //CONFIG_PGM_ENCODER |
142 #ifdef CONFIG_PGMYUV_ENCODER | |
2344 | 143 register_avcodec(&pgmyuv_encoder); |
2638 | 144 #endif //CONFIG_PGMYUV_ENCODER |
145 #ifdef CONFIG_PBM_ENCODER | |
2344 | 146 register_avcodec(&pbm_encoder); |
2638 | 147 #endif //CONFIG_PBM_ENCODER |
148 #ifdef CONFIG_PAM_ENCODER | |
2344 | 149 register_avcodec(&pam_encoder); |
2638 | 150 #endif //CONFIG_PAM_ENCODER |
151 #ifdef CONFIG_HUFFYUV_ENCODER | |
866 | 152 register_avcodec(&huffyuv_encoder); |
2638 | 153 #endif //CONFIG_HUFFYUV_ENCODER |
154 #ifdef CONFIG_FFVHUFF_ENCODER | |
2373 | 155 register_avcodec(&ffvhuff_encoder); |
2638 | 156 #endif //CONFIG_FFVHUFF_ENCODER |
157 #ifdef CONFIG_ASV1_ENCODER | |
1273 | 158 register_avcodec(&asv1_encoder); |
2638 | 159 #endif //CONFIG_ASV1_ENCODER |
160 #ifdef CONFIG_ASV2_ENCODER | |
1434 | 161 register_avcodec(&asv2_encoder); |
2638 | 162 #endif //CONFIG_ASV2_ENCODER |
163 #ifdef CONFIG_FFV1_ENCODER | |
1300
e18667d1e94d
FFV1 codec (our very simple lossless intra only codec, compresses much better then huffyuv)
michaelni
parents:
1297
diff
changeset
|
164 register_avcodec(&ffv1_encoder); |
2638 | 165 #endif //CONFIG_FFV1_ENCODER |
166 #ifdef CONFIG_SNOW_ENCODER | |
2138 | 167 register_avcodec(&snow_encoder); |
2638 | 168 #endif //CONFIG_SNOW_ENCODER |
169 #ifdef CONFIG_ZLIB_ENCODER | |
1741 | 170 register_avcodec(&zlib_encoder); |
2638 | 171 #endif //CONFIG_ZLIB_ENCODER |
172 #ifdef CONFIG_DVVIDEO_ENCODER | |
1887
85fe2f4633ec
* DV decoding/encoding now supports MultiThreading for up to 324 CPUs ;-)
romansh
parents:
1812
diff
changeset
|
173 register_avcodec(&dvvideo_encoder); |
2638 | 174 #endif //CONFIG_DVVIDEO_ENCODER |
175 #ifdef CONFIG_SONIC_ENCODER | |
2182
113732773bda
new opensource lossy/lossless audio codec based on speech compression techniques (actually based on bonk)
alex
parents:
2170
diff
changeset
|
176 register_avcodec(&sonic_encoder); |
2638 | 177 #endif //CONFIG_SONIC_ENCODER |
178 #ifdef CONFIG_SONIC_LS_ENCODER | |
2182
113732773bda
new opensource lossy/lossless audio codec based on speech compression techniques (actually based on bonk)
alex
parents:
2170
diff
changeset
|
179 register_avcodec(&sonic_ls_encoder); |
2638 | 180 #endif //CONFIG_SONIC_LS_ENCODER |
2556
e5af3bc1d038
H.264 encoding with x264 by (M«©ns Rullg«©rd <mru inprovide com>)
michael
parents:
2542
diff
changeset
|
181 #ifdef CONFIG_X264 |
2638 | 182 #ifdef CONFIG_X264_ENCODER |
2556
e5af3bc1d038
H.264 encoding with x264 by (M«©ns Rullg«©rd <mru inprovide com>)
michael
parents:
2542
diff
changeset
|
183 register_avcodec(&x264_encoder); |
2638 | 184 #endif //CONFIG_X264_ENCODER |
2556
e5af3bc1d038
H.264 encoding with x264 by (M«©ns Rullg«©rd <mru inprovide com>)
michael
parents:
2542
diff
changeset
|
185 #endif |
2729 | 186 #ifdef CONFIG_LIBGSM |
187 register_avcodec(&libgsm_encoder); | |
188 #endif //CONFIG_LIBGSM | |
2638 | 189 #ifdef CONFIG_RAWVIDEO_ENCODER |
1231
b88dfc4bbf8c
* introducing new public interface in imgconvert.c
romansh
parents:
1224
diff
changeset
|
190 register_avcodec(&rawvideo_encoder); |
2638 | 191 #endif //CONFIG_RAWVIDEO_ENCODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
192 |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
193 /* decoders */ |
2638 | 194 #ifdef CONFIG_H263_DECODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
195 register_avcodec(&h263_decoder); |
2638 | 196 #endif //CONFIG_H263_DECODER |
197 #ifdef CONFIG_H261_DECODER | |
2044
b6f2add2511e
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
2005
diff
changeset
|
198 register_avcodec(&h261_decoder); |
2638 | 199 #endif //CONFIG_H261_DECODER |
200 #ifdef CONFIG_MPEG4_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
201 register_avcodec(&mpeg4_decoder); |
2638 | 202 #endif //CONFIG_MPEG4_DECODER |
203 #ifdef CONFIG_MSMPEG4V1_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
204 register_avcodec(&msmpeg4v1_decoder); |
2638 | 205 #endif //CONFIG_MSMPEG4V1_DECODER |
206 #ifdef CONFIG_MSMPEG4V2_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
207 register_avcodec(&msmpeg4v2_decoder); |
2638 | 208 #endif //CONFIG_MSMPEG4V2_DECODER |
209 #ifdef CONFIG_MSMPEG4V3_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
210 register_avcodec(&msmpeg4v3_decoder); |
2638 | 211 #endif //CONFIG_MSMPEG4V3_DECODER |
212 #ifdef CONFIG_WMV1_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
213 register_avcodec(&wmv1_decoder); |
2638 | 214 #endif //CONFIG_WMV1_DECODER |
215 #ifdef CONFIG_WMV2_DECODER | |
936 | 216 register_avcodec(&wmv2_decoder); |
2638 | 217 #endif //CONFIG_WMV2_DECODER |
3359 | 218 #ifdef CONFIG_VC1_DECODER |
219 register_avcodec(&vc1_decoder); | |
220 #endif //CONFIG_VC1_DECODER | |
2638 | 221 #ifdef CONFIG_WMV3_DECODER |
2446
7dc7f1a9f5d6
preliminary vc9 bitstream decoder, committing to make syncing and team-work on it easier
alex
parents:
2432
diff
changeset
|
222 register_avcodec(&wmv3_decoder); |
2638 | 223 #endif //CONFIG_WMV3_DECODER |
224 #ifdef CONFIG_H263I_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
225 register_avcodec(&h263i_decoder); |
2638 | 226 #endif //CONFIG_H263I_DECODER |
227 #ifdef CONFIG_FLV_DECODER | |
1357 | 228 register_avcodec(&flv_decoder); |
2638 | 229 #endif //CONFIG_FLV_DECODER |
230 #ifdef CONFIG_RV10_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
231 register_avcodec(&rv10_decoder); |
2638 | 232 #endif //CONFIG_RV10_DECODER |
233 #ifdef CONFIG_RV20_DECODER | |
1639 | 234 register_avcodec(&rv20_decoder); |
2638 | 235 #endif //CONFIG_RV20_DECODER |
236 #ifdef CONFIG_SVQ1_DECODER | |
521 | 237 register_avcodec(&svq1_decoder); |
2638 | 238 #endif //CONFIG_SVQ1_DECODER |
239 #ifdef CONFIG_SVQ3_DECODER | |
1234 | 240 register_avcodec(&svq3_decoder); |
2638 | 241 #endif //CONFIG_SVQ3_DECODER |
242 #ifdef CONFIG_WMAV1_DECODER | |
1042 | 243 register_avcodec(&wmav1_decoder); |
2638 | 244 #endif //CONFIG_WMAV1_DECODER |
245 #ifdef CONFIG_WMAV2_DECODER | |
1042 | 246 register_avcodec(&wmav2_decoder); |
2638 | 247 #endif //CONFIG_WMAV2_DECODER |
248 #ifdef CONFIG_INDEO2_DECODER | |
2618
fc91ca5b9066
Indeo 2 decoder by (Kostya <> kostya.shishkov gmail com)
michael
parents:
2588
diff
changeset
|
249 register_avcodec(&indeo2_decoder); |
2638 | 250 #endif //CONFIG_INDEO2_DECODER |
251 #ifdef CONFIG_INDEO3_DECODER | |
1190 | 252 register_avcodec(&indeo3_decoder); |
2638 | 253 #endif //CONFIG_INDEO3_DECODER |
254 #ifdef CONFIG_TSCC_DECODER | |
2234
dff53892ff8a
IBM Ultimotion video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2182
diff
changeset
|
255 register_avcodec(&tscc_decoder); |
2638 | 256 #endif //CONFIG_TSCC_DECODER |
3030 | 257 #ifdef CONFIG_CSCD_DECODER |
258 register_avcodec(&cscd_decoder); | |
259 #endif //CONFIG_CSCD_DECODER | |
3224
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3209
diff
changeset
|
260 #ifdef CONFIG_NUV_DECODER |
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3209
diff
changeset
|
261 register_avcodec(&nuv_decoder); |
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3209
diff
changeset
|
262 #endif //CONFIG_NUV_DECODER |
2638 | 263 #ifdef CONFIG_ULTI_DECODER |
2234
dff53892ff8a
IBM Ultimotion video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2182
diff
changeset
|
264 register_avcodec(&ulti_decoder); |
2638 | 265 #endif //CONFIG_ULTI_DECODER |
266 #ifdef CONFIG_QDRAW_DECODER | |
2275
c443a6af19a7
support for Sierra Online audio files and Apple QuickDraw codec,
melanson
parents:
2234
diff
changeset
|
267 register_avcodec(&qdraw_decoder); |
2638 | 268 #endif //CONFIG_QDRAW_DECODER |
269 #ifdef CONFIG_XL_DECODER | |
2325
1180a04d64c5
Miro VideoXL (VIXL) decoder, courtesy of Konstantin Shishkov
melanson
parents:
2319
diff
changeset
|
270 register_avcodec(&xl_decoder); |
2638 | 271 #endif //CONFIG_XL_DECODER |
272 #ifdef CONFIG_QPEG_DECODER | |
2355
69fcdad5f7d5
native QPEG video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2348
diff
changeset
|
273 register_avcodec(&qpeg_decoder); |
2638 | 274 #endif //CONFIG_QPEG_DECODER |
275 #ifdef CONFIG_LOCO_DECODER | |
2530 | 276 register_avcodec(&loco_decoder); |
2638 | 277 #endif //CONFIG_LOCO_DECODER |
3253
226ffbb6fd02
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
kostya
parents:
3238
diff
changeset
|
278 #ifdef CONFIG_KMVC_DECODER |
226ffbb6fd02
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
kostya
parents:
3238
diff
changeset
|
279 register_avcodec(&kmvc_decoder); |
226ffbb6fd02
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
kostya
parents:
3238
diff
changeset
|
280 #endif //CONFIG_KMVC_DECODER |
2638 | 281 #ifdef CONFIG_WNV1_DECODER |
2577
7d9997a69158
Winnov WNV1 video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2556
diff
changeset
|
282 register_avcodec(&wnv1_decoder); |
2638 | 283 #endif //CONFIG_WNV1_DECODER |
284 #ifdef CONFIG_AASC_DECODER | |
2588
b6b618986f80
Autodesk Animator Studio Codec (AASC) video decoder, courtesy of
melanson
parents:
2585
diff
changeset
|
285 register_avcodec(&aasc_decoder); |
2638 | 286 #endif //CONFIG_AASC_DECODER |
2700
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
287 #ifdef CONFIG_FRAPS_DECODER |
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
288 register_avcodec(&fraps_decoder); |
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
289 #endif //CONFIG_FRAPS_DECODER |
1245 | 290 #ifdef CONFIG_FAAD |
2638 | 291 #ifdef CONFIG_AAC_DECODER |
1245 | 292 register_avcodec(&aac_decoder); |
2638 | 293 #endif //CONFIG_AAC_DECODER |
294 #ifdef CONFIG_MPEG4AAC_DECODER | |
1245 | 295 register_avcodec(&mpeg4aac_decoder); |
2638 | 296 #endif //CONFIG_MPEG4AAC_DECODER |
1245 | 297 #endif |
2638 | 298 #ifdef CONFIG_MPEG1VIDEO_DECODER |
1423 | 299 register_avcodec(&mpeg1video_decoder); |
2638 | 300 #endif //CONFIG_MPEG1VIDEO_DECODER |
301 #ifdef CONFIG_MPEG2VIDEO_DECODER | |
1423 | 302 register_avcodec(&mpeg2video_decoder); |
2638 | 303 #endif //CONFIG_MPEG2VIDEO_DECODER |
304 #ifdef CONFIG_MPEGVIDEO_DECODER | |
1615 | 305 register_avcodec(&mpegvideo_decoder); |
2638 | 306 #endif //CONFIG_MPEGVIDEO_DECODER |
1381 | 307 #ifdef HAVE_XVMC |
2638 | 308 #ifdef CONFIG_MPEG_XVMC_DECODER |
1381 | 309 register_avcodec(&mpeg_xvmc_decoder); |
2638 | 310 #endif //CONFIG_MPEG_XVMC_DECODER |
1381 | 311 #endif |
2638 | 312 #ifdef CONFIG_DVVIDEO_DECODER |
724 | 313 register_avcodec(&dvvideo_decoder); |
2638 | 314 #endif //CONFIG_DVVIDEO_DECODER |
315 #ifdef CONFIG_MJPEG_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
316 register_avcodec(&mjpeg_decoder); |
2638 | 317 #endif //CONFIG_MJPEG_DECODER |
318 #ifdef CONFIG_MJPEGB_DECODER | |
881 | 319 register_avcodec(&mjpegb_decoder); |
2638 | 320 #endif //CONFIG_MJPEGB_DECODER |
321 #ifdef CONFIG_SP5X_DECODER | |
1519 | 322 register_avcodec(&sp5x_decoder); |
2638 | 323 #endif //CONFIG_SP5X_DECODER |
2343 | 324 #ifdef CONFIG_ZLIB |
2638 | 325 #ifdef CONFIG_PNG_DECODER |
2342 | 326 register_avcodec(&png_decoder); |
2638 | 327 #endif //CONFIG_PNG_DECODER |
2343 | 328 #endif |
2638 | 329 #ifdef CONFIG_MP2_DECODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
330 register_avcodec(&mp2_decoder); |
2638 | 331 #endif //CONFIG_MP2_DECODER |
332 #ifdef CONFIG_MP3_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
333 register_avcodec(&mp3_decoder); |
2638 | 334 #endif //CONFIG_MP3_DECODER |
335 #ifdef CONFIG_MP3ADU_DECODER | |
2432 | 336 register_avcodec(&mp3adu_decoder); |
2638 | 337 #endif //CONFIG_MP3ADU_DECODER |
338 #ifdef CONFIG_MP3ON4_DECODER | |
2507
0334caf0f0ce
Multichannel mp3 in mp4 support ISO/IEC 14496-3:2001/FPDAM 3 (MP3onMP4)
rtognimp
parents:
2446
diff
changeset
|
339 register_avcodec(&mp3on4_decoder); |
2638 | 340 #endif //CONFIG_MP3ON4_DECODER |
341 #ifdef CONFIG_MACE3_DECODER | |
827
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
783
diff
changeset
|
342 register_avcodec(&mace3_decoder); |
2638 | 343 #endif //CONFIG_MACE3_DECODER |
344 #ifdef CONFIG_MACE6_DECODER | |
827
770578c6c300
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
michaelni
parents:
783
diff
changeset
|
345 register_avcodec(&mace6_decoder); |
2638 | 346 #endif //CONFIG_MACE6_DECODER |
347 #ifdef CONFIG_HUFFYUV_DECODER | |
866 | 348 register_avcodec(&huffyuv_decoder); |
2638 | 349 #endif //CONFIG_HUFFYUV_DECODER |
350 #ifdef CONFIG_FFVHUFF_DECODER | |
2373 | 351 register_avcodec(&ffvhuff_decoder); |
2638 | 352 #endif //CONFIG_FFVHUFF_DECODER |
353 #ifdef CONFIG_FFV1_DECODER | |
1300
e18667d1e94d
FFV1 codec (our very simple lossless intra only codec, compresses much better then huffyuv)
michaelni
parents:
1297
diff
changeset
|
354 register_avcodec(&ffv1_decoder); |
2638 | 355 #endif //CONFIG_FFV1_DECODER |
356 #ifdef CONFIG_SNOW_DECODER | |
2138 | 357 register_avcodec(&snow_decoder); |
2638 | 358 #endif //CONFIG_SNOW_DECODER |
359 #ifdef CONFIG_CYUV_DECODER | |
1056 | 360 register_avcodec(&cyuv_decoder); |
2638 | 361 #endif //CONFIG_CYUV_DECODER |
362 #ifdef CONFIG_H264_DECODER | |
1168 | 363 register_avcodec(&h264_decoder); |
2638 | 364 #endif //CONFIG_H264_DECODER |
365 #ifdef CONFIG_VP3_DECODER | |
1224 | 366 register_avcodec(&vp3_decoder); |
2638 | 367 #endif //CONFIG_VP3_DECODER |
3530 | 368 #ifdef CONFIG_THEORA_DECODER |
1516
0f0e9dfa6723
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
alex
parents:
1500
diff
changeset
|
369 register_avcodec(&theora_decoder); |
2638 | 370 #endif //CONFIG_THEORA_DECODER |
3695 | 371 #ifdef CONFIG_VP5_DECODER |
372 register_avcodec(&vp5_decoder); | |
373 #endif //CONFIG_VP5_DECODER | |
374 #ifdef CONFIG_VP6_DECODER | |
375 register_avcodec(&vp6_decoder); | |
376 #endif //CONFIG_VP6_DECODER | |
377 #ifdef CONFIG_VP6F_DECODER | |
378 register_avcodec(&vp6f_decoder); | |
379 #endif //CONFIG_VP6F_DECODER | |
2638 | 380 #ifdef CONFIG_ASV1_DECODER |
1273 | 381 register_avcodec(&asv1_decoder); |
2638 | 382 #endif //CONFIG_ASV1_DECODER |
383 #ifdef CONFIG_ASV2_DECODER | |
1433 | 384 register_avcodec(&asv2_decoder); |
2638 | 385 #endif //CONFIG_ASV2_DECODER |
386 #ifdef CONFIG_VCR1_DECODER | |
1374 | 387 register_avcodec(&vcr1_decoder); |
2638 | 388 #endif //CONFIG_VCR1_DECODER |
389 #ifdef CONFIG_CLJR_DECODER | |
1385 | 390 register_avcodec(&cljr_decoder); |
2638 | 391 #endif //CONFIG_CLJR_DECODER |
392 #ifdef CONFIG_FOURXM_DECODER | |
1293 | 393 register_avcodec(&fourxm_decoder); |
2638 | 394 #endif //CONFIG_FOURXM_DECODER |
395 #ifdef CONFIG_MDEC_DECODER | |
1410
524c904a66b8
PSX MDEC decoder, based upon some code from Sebastian Jedruszkiewicz <elf at frogger dot rules dot pl>
michaelni
parents:
1385
diff
changeset
|
396 register_avcodec(&mdec_decoder); |
2638 | 397 #endif //CONFIG_MDEC_DECODER |
398 #ifdef CONFIG_ROQ_DECODER | |
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
1434
diff
changeset
|
399 register_avcodec(&roq_decoder); |
2638 | 400 #endif //CONFIG_ROQ_DECODER |
401 #ifdef CONFIG_INTERPLAY_VIDEO_DECODER | |
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
1434
diff
changeset
|
402 register_avcodec(&interplay_video_decoder); |
2638 | 403 #endif //CONFIG_INTERPLAY_VIDEO_DECODER |
404 #ifdef CONFIG_XAN_WC3_DECODER | |
1443
47f4c8a5a7fc
New fringe codecs: WC3/Xan video, Xan DPCM, DK3 & DK4 ADPCM
tmmm
parents:
1439
diff
changeset
|
405 register_avcodec(&xan_wc3_decoder); |
2638 | 406 #endif //CONFIG_XAN_WC3_DECODER |
407 #ifdef CONFIG_RPZA_DECODER | |
1491
222643544cf1
New demuxers: Sega FILM/CPK, Westwood VQA & AUD; new decoders: MS RLE &
tmmm
parents:
1489
diff
changeset
|
408 register_avcodec(&rpza_decoder); |
2638 | 409 #endif //CONFIG_RPZA_DECODER |
410 #ifdef CONFIG_CINEPAK_DECODER | |
1491
222643544cf1
New demuxers: Sega FILM/CPK, Westwood VQA & AUD; new decoders: MS RLE &
tmmm
parents:
1489
diff
changeset
|
411 register_avcodec(&cinepak_decoder); |
2638 | 412 #endif //CONFIG_CINEPAK_DECODER |
413 #ifdef CONFIG_MSRLE_DECODER | |
1491
222643544cf1
New demuxers: Sega FILM/CPK, Westwood VQA & AUD; new decoders: MS RLE &
tmmm
parents:
1489
diff
changeset
|
414 register_avcodec(&msrle_decoder); |
2638 | 415 #endif //CONFIG_MSRLE_DECODER |
416 #ifdef CONFIG_MSVIDEO1_DECODER | |
1491
222643544cf1
New demuxers: Sega FILM/CPK, Westwood VQA & AUD; new decoders: MS RLE &
tmmm
parents:
1489
diff
changeset
|
417 register_avcodec(&msvideo1_decoder); |
2638 | 418 #endif //CONFIG_MSVIDEO1_DECODER |
419 #ifdef CONFIG_VQA_DECODER | |
1496 | 420 register_avcodec(&vqa_decoder); |
2638 | 421 #endif //CONFIG_VQA_DECODER |
422 #ifdef CONFIG_IDCIN_DECODER | |
1498 | 423 register_avcodec(&idcin_decoder); |
2638 | 424 #endif //CONFIG_IDCIN_DECODER |
425 #ifdef CONFIG_EIGHTBPS_DECODER | |
1608 | 426 register_avcodec(&eightbps_decoder); |
2638 | 427 #endif //CONFIG_EIGHTBPS_DECODER |
428 #ifdef CONFIG_SMC_DECODER | |
1610 | 429 register_avcodec(&smc_decoder); |
2638 | 430 #endif //CONFIG_SMC_DECODER |
431 #ifdef CONFIG_FLIC_DECODER | |
1624 | 432 register_avcodec(&flic_decoder); |
2638 | 433 #endif //CONFIG_FLIC_DECODER |
434 #ifdef CONFIG_TRUEMOTION1_DECODER | |
1650
bdade3baabfc
initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
1639
diff
changeset
|
435 register_avcodec(&truemotion1_decoder); |
2638 | 436 #endif //CONFIG_TRUEMOTION1_DECODER |
2906
e578b3572987
Duck TrueMotion 2 video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2852
diff
changeset
|
437 #ifdef CONFIG_TRUEMOTION2_DECODER |
e578b3572987
Duck TrueMotion 2 video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2852
diff
changeset
|
438 register_avcodec(&truemotion2_decoder); |
e578b3572987
Duck TrueMotion 2 video decoder, courtesy of Konstantin Shishkov
melanson
parents:
2852
diff
changeset
|
439 #endif //CONFIG_TRUEMOTION2_DECODER |
2638 | 440 #ifdef CONFIG_VMDVIDEO_DECODER |
1717
6a7e68899d8a
first pass at Sierra VMD A/V decoders; video looks great, audio is not
melanson
parents:
1650
diff
changeset
|
441 register_avcodec(&vmdvideo_decoder); |
2638 | 442 #endif //CONFIG_VMDVIDEO_DECODER |
443 #ifdef CONFIG_VMDAUDIO_DECODER | |
1717
6a7e68899d8a
first pass at Sierra VMD A/V decoders; video looks great, audio is not
melanson
parents:
1650
diff
changeset
|
444 register_avcodec(&vmdaudio_decoder); |
2638 | 445 #endif //CONFIG_VMDAUDIO_DECODER |
446 #ifdef CONFIG_MSZH_DECODER | |
1741 | 447 register_avcodec(&mszh_decoder); |
2638 | 448 #endif //CONFIG_MSZH_DECODER |
449 #ifdef CONFIG_ZLIB_DECODER | |
1741 | 450 register_avcodec(&zlib_decoder); |
2638 | 451 #endif //CONFIG_ZLIB_DECODER |
3120 | 452 #ifdef CONFIG_ZMBV_DECODER |
453 register_avcodec(&zmbv_decoder); | |
454 #endif //CONFIG_ZMBV_DECODER | |
3209 | 455 #ifdef CONFIG_SMACKER_DECODER |
456 register_avcodec(&smacker_decoder); | |
457 #endif //CONFIG_SMACKER_DECODER | |
458 #ifdef CONFIG_SMACKAUD_DECODER | |
459 register_avcodec(&smackaud_decoder); | |
460 #endif //CONFIG_SMACKAUD_DECODER | |
2638 | 461 #ifdef CONFIG_SONIC_DECODER |
2182
113732773bda
new opensource lossy/lossless audio codec based on speech compression techniques (actually based on bonk)
alex
parents:
2170
diff
changeset
|
462 register_avcodec(&sonic_decoder); |
2638 | 463 #endif //CONFIG_SONIC_DECODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
464 #ifdef CONFIG_AC3 |
2638 | 465 #ifdef CONFIG_AC3_DECODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
466 register_avcodec(&ac3_decoder); |
2638 | 467 #endif //CONFIG_AC3_DECODER |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
468 #endif |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2081
diff
changeset
|
469 #ifdef CONFIG_DTS |
2638 | 470 #ifdef CONFIG_DTS_DECODER |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2081
diff
changeset
|
471 register_avcodec(&dts_decoder); |
2638 | 472 #endif //CONFIG_DTS_DECODER |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2081
diff
changeset
|
473 #endif |
2638 | 474 #ifdef CONFIG_RA_144_DECODER |
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
1300
diff
changeset
|
475 register_avcodec(&ra_144_decoder); |
2638 | 476 #endif //CONFIG_RA_144_DECODER |
477 #ifdef CONFIG_RA_288_DECODER | |
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
1300
diff
changeset
|
478 register_avcodec(&ra_288_decoder); |
2638 | 479 #endif //CONFIG_RA_288_DECODER |
480 #ifdef CONFIG_ROQ_DPCM_DECODER | |
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
1434
diff
changeset
|
481 register_avcodec(&roq_dpcm_decoder); |
2638 | 482 #endif //CONFIG_ROQ_DPCM_DECODER |
483 #ifdef CONFIG_INTERPLAY_DPCM_DECODER | |
1439
a4d00b1f0271
initial commit for Id RoQ and Interplay MVE multimedia subsystems
tmmm
parents:
1434
diff
changeset
|
484 register_avcodec(&interplay_dpcm_decoder); |
2638 | 485 #endif //CONFIG_INTERPLAY_DPCM_DECODER |
486 #ifdef CONFIG_XAN_DPCM_DECODER | |
1443
47f4c8a5a7fc
New fringe codecs: WC3/Xan video, Xan DPCM, DK3 & DK4 ADPCM
tmmm
parents:
1439
diff
changeset
|
487 register_avcodec(&xan_dpcm_decoder); |
2638 | 488 #endif //CONFIG_XAN_DPCM_DECODER |
489 #ifdef CONFIG_SOL_DPCM_DECODER | |
2275
c443a6af19a7
support for Sierra Online audio files and Apple QuickDraw codec,
melanson
parents:
2234
diff
changeset
|
490 register_avcodec(&sol_dpcm_decoder); |
2638 | 491 #endif //CONFIG_SOL_DPCM_DECODER |
492 #ifdef CONFIG_QTRLE_DECODER | |
1783
66ae3c109d90
initial commit for Quicktime Animation (RLE) video decoder; bit depths
melanson
parents:
1779
diff
changeset
|
493 register_avcodec(&qtrle_decoder); |
2638 | 494 #endif //CONFIG_QTRLE_DECODER |
495 #ifdef CONFIG_FLAC_DECODER | |
1812 | 496 register_avcodec(&flac_decoder); |
2638 | 497 #endif //CONFIG_FLAC_DECODER |
498 #ifdef CONFIG_SHORTEN_DECODER | |
2525
b47af698085e
shorten decoder by (Jeff Muizelaar <jrmuizel gmail com>)
michael
parents:
2520
diff
changeset
|
499 register_avcodec(&shorten_decoder); |
2638 | 500 #endif //CONFIG_SHORTEN_DECODER |
501 #ifdef CONFIG_ALAC_DECODER | |
2542
a27a580f292e
first pass at ALAC decoder from David Hammerton; while David's original
melanson
parents:
2530
diff
changeset
|
502 register_avcodec(&alac_decoder); |
2638 | 503 #endif //CONFIG_ALAC_DECODER |
504 #ifdef CONFIG_WS_SND1_DECODER | |
2585 | 505 register_avcodec(&ws_snd1_decoder); |
2638 | 506 #endif //CONFIG_WS_SND1_DECODER |
2697
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2665
diff
changeset
|
507 #ifdef CONFIG_VORBIS_DECODER |
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2665
diff
changeset
|
508 register_avcodec(&vorbis_decoder); |
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2665
diff
changeset
|
509 #endif |
2729 | 510 #ifdef CONFIG_LIBGSM |
511 register_avcodec(&libgsm_decoder); | |
512 #endif //CONFIG_LIBGSM | |
2913 | 513 #ifdef CONFIG_QDM2_DECODER |
514 register_avcodec(&qdm2_decoder); | |
515 #endif //CONFIG_QDM2_DECODER | |
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
516 #ifdef CONFIG_COOK_DECODER |
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
517 register_avcodec(&cook_decoder); |
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
518 #endif //CONFIG_COOK_DECODER |
3006
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2979
diff
changeset
|
519 #ifdef CONFIG_TRUESPEECH_DECODER |
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2979
diff
changeset
|
520 register_avcodec(&truespeech_decoder); |
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2979
diff
changeset
|
521 #endif //CONFIG_TRUESPEECH_DECODER |
3118
01b58c3b8a91
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
alex
parents:
3098
diff
changeset
|
522 #ifdef CONFIG_TTA_DECODER |
01b58c3b8a91
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
alex
parents:
3098
diff
changeset
|
523 register_avcodec(&tta_decoder); |
01b58c3b8a91
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
alex
parents:
3098
diff
changeset
|
524 #endif //CONFIG_TTA_DECODER |
3129
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3127
diff
changeset
|
525 #ifdef CONFIG_AVS_DECODER |
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3127
diff
changeset
|
526 register_avcodec(&avs_decoder); |
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3127
diff
changeset
|
527 #endif //CONFIG_AVS_DECODER |
3395
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
528 #ifdef CONFIG_CAVS_DECODER |
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
529 register_avcodec(&cavs_decoder); |
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
530 #endif //CONFIG_CAVS_DECODER |
2921
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
531 #ifdef CONFIG_RAWVIDEO_DECODER |
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
532 register_avcodec(&rawvideo_decoder); |
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
533 #endif //CONFIG_RAWVIDEO_DECODER |
3329 | 534 #ifdef CONFIG_FLASHSV_DECODER |
535 register_avcodec(&flashsv_decoder); | |
536 #endif //CONFIG_FLASHSV_DECODER | |
3677 | 537 #ifdef CONFIG_VMNC_DECODER |
538 register_avcodec(&vmnc_decoder); | |
539 #endif //CONFIG_VMNC_DECODER | |
3764 | 540 #ifdef CONFIG_WAVPACK_DECODER |
541 register_avcodec(&wavpack_decoder); | |
542 #endif //CONFIG_WAVPACK_DECODER | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
543 |
3463 | 544 #if defined(CONFIG_AMR_NB) || defined(CONFIG_AMR_NB_FIXED) |
2638 | 545 #ifdef CONFIG_AMR_NB_DECODER |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1245
diff
changeset
|
546 register_avcodec(&amr_nb_decoder); |
2638 | 547 #endif //CONFIG_AMR_NB_DECODER |
548 #ifdef CONFIG_AMR_NB_ENCODER | |
1297 | 549 register_avcodec(&amr_nb_encoder); |
2638 | 550 #endif //CONFIG_AMR_NB_ENCODER |
3463 | 551 #endif /* CONFIG_AMR_NB || CONFIG_AMR_NB_FIXED */ |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1443
diff
changeset
|
552 |
3463 | 553 #ifdef CONFIG_AMR_WB |
2638 | 554 #ifdef CONFIG_AMR_WB_DECODER |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1443
diff
changeset
|
555 register_avcodec(&amr_wb_decoder); |
2638 | 556 #endif //CONFIG_AMR_WB_DECODER |
557 #ifdef CONFIG_AMR_WB_ENCODER | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1443
diff
changeset
|
558 register_avcodec(&amr_wb_encoder); |
2638 | 559 #endif //CONFIG_AMR_WB_ENCODER |
3463 | 560 #endif /* CONFIG_AMR_WB */ |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1443
diff
changeset
|
561 |
2949 | 562 #ifdef CONFIG_BMP_DECODER |
563 register_avcodec(&bmp_decoder); | |
564 #endif | |
565 | |
3119
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
566 #if CONFIG_MMVIDEO_DECODER |
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
567 register_avcodec(&mmvideo_decoder); |
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
568 #endif //CONFIG_MMVIDEO_DECODER |
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
569 |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
570 /* pcm codecs */ |
3448 | 571 #ifdef CONFIG_PCM_S32LE_DECODER |
572 register_avcodec(&pcm_s32le_decoder); | |
573 #endif | |
574 #ifdef CONFIG_PCM_S32LE_ENCODER | |
575 register_avcodec(&pcm_s32le_encoder); | |
576 #endif | |
577 #ifdef CONFIG_PCM_S32BE_DECODER | |
578 register_avcodec(&pcm_s32be_decoder); | |
579 #endif | |
580 #ifdef CONFIG_PCM_S32BE_ENCODER | |
581 register_avcodec(&pcm_s32be_encoder); | |
582 #endif | |
583 #ifdef CONFIG_PCM_U32LE_DECODER | |
584 register_avcodec(&pcm_u32le_decoder); | |
585 #endif | |
586 #ifdef CONFIG_PCM_U32LE_ENCODER | |
587 register_avcodec(&pcm_u32le_encoder); | |
588 #endif | |
589 #ifdef CONFIG_PCM_U32BE_DECODER | |
590 register_avcodec(&pcm_u32be_decoder); | |
591 #endif | |
592 #ifdef CONFIG_PCM_U32BE_ENCODER | |
593 register_avcodec(&pcm_u32be_encoder); | |
594 #endif | |
595 #ifdef CONFIG_PCM_S24LE_DECODER | |
596 register_avcodec(&pcm_s24le_decoder); | |
597 #endif | |
598 #ifdef CONFIG_PCM_S24LE_ENCODER | |
599 register_avcodec(&pcm_s24le_encoder); | |
600 #endif | |
601 #ifdef CONFIG_PCM_S24BE_DECODER | |
602 register_avcodec(&pcm_s24be_decoder); | |
603 #endif | |
604 #ifdef CONFIG_PCM_S24BE_ENCODER | |
605 register_avcodec(&pcm_s24be_encoder); | |
606 #endif | |
607 #ifdef CONFIG_PCM_U24LE_DECODER | |
608 register_avcodec(&pcm_u24le_decoder); | |
609 #endif | |
610 #ifdef CONFIG_PCM_U24LE_ENCODER | |
611 register_avcodec(&pcm_u24le_encoder); | |
612 #endif | |
613 #ifdef CONFIG_PCM_U24BE_DECODER | |
614 register_avcodec(&pcm_u24be_decoder); | |
615 #endif | |
616 #ifdef CONFIG_PCM_U24BE_ENCODER | |
617 register_avcodec(&pcm_u24be_encoder); | |
618 #endif | |
619 #ifdef CONFIG_PCM_S24DAUD_DECODER | |
620 register_avcodec(&pcm_s24daud_decoder); | |
621 #endif | |
622 #ifdef CONFIG_PCM_S24DAUD_ENCODER | |
623 register_avcodec(&pcm_s24daud_encoder); | |
624 #endif | |
625 #ifdef CONFIG_PCM_S16LE_DECODER | |
626 register_avcodec(&pcm_s16le_decoder); | |
627 #endif | |
628 #ifdef CONFIG_PCM_S16LE_ENCODER | |
629 register_avcodec(&pcm_s16le_encoder); | |
630 #endif | |
631 #ifdef CONFIG_PCM_S16BE_DECODER | |
632 register_avcodec(&pcm_s16be_decoder); | |
633 #endif | |
634 #ifdef CONFIG_PCM_S16BE_ENCODER | |
635 register_avcodec(&pcm_s16be_encoder); | |
636 #endif | |
637 #ifdef CONFIG_PCM_U16LE_DECODER | |
638 register_avcodec(&pcm_u16le_decoder); | |
639 #endif | |
640 #ifdef CONFIG_PCM_U16LE_ENCODER | |
641 register_avcodec(&pcm_u16le_encoder); | |
642 #endif | |
643 #ifdef CONFIG_PCM_U16BE_DECODER | |
644 register_avcodec(&pcm_u16be_decoder); | |
645 #endif | |
646 #ifdef CONFIG_PCM_U16BE_ENCODER | |
647 register_avcodec(&pcm_u16be_encoder); | |
648 #endif | |
649 #ifdef CONFIG_PCM_S8_DECODER | |
650 register_avcodec(&pcm_s8_decoder); | |
651 #endif | |
652 #ifdef CONFIG_PCM_S8_ENCODER | |
653 register_avcodec(&pcm_s8_encoder); | |
654 #endif | |
655 #ifdef CONFIG_PCM_U8_DECODER | |
656 register_avcodec(&pcm_u8_decoder); | |
657 #endif | |
658 #ifdef CONFIG_PCM_U8_ENCODER | |
659 register_avcodec(&pcm_u8_encoder); | |
660 #endif | |
661 #ifdef CONFIG_PCM_ALAW_DECODER | |
662 register_avcodec(&pcm_alaw_decoder); | |
663 #endif | |
664 #ifdef CONFIG_PCM_ALAW_ENCODER | |
665 register_avcodec(&pcm_alaw_encoder); | |
666 #endif | |
667 #ifdef CONFIG_PCM_MULAW_DECODER | |
668 register_avcodec(&pcm_mulaw_decoder); | |
669 #endif | |
670 #ifdef CONFIG_PCM_MULAW_ENCODER | |
671 register_avcodec(&pcm_mulaw_encoder); | |
1535 | 672 #endif |
673 | |
3448 | 674 /* adpcm codecs */ |
675 #ifdef CONFIG_ADPCM_IMA_QT_DECODER | |
676 register_avcodec(&adpcm_ima_qt_decoder); | |
677 #endif | |
678 #ifdef CONFIG_ADPCM_IMA_QT_ENCODER | |
679 register_avcodec(&adpcm_ima_qt_encoder); | |
680 #endif | |
681 #ifdef CONFIG_ADPCM_IMA_WAV_DECODER | |
682 register_avcodec(&adpcm_ima_wav_decoder); | |
683 #endif | |
684 #ifdef CONFIG_ADPCM_IMA_WAV_ENCODER | |
685 register_avcodec(&adpcm_ima_wav_encoder); | |
686 #endif | |
687 #ifdef CONFIG_ADPCM_IMA_DK3_DECODER | |
688 register_avcodec(&adpcm_ima_dk3_decoder); | |
689 #endif | |
690 #ifdef CONFIG_ADPCM_IMA_DK3_ENCODER | |
691 register_avcodec(&adpcm_ima_dk3_encoder); | |
692 #endif | |
693 #ifdef CONFIG_ADPCM_IMA_DK4_DECODER | |
694 register_avcodec(&adpcm_ima_dk4_decoder); | |
695 #endif | |
696 #ifdef CONFIG_ADPCM_IMA_DK4_ENCODER | |
697 register_avcodec(&adpcm_ima_dk4_encoder); | |
698 #endif | |
699 #ifdef CONFIG_ADPCM_IMA_WS_DECODER | |
700 register_avcodec(&adpcm_ima_ws_decoder); | |
701 #endif | |
702 #ifdef CONFIG_ADPCM_IMA_WS_ENCODER | |
703 register_avcodec(&adpcm_ima_ws_encoder); | |
704 #endif | |
705 #ifdef CONFIG_ADPCM_IMA_SMJPEG_DECODER | |
706 register_avcodec(&adpcm_ima_smjpeg_decoder); | |
707 #endif | |
708 #ifdef CONFIG_ADPCM_IMA_SMJPEG_ENCODER | |
709 register_avcodec(&adpcm_ima_smjpeg_encoder); | |
710 #endif | |
711 #ifdef CONFIG_ADPCM_MS_DECODER | |
712 register_avcodec(&adpcm_ms_decoder); | |
713 #endif | |
714 #ifdef CONFIG_ADPCM_MS_ENCODER | |
715 register_avcodec(&adpcm_ms_encoder); | |
716 #endif | |
717 #ifdef CONFIG_ADPCM_4XM_DECODER | |
718 register_avcodec(&adpcm_4xm_decoder); | |
719 #endif | |
720 #ifdef CONFIG_ADPCM_4XM_ENCODER | |
721 register_avcodec(&adpcm_4xm_encoder); | |
722 #endif | |
723 #ifdef CONFIG_ADPCM_XA_DECODER | |
724 register_avcodec(&adpcm_xa_decoder); | |
725 #endif | |
726 #ifdef CONFIG_ADPCM_XA_ENCODER | |
727 register_avcodec(&adpcm_xa_encoder); | |
728 #endif | |
729 #ifdef CONFIG_ADPCM_ADX_DECODER | |
730 register_avcodec(&adpcm_adx_decoder); | |
731 #endif | |
732 #ifdef CONFIG_ADPCM_ADX_ENCODER | |
733 register_avcodec(&adpcm_adx_encoder); | |
734 #endif | |
735 #ifdef CONFIG_ADPCM_EA_DECODER | |
736 register_avcodec(&adpcm_ea_decoder); | |
737 #endif | |
738 #ifdef CONFIG_ADPCM_EA_ENCODER | |
739 register_avcodec(&adpcm_ea_encoder); | |
740 #endif | |
741 #ifdef CONFIG_ADPCM_G726_DECODER | |
742 register_avcodec(&adpcm_g726_decoder); | |
743 #endif | |
744 #ifdef CONFIG_ADPCM_G726_ENCODER | |
745 register_avcodec(&adpcm_g726_encoder); | |
746 #endif | |
747 #ifdef CONFIG_ADPCM_CT_DECODER | |
748 register_avcodec(&adpcm_ct_decoder); | |
749 #endif | |
750 #ifdef CONFIG_ADPCM_CT_ENCODER | |
751 register_avcodec(&adpcm_ct_encoder); | |
752 #endif | |
753 #ifdef CONFIG_ADPCM_SWF_DECODER | |
754 register_avcodec(&adpcm_swf_decoder); | |
755 #endif | |
756 #ifdef CONFIG_ADPCM_SWF_ENCODER | |
757 register_avcodec(&adpcm_swf_encoder); | |
758 #endif | |
759 #ifdef CONFIG_ADPCM_YAMAHA_DECODER | |
760 register_avcodec(&adpcm_yamaha_decoder); | |
761 #endif | |
762 #ifdef CONFIG_ADPCM_YAMAHA_ENCODER | |
763 register_avcodec(&adpcm_yamaha_encoder); | |
764 #endif | |
765 #ifdef CONFIG_ADPCM_SBPRO_4_DECODER | |
766 register_avcodec(&adpcm_sbpro_4_decoder); | |
767 #endif | |
768 #ifdef CONFIG_ADPCM_SBPRO_4_ENCODER | |
769 register_avcodec(&adpcm_sbpro_4_encoder); | |
770 #endif | |
771 #ifdef CONFIG_ADPCM_SBPRO_3_DECODER | |
772 register_avcodec(&adpcm_sbpro_3_decoder); | |
773 #endif | |
774 #ifdef CONFIG_ADPCM_SBPRO_3_ENCODER | |
775 register_avcodec(&adpcm_sbpro_3_encoder); | |
776 #endif | |
777 #ifdef CONFIG_ADPCM_SBPRO_2_DECODER | |
778 register_avcodec(&adpcm_sbpro_2_decoder); | |
779 #endif | |
780 #ifdef CONFIG_ADPCM_SBPRO_2_ENCODER | |
781 register_avcodec(&adpcm_sbpro_2_encoder); | |
782 #endif | |
1613 | 783 |
2921
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
784 /* subtitles */ |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
785 #ifdef CONFIG_DVDSUB_DECODER |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
786 register_avcodec(&dvdsub_decoder); |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
787 #endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
788 #ifdef CONFIG_DVDSUB_ENCODER |
2946
ac94d509884e
dvbsub encoder, patch by Wolfram Gloger < wmglo AH dent POIS med POIS uni-muenchen POIS de >
gpoirier
parents:
2921
diff
changeset
|
789 register_avcodec(&dvdsub_encoder); |
2921
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
790 #endif |
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
791 |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
792 #ifdef CONFIG_DVBSUB_DECODER |
2796
95c35706acbb
DVB subtitle decoder by (Ian Caulfield: imc25, cam ac uk)
michael
parents:
2794
diff
changeset
|
793 register_avcodec(&dvbsub_decoder); |
2921
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
794 #endif |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
795 #ifdef CONFIG_DVBSUB_ENCODER |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
796 register_avcodec(&dvbsub_encoder); |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
797 #endif |
2756 | 798 |
2967 | 799 /* parsers */ |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
800 #ifdef CONFIG_MPEGVIDEO_PARSER |
1613 | 801 av_register_codec_parser(&mpegvideo_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
802 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
803 #ifdef CONFIG_MPEG4VIDEO_PARSER |
1613 | 804 av_register_codec_parser(&mpeg4video_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
805 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
806 #ifdef CONFIG_CAVSVIDEO_PARSER |
3395
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
807 av_register_codec_parser(&cavsvideo_parser); |
3432 | 808 #endif |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
809 #ifdef CONFIG_H261_PARSER |
2044
b6f2add2511e
h261 decoder by (Maarten Daniels <maarten.daniels at student dot luc dot ac dot be>)
michael
parents:
2005
diff
changeset
|
810 av_register_codec_parser(&h261_parser); |
2639 | 811 #endif |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
812 #ifdef CONFIG_H263_PARSER |
1613 | 813 av_register_codec_parser(&h263_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
814 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
815 #ifdef CONFIG_H264_PARSER |
1613 | 816 av_register_codec_parser(&h264_parser); |
2639 | 817 #endif |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
818 #ifdef CONFIG_MJPEG_PARSER |
2319 | 819 av_register_codec_parser(&mjpeg_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
820 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
821 #ifdef CONFIG_PNM_PARSER |
2348 | 822 av_register_codec_parser(&pnm_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
823 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
824 #ifdef CONFIG_MPEGAUDIO_PARSER |
1613 | 825 av_register_codec_parser(&mpegaudio_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
826 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
827 #ifdef CONFIG_AC3_PARSER |
1613 | 828 av_register_codec_parser(&ac3_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
829 #endif |
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
830 #ifdef CONFIG_DVDSUB_PARSER |
2756 | 831 av_register_codec_parser(&dvdsub_parser); |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
832 #endif |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
833 #ifdef CONFIG_DVBSUB_PARSER |
2796
95c35706acbb
DVB subtitle decoder by (Ian Caulfield: imc25, cam ac uk)
michael
parents:
2794
diff
changeset
|
834 av_register_codec_parser(&dvbsub_parser); |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
835 #endif |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
836 #ifdef CONFIG_AAC_PARSER |
3098 | 837 av_register_codec_parser(&aac_parser); |
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3448
diff
changeset
|
838 #endif |
3421
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3395
diff
changeset
|
839 |
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3395
diff
changeset
|
840 av_register_bitstream_filter(&dump_extradata_bsf); |
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3395
diff
changeset
|
841 av_register_bitstream_filter(&remove_extradata_bsf); |
3422 | 842 av_register_bitstream_filter(&noise_bsf); |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
843 } |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
844 |