VirtualBox

source: vbox/trunk/src/libs/ffmpeg-20060710/libavcodec/allcodecs.c@ 10184

最後變更 在這個檔案從10184是 5776,由 vboxsync 提交於 17 年 前

ffmpeg: exported to OSE

檔案大小: 24.5 KB
 
1/*
2 * Utils for libavcodec
3 * Copyright (c) 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
20/**
21 * @file allcodecs.c
22 * Utils for libavcodec.
23 */
24
25#include "avcodec.h"
26
27/* If you do not call this function, then you can select exactly which
28 formats you want to support */
29
30/**
31 * simple call to register all the codecs.
32 */
33void avcodec_register_all(void)
34{
35 static int inited = 0;
36
37 if (inited != 0)
38 return;
39 inited = 1;
40
41 /* encoders */
42#ifdef CONFIG_ENCODERS
43#ifdef CONFIG_AC3_ENCODER
44 register_avcodec(&ac3_encoder);
45#endif //CONFIG_AC3_ENCODER
46#ifdef CONFIG_MP2_ENCODER
47 register_avcodec(&mp2_encoder);
48#endif //CONFIG_MP2_ENCODER
49#ifdef CONFIG_MP3LAME
50#ifdef CONFIG_MP3LAME_ENCODER
51 register_avcodec(&mp3lame_encoder);
52#endif //CONFIG_MP3LAME_ENCODER
53#endif
54#ifdef CONFIG_LIBVORBIS
55#ifdef CONFIG_OGGVORBIS_ENCODER
56 register_avcodec(&oggvorbis_encoder);
57#endif //CONFIG_OGGVORBIS_ENCODER
58#if (defined CONFIG_OGGVORBIS_DECODER && !defined CONFIG_VORBIS_DECODER)
59 register_avcodec(&oggvorbis_decoder);
60#endif //CONFIG_OGGVORBIS_DECODER
61#endif
62#ifdef CONFIG_LIBTHEORA
63#ifdef CONFIG_OGGTHEORA_ENCODER
64// register_avcodec(&oggtheora_encoder);
65#endif //CONFIG_OGGTHEORA_ENCODER
66#ifdef CONFIG_OGGTHEORA_DECODER
67 register_avcodec(&oggtheora_decoder);
68#endif //CONFIG_OGGTHEORA_DECODER
69#endif
70#ifdef CONFIG_FAAC
71#ifdef CONFIG_FAAC_ENCODER
72 register_avcodec(&faac_encoder);
73#endif //CONFIG_FAAC_ENCODER
74#endif
75#ifdef CONFIG_FLAC_ENCODER
76 register_avcodec(&flac_encoder);
77#endif
78#ifdef CONFIG_XVID
79#ifdef CONFIG_XVID_ENCODER
80 register_avcodec(&xvid_encoder);
81#endif //CONFIG_XVID_ENCODER
82#endif
83#ifdef CONFIG_MPEG1VIDEO_ENCODER
84 register_avcodec(&mpeg1video_encoder);
85#endif //CONFIG_MPEG1VIDEO_ENCODER
86#ifdef CONFIG_H264_ENCODER
87// register_avcodec(&h264_encoder);
88#endif //CONFIG_H264_ENCODER
89#ifdef CONFIG_MPEG2VIDEO_ENCODER
90 register_avcodec(&mpeg2video_encoder);
91#endif //CONFIG_MPEG2VIDEO_ENCODER
92#ifdef CONFIG_H261_ENCODER
93 register_avcodec(&h261_encoder);
94#endif //CONFIG_H261_ENCODER
95#ifdef CONFIG_H263_ENCODER
96 register_avcodec(&h263_encoder);
97#endif //CONFIG_H263_ENCODER
98#ifdef CONFIG_H263P_ENCODER
99 register_avcodec(&h263p_encoder);
100#endif //CONFIG_H263P_ENCODER
101#ifdef CONFIG_FLV_ENCODER
102 register_avcodec(&flv_encoder);
103#endif //CONFIG_FLV_ENCODER
104#ifdef CONFIG_RV10_ENCODER
105 register_avcodec(&rv10_encoder);
106#endif //CONFIG_RV10_ENCODER
107#ifdef CONFIG_RV20_ENCODER
108 register_avcodec(&rv20_encoder);
109#endif //CONFIG_RV20_ENCODER
110#ifdef CONFIG_MPEG4_ENCODER
111 register_avcodec(&mpeg4_encoder);
112#endif //CONFIG_MPEG4_ENCODER
113#ifdef CONFIG_MSMPEG4V1_ENCODER
114 register_avcodec(&msmpeg4v1_encoder);
115#endif //CONFIG_MSMPEG4V1_ENCODER
116#ifdef CONFIG_MSMPEG4V2_ENCODER
117 register_avcodec(&msmpeg4v2_encoder);
118#endif //CONFIG_MSMPEG4V2_ENCODER
119#ifdef CONFIG_MSMPEG4V3_ENCODER
120 register_avcodec(&msmpeg4v3_encoder);
121#endif //CONFIG_MSMPEG4V3_ENCODER
122#ifdef CONFIG_WMV1_ENCODER
123 register_avcodec(&wmv1_encoder);
124#endif //CONFIG_WMV1_ENCODER
125#ifdef CONFIG_WMV2_ENCODER
126 register_avcodec(&wmv2_encoder);
127#endif //CONFIG_WMV2_ENCODER
128#ifdef CONFIG_SVQ1_ENCODER
129 register_avcodec(&svq1_encoder);
130#endif //CONFIG_SVQ1_ENCODER
131#ifdef CONFIG_MJPEG_ENCODER
132 register_avcodec(&mjpeg_encoder);
133#endif //CONFIG_MJPEG_ENCODER
134#ifdef CONFIG_LJPEG_ENCODER
135 register_avcodec(&ljpeg_encoder);
136#endif //CONFIG_LJPEG_ENCODER
137#ifdef CONFIG_JPEGLS_ENCODER
138 register_avcodec(&jpegls_encoder);
139#endif //CONFIG_JPEGLS_ENCODER
140#ifdef CONFIG_ZLIB
141#ifdef CONFIG_PNG_ENCODER
142 register_avcodec(&png_encoder);
143#endif //CONFIG_PNG_ENCODER
144#endif
145#ifdef CONFIG_PPM_ENCODER
146 register_avcodec(&ppm_encoder);
147#endif //CONFIG_PPM_ENCODER
148#ifdef CONFIG_PGM_ENCODER
149 register_avcodec(&pgm_encoder);
150#endif //CONFIG_PGM_ENCODER
151#ifdef CONFIG_PGMYUV_ENCODER
152 register_avcodec(&pgmyuv_encoder);
153#endif //CONFIG_PGMYUV_ENCODER
154#ifdef CONFIG_PBM_ENCODER
155 register_avcodec(&pbm_encoder);
156#endif //CONFIG_PBM_ENCODER
157#ifdef CONFIG_PAM_ENCODER
158 register_avcodec(&pam_encoder);
159#endif //CONFIG_PAM_ENCODER
160#ifdef CONFIG_HUFFYUV_ENCODER
161 register_avcodec(&huffyuv_encoder);
162#endif //CONFIG_HUFFYUV_ENCODER
163#ifdef CONFIG_FFVHUFF_ENCODER
164 register_avcodec(&ffvhuff_encoder);
165#endif //CONFIG_FFVHUFF_ENCODER
166#ifdef CONFIG_ASV1_ENCODER
167 register_avcodec(&asv1_encoder);
168#endif //CONFIG_ASV1_ENCODER
169#ifdef CONFIG_ASV2_ENCODER
170 register_avcodec(&asv2_encoder);
171#endif //CONFIG_ASV2_ENCODER
172#ifdef CONFIG_FFV1_ENCODER
173 register_avcodec(&ffv1_encoder);
174#endif //CONFIG_FFV1_ENCODER
175#ifdef CONFIG_SNOW_ENCODER
176 register_avcodec(&snow_encoder);
177#endif //CONFIG_SNOW_ENCODER
178#ifdef CONFIG_ZLIB_ENCODER
179 register_avcodec(&zlib_encoder);
180#endif //CONFIG_ZLIB_ENCODER
181#ifdef CONFIG_DVVIDEO_ENCODER
182 register_avcodec(&dvvideo_encoder);
183#endif //CONFIG_DVVIDEO_ENCODER
184#ifdef CONFIG_SONIC_ENCODER
185 register_avcodec(&sonic_encoder);
186#endif //CONFIG_SONIC_ENCODER
187#ifdef CONFIG_SONIC_LS_ENCODER
188 register_avcodec(&sonic_ls_encoder);
189#endif //CONFIG_SONIC_LS_ENCODER
190#ifdef CONFIG_X264
191#ifdef CONFIG_X264_ENCODER
192 register_avcodec(&x264_encoder);
193#endif //CONFIG_X264_ENCODER
194#endif
195#ifdef CONFIG_LIBGSM
196 register_avcodec(&libgsm_encoder);
197#endif //CONFIG_LIBGSM
198#ifdef CONFIG_RAWVIDEO_ENCODER
199 register_avcodec(&rawvideo_encoder);
200#endif //CONFIG_RAWVIDEO_ENCODER
201#endif /* CONFIG_ENCODERS */
202
203 /* decoders */
204#ifdef CONFIG_DECODERS
205#ifdef CONFIG_H263_DECODER
206 register_avcodec(&h263_decoder);
207#endif //CONFIG_H263_DECODER
208#ifdef CONFIG_H261_DECODER
209 register_avcodec(&h261_decoder);
210#endif //CONFIG_H261_DECODER
211#ifdef CONFIG_MPEG4_DECODER
212 register_avcodec(&mpeg4_decoder);
213#endif //CONFIG_MPEG4_DECODER
214#ifdef CONFIG_MSMPEG4V1_DECODER
215 register_avcodec(&msmpeg4v1_decoder);
216#endif //CONFIG_MSMPEG4V1_DECODER
217#ifdef CONFIG_MSMPEG4V2_DECODER
218 register_avcodec(&msmpeg4v2_decoder);
219#endif //CONFIG_MSMPEG4V2_DECODER
220#ifdef CONFIG_MSMPEG4V3_DECODER
221 register_avcodec(&msmpeg4v3_decoder);
222#endif //CONFIG_MSMPEG4V3_DECODER
223#ifdef CONFIG_WMV1_DECODER
224 register_avcodec(&wmv1_decoder);
225#endif //CONFIG_WMV1_DECODER
226#ifdef CONFIG_WMV2_DECODER
227 register_avcodec(&wmv2_decoder);
228#endif //CONFIG_WMV2_DECODER
229#ifdef CONFIG_VC1_DECODER
230 register_avcodec(&vc1_decoder);
231#endif //CONFIG_VC1_DECODER
232/* Reenable when it stops crashing on every file, causing bug report spam.
233#ifdef CONFIG_WMV3_DECODER
234 register_avcodec(&wmv3_decoder);
235#endif //CONFIG_WMV3_DECODER
236*/
237#ifdef CONFIG_H263I_DECODER
238 register_avcodec(&h263i_decoder);
239#endif //CONFIG_H263I_DECODER
240#ifdef CONFIG_FLV_DECODER
241 register_avcodec(&flv_decoder);
242#endif //CONFIG_FLV_DECODER
243#ifdef CONFIG_RV10_DECODER
244 register_avcodec(&rv10_decoder);
245#endif //CONFIG_RV10_DECODER
246#ifdef CONFIG_RV20_DECODER
247 register_avcodec(&rv20_decoder);
248#endif //CONFIG_RV20_DECODER
249#ifdef CONFIG_SVQ1_DECODER
250 register_avcodec(&svq1_decoder);
251#endif //CONFIG_SVQ1_DECODER
252#ifdef CONFIG_SVQ3_DECODER
253 register_avcodec(&svq3_decoder);
254#endif //CONFIG_SVQ3_DECODER
255#ifdef CONFIG_WMAV1_DECODER
256 register_avcodec(&wmav1_decoder);
257#endif //CONFIG_WMAV1_DECODER
258#ifdef CONFIG_WMAV2_DECODER
259 register_avcodec(&wmav2_decoder);
260#endif //CONFIG_WMAV2_DECODER
261#ifdef CONFIG_INDEO2_DECODER
262 register_avcodec(&indeo2_decoder);
263#endif //CONFIG_INDEO2_DECODER
264#ifdef CONFIG_INDEO3_DECODER
265 register_avcodec(&indeo3_decoder);
266#endif //CONFIG_INDEO3_DECODER
267#ifdef CONFIG_TSCC_DECODER
268 register_avcodec(&tscc_decoder);
269#endif //CONFIG_TSCC_DECODER
270#ifdef CONFIG_CSCD_DECODER
271 register_avcodec(&cscd_decoder);
272#endif //CONFIG_CSCD_DECODER
273#ifdef CONFIG_NUV_DECODER
274 register_avcodec(&nuv_decoder);
275#endif //CONFIG_NUV_DECODER
276#ifdef CONFIG_ULTI_DECODER
277 register_avcodec(&ulti_decoder);
278#endif //CONFIG_ULTI_DECODER
279#ifdef CONFIG_QDRAW_DECODER
280 register_avcodec(&qdraw_decoder);
281#endif //CONFIG_QDRAW_DECODER
282#ifdef CONFIG_XL_DECODER
283 register_avcodec(&xl_decoder);
284#endif //CONFIG_XL_DECODER
285#ifdef CONFIG_QPEG_DECODER
286 register_avcodec(&qpeg_decoder);
287#endif //CONFIG_QPEG_DECODER
288#ifdef CONFIG_LOCO_DECODER
289 register_avcodec(&loco_decoder);
290#endif //CONFIG_LOCO_DECODER
291#ifdef CONFIG_KMVC_DECODER
292 register_avcodec(&kmvc_decoder);
293#endif //CONFIG_KMVC_DECODER
294#ifdef CONFIG_WNV1_DECODER
295 register_avcodec(&wnv1_decoder);
296#endif //CONFIG_WNV1_DECODER
297#ifdef CONFIG_AASC_DECODER
298 register_avcodec(&aasc_decoder);
299#endif //CONFIG_AASC_DECODER
300#ifdef CONFIG_FRAPS_DECODER
301 register_avcodec(&fraps_decoder);
302#endif //CONFIG_FRAPS_DECODER
303#ifdef CONFIG_FAAD
304#ifdef CONFIG_AAC_DECODER
305 register_avcodec(&aac_decoder);
306#endif //CONFIG_AAC_DECODER
307#ifdef CONFIG_MPEG4AAC_DECODER
308 register_avcodec(&mpeg4aac_decoder);
309#endif //CONFIG_MPEG4AAC_DECODER
310#endif
311#ifdef CONFIG_MPEG1VIDEO_DECODER
312 register_avcodec(&mpeg1video_decoder);
313#endif //CONFIG_MPEG1VIDEO_DECODER
314#ifdef CONFIG_MPEG2VIDEO_DECODER
315 register_avcodec(&mpeg2video_decoder);
316#endif //CONFIG_MPEG2VIDEO_DECODER
317#ifdef CONFIG_MPEGVIDEO_DECODER
318 register_avcodec(&mpegvideo_decoder);
319#endif //CONFIG_MPEGVIDEO_DECODER
320#ifdef HAVE_XVMC
321#ifdef CONFIG_MPEG_XVMC_DECODER
322 register_avcodec(&mpeg_xvmc_decoder);
323#endif //CONFIG_MPEG_XVMC_DECODER
324#endif
325#ifdef CONFIG_DVVIDEO_DECODER
326 register_avcodec(&dvvideo_decoder);
327#endif //CONFIG_DVVIDEO_DECODER
328#ifdef CONFIG_MJPEG_DECODER
329 register_avcodec(&mjpeg_decoder);
330#endif //CONFIG_MJPEG_DECODER
331#ifdef CONFIG_MJPEGB_DECODER
332 register_avcodec(&mjpegb_decoder);
333#endif //CONFIG_MJPEGB_DECODER
334#ifdef CONFIG_SP5X_DECODER
335 register_avcodec(&sp5x_decoder);
336#endif //CONFIG_SP5X_DECODER
337#ifdef CONFIG_ZLIB
338#ifdef CONFIG_PNG_DECODER
339 register_avcodec(&png_decoder);
340#endif //CONFIG_PNG_DECODER
341#endif
342#ifdef CONFIG_MP2_DECODER
343 register_avcodec(&mp2_decoder);
344#endif //CONFIG_MP2_DECODER
345#ifdef CONFIG_MP3_DECODER
346 register_avcodec(&mp3_decoder);
347#endif //CONFIG_MP3_DECODER
348#ifdef CONFIG_MP3ADU_DECODER
349 register_avcodec(&mp3adu_decoder);
350#endif //CONFIG_MP3ADU_DECODER
351#ifdef CONFIG_MP3ON4_DECODER
352 register_avcodec(&mp3on4_decoder);
353#endif //CONFIG_MP3ON4_DECODER
354#ifdef CONFIG_MACE3_DECODER
355 register_avcodec(&mace3_decoder);
356#endif //CONFIG_MACE3_DECODER
357#ifdef CONFIG_MACE6_DECODER
358 register_avcodec(&mace6_decoder);
359#endif //CONFIG_MACE6_DECODER
360#ifdef CONFIG_HUFFYUV_DECODER
361 register_avcodec(&huffyuv_decoder);
362#endif //CONFIG_HUFFYUV_DECODER
363#ifdef CONFIG_FFVHUFF_DECODER
364 register_avcodec(&ffvhuff_decoder);
365#endif //CONFIG_FFVHUFF_DECODER
366#ifdef CONFIG_FFV1_DECODER
367 register_avcodec(&ffv1_decoder);
368#endif //CONFIG_FFV1_DECODER
369#ifdef CONFIG_SNOW_DECODER
370 register_avcodec(&snow_decoder);
371#endif //CONFIG_SNOW_DECODER
372#ifdef CONFIG_CYUV_DECODER
373 register_avcodec(&cyuv_decoder);
374#endif //CONFIG_CYUV_DECODER
375#ifdef CONFIG_H264_DECODER
376 register_avcodec(&h264_decoder);
377#endif //CONFIG_H264_DECODER
378#ifdef CONFIG_VP3_DECODER
379 register_avcodec(&vp3_decoder);
380#endif //CONFIG_VP3_DECODER
381#if (defined CONFIG_THEORA_DECODER && !defined CONFIG_LIBTHEORA)
382 register_avcodec(&theora_decoder);
383#endif //CONFIG_THEORA_DECODER
384#ifdef CONFIG_ASV1_DECODER
385 register_avcodec(&asv1_decoder);
386#endif //CONFIG_ASV1_DECODER
387#ifdef CONFIG_ASV2_DECODER
388 register_avcodec(&asv2_decoder);
389#endif //CONFIG_ASV2_DECODER
390#ifdef CONFIG_VCR1_DECODER
391 register_avcodec(&vcr1_decoder);
392#endif //CONFIG_VCR1_DECODER
393#ifdef CONFIG_CLJR_DECODER
394 register_avcodec(&cljr_decoder);
395#endif //CONFIG_CLJR_DECODER
396#ifdef CONFIG_FOURXM_DECODER
397 register_avcodec(&fourxm_decoder);
398#endif //CONFIG_FOURXM_DECODER
399#ifdef CONFIG_MDEC_DECODER
400 register_avcodec(&mdec_decoder);
401#endif //CONFIG_MDEC_DECODER
402#ifdef CONFIG_ROQ_DECODER
403 register_avcodec(&roq_decoder);
404#endif //CONFIG_ROQ_DECODER
405#ifdef CONFIG_INTERPLAY_VIDEO_DECODER
406 register_avcodec(&interplay_video_decoder);
407#endif //CONFIG_INTERPLAY_VIDEO_DECODER
408#ifdef CONFIG_XAN_WC3_DECODER
409 register_avcodec(&xan_wc3_decoder);
410#endif //CONFIG_XAN_WC3_DECODER
411#ifdef CONFIG_RPZA_DECODER
412 register_avcodec(&rpza_decoder);
413#endif //CONFIG_RPZA_DECODER
414#ifdef CONFIG_CINEPAK_DECODER
415 register_avcodec(&cinepak_decoder);
416#endif //CONFIG_CINEPAK_DECODER
417#ifdef CONFIG_MSRLE_DECODER
418 register_avcodec(&msrle_decoder);
419#endif //CONFIG_MSRLE_DECODER
420#ifdef CONFIG_MSVIDEO1_DECODER
421 register_avcodec(&msvideo1_decoder);
422#endif //CONFIG_MSVIDEO1_DECODER
423#ifdef CONFIG_VQA_DECODER
424 register_avcodec(&vqa_decoder);
425#endif //CONFIG_VQA_DECODER
426#ifdef CONFIG_IDCIN_DECODER
427 register_avcodec(&idcin_decoder);
428#endif //CONFIG_IDCIN_DECODER
429#ifdef CONFIG_EIGHTBPS_DECODER
430 register_avcodec(&eightbps_decoder);
431#endif //CONFIG_EIGHTBPS_DECODER
432#ifdef CONFIG_SMC_DECODER
433 register_avcodec(&smc_decoder);
434#endif //CONFIG_SMC_DECODER
435#ifdef CONFIG_FLIC_DECODER
436 register_avcodec(&flic_decoder);
437#endif //CONFIG_FLIC_DECODER
438#ifdef CONFIG_TRUEMOTION1_DECODER
439 register_avcodec(&truemotion1_decoder);
440#endif //CONFIG_TRUEMOTION1_DECODER
441#ifdef CONFIG_TRUEMOTION2_DECODER
442 register_avcodec(&truemotion2_decoder);
443#endif //CONFIG_TRUEMOTION2_DECODER
444#ifdef CONFIG_VMDVIDEO_DECODER
445 register_avcodec(&vmdvideo_decoder);
446#endif //CONFIG_VMDVIDEO_DECODER
447#ifdef CONFIG_VMDAUDIO_DECODER
448 register_avcodec(&vmdaudio_decoder);
449#endif //CONFIG_VMDAUDIO_DECODER
450#ifdef CONFIG_MSZH_DECODER
451 register_avcodec(&mszh_decoder);
452#endif //CONFIG_MSZH_DECODER
453#ifdef CONFIG_ZLIB_DECODER
454 register_avcodec(&zlib_decoder);
455#endif //CONFIG_ZLIB_DECODER
456#ifdef CONFIG_ZMBV_DECODER
457 register_avcodec(&zmbv_decoder);
458#endif //CONFIG_ZMBV_DECODER
459#ifdef CONFIG_SMACKER_DECODER
460 register_avcodec(&smacker_decoder);
461#endif //CONFIG_SMACKER_DECODER
462#ifdef CONFIG_SMACKAUD_DECODER
463 register_avcodec(&smackaud_decoder);
464#endif //CONFIG_SMACKAUD_DECODER
465#ifdef CONFIG_SONIC_DECODER
466 register_avcodec(&sonic_decoder);
467#endif //CONFIG_SONIC_DECODER
468#ifdef CONFIG_AC3
469#ifdef CONFIG_AC3_DECODER
470 register_avcodec(&ac3_decoder);
471#endif //CONFIG_AC3_DECODER
472#endif
473#ifdef CONFIG_DTS
474#ifdef CONFIG_DTS_DECODER
475 register_avcodec(&dts_decoder);
476#endif //CONFIG_DTS_DECODER
477#endif
478#ifdef CONFIG_RA_144_DECODER
479 register_avcodec(&ra_144_decoder);
480#endif //CONFIG_RA_144_DECODER
481#ifdef CONFIG_RA_288_DECODER
482 register_avcodec(&ra_288_decoder);
483#endif //CONFIG_RA_288_DECODER
484#ifdef CONFIG_ROQ_DPCM_DECODER
485 register_avcodec(&roq_dpcm_decoder);
486#endif //CONFIG_ROQ_DPCM_DECODER
487#ifdef CONFIG_INTERPLAY_DPCM_DECODER
488 register_avcodec(&interplay_dpcm_decoder);
489#endif //CONFIG_INTERPLAY_DPCM_DECODER
490#ifdef CONFIG_XAN_DPCM_DECODER
491 register_avcodec(&xan_dpcm_decoder);
492#endif //CONFIG_XAN_DPCM_DECODER
493#ifdef CONFIG_SOL_DPCM_DECODER
494 register_avcodec(&sol_dpcm_decoder);
495#endif //CONFIG_SOL_DPCM_DECODER
496#ifdef CONFIG_QTRLE_DECODER
497 register_avcodec(&qtrle_decoder);
498#endif //CONFIG_QTRLE_DECODER
499#ifdef CONFIG_FLAC_DECODER
500 register_avcodec(&flac_decoder);
501#endif //CONFIG_FLAC_DECODER
502#ifdef CONFIG_SHORTEN_DECODER
503 register_avcodec(&shorten_decoder);
504#endif //CONFIG_SHORTEN_DECODER
505#ifdef CONFIG_ALAC_DECODER
506 register_avcodec(&alac_decoder);
507#endif //CONFIG_ALAC_DECODER
508#ifdef CONFIG_WS_SND1_DECODER
509 register_avcodec(&ws_snd1_decoder);
510#endif //CONFIG_WS_SND1_DECODER
511#ifdef CONFIG_VORBIS_DECODER
512 register_avcodec(&vorbis_decoder);
513#endif
514#ifdef CONFIG_LIBGSM
515 register_avcodec(&libgsm_decoder);
516#endif //CONFIG_LIBGSM
517#ifdef CONFIG_QDM2_DECODER
518 register_avcodec(&qdm2_decoder);
519#endif //CONFIG_QDM2_DECODER
520#ifdef CONFIG_COOK_DECODER
521 register_avcodec(&cook_decoder);
522#endif //CONFIG_COOK_DECODER
523#ifdef CONFIG_TRUESPEECH_DECODER
524 register_avcodec(&truespeech_decoder);
525#endif //CONFIG_TRUESPEECH_DECODER
526#ifdef CONFIG_TTA_DECODER
527 register_avcodec(&tta_decoder);
528#endif //CONFIG_TTA_DECODER
529#ifdef CONFIG_AVS_DECODER
530 register_avcodec(&avs_decoder);
531#endif //CONFIG_AVS_DECODER
532#ifdef CONFIG_CAVS_DECODER
533 register_avcodec(&cavs_decoder);
534#endif //CONFIG_CAVS_DECODER
535#ifdef CONFIG_RAWVIDEO_DECODER
536 register_avcodec(&rawvideo_decoder);
537#endif //CONFIG_RAWVIDEO_DECODER
538#ifdef CONFIG_FLASHSV_DECODER
539 register_avcodec(&flashsv_decoder);
540#endif //CONFIG_FLASHSV_DECODER
541#endif /* CONFIG_DECODERS */
542
543#if defined(AMR_NB) || defined(AMR_NB_FIXED)
544#ifdef CONFIG_AMR_NB_DECODER
545 register_avcodec(&amr_nb_decoder);
546#endif //CONFIG_AMR_NB_DECODER
547#ifdef CONFIG_ENCODERS
548#ifdef CONFIG_AMR_NB_ENCODER
549 register_avcodec(&amr_nb_encoder);
550#endif //CONFIG_AMR_NB_ENCODER
551#endif //CONFIG_ENCODERS
552#endif /* AMR_NB || AMR_NB_FIXED */
553
554#ifdef AMR_WB
555#ifdef CONFIG_AMR_WB_DECODER
556 register_avcodec(&amr_wb_decoder);
557#endif //CONFIG_AMR_WB_DECODER
558#ifdef CONFIG_ENCODERS
559#ifdef CONFIG_AMR_WB_ENCODER
560 register_avcodec(&amr_wb_encoder);
561#endif //CONFIG_AMR_WB_ENCODER
562#endif //CONFIG_ENCODERS
563#endif /* AMR_WB */
564
565#ifdef CONFIG_BMP_DECODER
566 register_avcodec(&bmp_decoder);
567#endif
568
569#if CONFIG_MMVIDEO_DECODER
570 register_avcodec(&mmvideo_decoder);
571#endif //CONFIG_MMVIDEO_DECODER
572
573 /* pcm codecs */
574#ifdef CONFIG_PCM_S32LE_DECODER
575 register_avcodec(&pcm_s32le_decoder);
576#endif
577#ifdef CONFIG_PCM_S32LE_ENCODER
578 register_avcodec(&pcm_s32le_encoder);
579#endif
580#ifdef CONFIG_PCM_S32BE_DECODER
581 register_avcodec(&pcm_s32be_decoder);
582#endif
583#ifdef CONFIG_PCM_S32BE_ENCODER
584 register_avcodec(&pcm_s32be_encoder);
585#endif
586#ifdef CONFIG_PCM_U32LE_DECODER
587 register_avcodec(&pcm_u32le_decoder);
588#endif
589#ifdef CONFIG_PCM_U32LE_ENCODER
590 register_avcodec(&pcm_u32le_encoder);
591#endif
592#ifdef CONFIG_PCM_U32BE_DECODER
593 register_avcodec(&pcm_u32be_decoder);
594#endif
595#ifdef CONFIG_PCM_U32BE_ENCODER
596 register_avcodec(&pcm_u32be_encoder);
597#endif
598#ifdef CONFIG_PCM_S24LE_DECODER
599 register_avcodec(&pcm_s24le_decoder);
600#endif
601#ifdef CONFIG_PCM_S24LE_ENCODER
602 register_avcodec(&pcm_s24le_encoder);
603#endif
604#ifdef CONFIG_PCM_S24BE_DECODER
605 register_avcodec(&pcm_s24be_decoder);
606#endif
607#ifdef CONFIG_PCM_S24BE_ENCODER
608 register_avcodec(&pcm_s24be_encoder);
609#endif
610#ifdef CONFIG_PCM_U24LE_DECODER
611 register_avcodec(&pcm_u24le_decoder);
612#endif
613#ifdef CONFIG_PCM_U24LE_ENCODER
614 register_avcodec(&pcm_u24le_encoder);
615#endif
616#ifdef CONFIG_PCM_U24BE_DECODER
617 register_avcodec(&pcm_u24be_decoder);
618#endif
619#ifdef CONFIG_PCM_U24BE_ENCODER
620 register_avcodec(&pcm_u24be_encoder);
621#endif
622#ifdef CONFIG_PCM_S24DAUD_DECODER
623 register_avcodec(&pcm_s24daud_decoder);
624#endif
625#ifdef CONFIG_PCM_S24DAUD_ENCODER
626 register_avcodec(&pcm_s24daud_encoder);
627#endif
628#ifdef CONFIG_PCM_S16LE_DECODER
629 register_avcodec(&pcm_s16le_decoder);
630#endif
631#ifdef CONFIG_PCM_S16LE_ENCODER
632 register_avcodec(&pcm_s16le_encoder);
633#endif
634#ifdef CONFIG_PCM_S16BE_DECODER
635 register_avcodec(&pcm_s16be_decoder);
636#endif
637#ifdef CONFIG_PCM_S16BE_ENCODER
638 register_avcodec(&pcm_s16be_encoder);
639#endif
640#ifdef CONFIG_PCM_U16LE_DECODER
641 register_avcodec(&pcm_u16le_decoder);
642#endif
643#ifdef CONFIG_PCM_U16LE_ENCODER
644 register_avcodec(&pcm_u16le_encoder);
645#endif
646#ifdef CONFIG_PCM_U16BE_DECODER
647 register_avcodec(&pcm_u16be_decoder);
648#endif
649#ifdef CONFIG_PCM_U16BE_ENCODER
650 register_avcodec(&pcm_u16be_encoder);
651#endif
652#ifdef CONFIG_PCM_S8_DECODER
653 register_avcodec(&pcm_s8_decoder);
654#endif
655#ifdef CONFIG_PCM_S8_ENCODER
656 register_avcodec(&pcm_s8_encoder);
657#endif
658#ifdef CONFIG_PCM_U8_DECODER
659 register_avcodec(&pcm_u8_decoder);
660#endif
661#ifdef CONFIG_PCM_U8_ENCODER
662 register_avcodec(&pcm_u8_encoder);
663#endif
664#ifdef CONFIG_PCM_ALAW_DECODER
665 register_avcodec(&pcm_alaw_decoder);
666#endif
667#ifdef CONFIG_PCM_ALAW_ENCODER
668 register_avcodec(&pcm_alaw_encoder);
669#endif
670#ifdef CONFIG_PCM_MULAW_DECODER
671 register_avcodec(&pcm_mulaw_decoder);
672#endif
673#ifdef CONFIG_PCM_MULAW_ENCODER
674 register_avcodec(&pcm_mulaw_encoder);
675#endif
676
677 /* adpcm codecs */
678#ifdef CONFIG_ADPCM_IMA_QT_DECODER
679 register_avcodec(&adpcm_ima_qt_decoder);
680#endif
681#ifdef CONFIG_ADPCM_IMA_QT_ENCODER
682 register_avcodec(&adpcm_ima_qt_encoder);
683#endif
684#ifdef CONFIG_ADPCM_IMA_WAV_DECODER
685 register_avcodec(&adpcm_ima_wav_decoder);
686#endif
687#ifdef CONFIG_ADPCM_IMA_WAV_ENCODER
688 register_avcodec(&adpcm_ima_wav_encoder);
689#endif
690#ifdef CONFIG_ADPCM_IMA_DK3_DECODER
691 register_avcodec(&adpcm_ima_dk3_decoder);
692#endif
693#ifdef CONFIG_ADPCM_IMA_DK3_ENCODER
694 register_avcodec(&adpcm_ima_dk3_encoder);
695#endif
696#ifdef CONFIG_ADPCM_IMA_DK4_DECODER
697 register_avcodec(&adpcm_ima_dk4_decoder);
698#endif
699#ifdef CONFIG_ADPCM_IMA_DK4_ENCODER
700 register_avcodec(&adpcm_ima_dk4_encoder);
701#endif
702#ifdef CONFIG_ADPCM_IMA_WS_DECODER
703 register_avcodec(&adpcm_ima_ws_decoder);
704#endif
705#ifdef CONFIG_ADPCM_IMA_WS_ENCODER
706 register_avcodec(&adpcm_ima_ws_encoder);
707#endif
708#ifdef CONFIG_ADPCM_IMA_SMJPEG_DECODER
709 register_avcodec(&adpcm_ima_smjpeg_decoder);
710#endif
711#ifdef CONFIG_ADPCM_IMA_SMJPEG_ENCODER
712 register_avcodec(&adpcm_ima_smjpeg_encoder);
713#endif
714#ifdef CONFIG_ADPCM_MS_DECODER
715 register_avcodec(&adpcm_ms_decoder);
716#endif
717#ifdef CONFIG_ADPCM_MS_ENCODER
718 register_avcodec(&adpcm_ms_encoder);
719#endif
720#ifdef CONFIG_ADPCM_4XM_DECODER
721 register_avcodec(&adpcm_4xm_decoder);
722#endif
723#ifdef CONFIG_ADPCM_4XM_ENCODER
724 register_avcodec(&adpcm_4xm_encoder);
725#endif
726#ifdef CONFIG_ADPCM_XA_DECODER
727 register_avcodec(&adpcm_xa_decoder);
728#endif
729#ifdef CONFIG_ADPCM_XA_ENCODER
730 register_avcodec(&adpcm_xa_encoder);
731#endif
732#ifdef CONFIG_ADPCM_ADX_DECODER
733 register_avcodec(&adpcm_adx_decoder);
734#endif
735#ifdef CONFIG_ADPCM_ADX_ENCODER
736 register_avcodec(&adpcm_adx_encoder);
737#endif
738#ifdef CONFIG_ADPCM_EA_DECODER
739 register_avcodec(&adpcm_ea_decoder);
740#endif
741#ifdef CONFIG_ADPCM_EA_ENCODER
742 register_avcodec(&adpcm_ea_encoder);
743#endif
744#ifdef CONFIG_ADPCM_G726_DECODER
745 register_avcodec(&adpcm_g726_decoder);
746#endif
747#ifdef CONFIG_ADPCM_G726_ENCODER
748 register_avcodec(&adpcm_g726_encoder);
749#endif
750#ifdef CONFIG_ADPCM_CT_DECODER
751 register_avcodec(&adpcm_ct_decoder);
752#endif
753#ifdef CONFIG_ADPCM_CT_ENCODER
754 register_avcodec(&adpcm_ct_encoder);
755#endif
756#ifdef CONFIG_ADPCM_SWF_DECODER
757 register_avcodec(&adpcm_swf_decoder);
758#endif
759#ifdef CONFIG_ADPCM_SWF_ENCODER
760 register_avcodec(&adpcm_swf_encoder);
761#endif
762#ifdef CONFIG_ADPCM_YAMAHA_DECODER
763 register_avcodec(&adpcm_yamaha_decoder);
764#endif
765#ifdef CONFIG_ADPCM_YAMAHA_ENCODER
766 register_avcodec(&adpcm_yamaha_encoder);
767#endif
768#ifdef CONFIG_ADPCM_SBPRO_4_DECODER
769 register_avcodec(&adpcm_sbpro_4_decoder);
770#endif
771#ifdef CONFIG_ADPCM_SBPRO_4_ENCODER
772 register_avcodec(&adpcm_sbpro_4_encoder);
773#endif
774#ifdef CONFIG_ADPCM_SBPRO_3_DECODER
775 register_avcodec(&adpcm_sbpro_3_decoder);
776#endif
777#ifdef CONFIG_ADPCM_SBPRO_3_ENCODER
778 register_avcodec(&adpcm_sbpro_3_encoder);
779#endif
780#ifdef CONFIG_ADPCM_SBPRO_2_DECODER
781 register_avcodec(&adpcm_sbpro_2_decoder);
782#endif
783#ifdef CONFIG_ADPCM_SBPRO_2_ENCODER
784 register_avcodec(&adpcm_sbpro_2_encoder);
785#endif
786
787 /* subtitles */
788#ifdef CONFIG_DVDSUB_DECODER
789 register_avcodec(&dvdsub_decoder);
790#endif
791#ifdef CONFIG_DVDSUB_ENCODER
792 register_avcodec(&dvdsub_encoder);
793#endif
794
795#ifdef CONFIG_DVBSUB_DECODER
796 register_avcodec(&dvbsub_decoder);
797#endif
798#ifdef CONFIG_DVBSUB_ENCODER
799 register_avcodec(&dvbsub_encoder);
800#endif
801
802 /* parsers */
803#ifdef CONFIG_MPEGVIDEO_PARSER
804 av_register_codec_parser(&mpegvideo_parser);
805#endif
806#ifdef CONFIG_MPEG4VIDEO_PARSER
807 av_register_codec_parser(&mpeg4video_parser);
808#endif
809#ifdef CONFIG_CAVSVIDEO_PARSER
810 av_register_codec_parser(&cavsvideo_parser);
811#endif
812#ifdef CONFIG_H261_PARSER
813 av_register_codec_parser(&h261_parser);
814#endif
815#ifdef CONFIG_H263_PARSER
816 av_register_codec_parser(&h263_parser);
817#endif
818#ifdef CONFIG_H264_PARSER
819 av_register_codec_parser(&h264_parser);
820#endif
821#ifdef CONFIG_MJPEG_PARSER
822 av_register_codec_parser(&mjpeg_parser);
823#endif
824#ifdef CONFIG_PNM_PARSER
825 av_register_codec_parser(&pnm_parser);
826#endif
827#ifdef CONFIG_MPEGAUDIO_PARSER
828 av_register_codec_parser(&mpegaudio_parser);
829#endif
830#ifdef CONFIG_AC3_PARSER
831 av_register_codec_parser(&ac3_parser);
832#endif
833#ifdef CONFIG_DVDSUB_PARSER
834 av_register_codec_parser(&dvdsub_parser);
835#endif
836#ifdef CONFIG_DVBSUB_PARSER
837 av_register_codec_parser(&dvbsub_parser);
838#endif
839#ifdef CONFIG_AAC_PARSER
840 av_register_codec_parser(&aac_parser);
841#endif
842
843 av_register_bitstream_filter(&dump_extradata_bsf);
844 av_register_bitstream_filter(&remove_extradata_bsf);
845 av_register_bitstream_filter(&noise_bsf);
846}
847
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette