]> git.sesse.net Git - ffmpeg/blob - libavcodec/allcodecs.c
put codec registering in another file so that the user can install the codecs he...
[ffmpeg] / libavcodec / allcodecs.c
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 #include "avcodec.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  * simple call to register all the codecs. 
26  */
27 void avcodec_register_all(void)
28 {
29     static int inited = 0;
30     
31     if (inited != 0)
32         return;
33     inited = 1;
34
35     /* encoders */
36 #ifdef CONFIG_ENCODERS
37     register_avcodec(&ac3_encoder);
38     register_avcodec(&mp2_encoder);
39 #ifdef CONFIG_MP3LAME
40     register_avcodec(&mp3lame_encoder);
41 #endif
42     register_avcodec(&mpeg1video_encoder);
43     register_avcodec(&h263_encoder);
44     register_avcodec(&h263p_encoder);
45     register_avcodec(&rv10_encoder);
46     register_avcodec(&mjpeg_encoder);
47     register_avcodec(&mpeg4_encoder);
48     register_avcodec(&msmpeg4v1_encoder);
49     register_avcodec(&msmpeg4v2_encoder);
50     register_avcodec(&msmpeg4v3_encoder);
51 #endif /* CONFIG_ENCODERS */
52     register_avcodec(&rawvideo_codec);
53
54     /* decoders */
55 #ifdef CONFIG_DECODERS
56     register_avcodec(&h263_decoder);
57     register_avcodec(&mpeg4_decoder);
58     register_avcodec(&msmpeg4v1_decoder);
59     register_avcodec(&msmpeg4v2_decoder);
60     register_avcodec(&msmpeg4v3_decoder);
61     register_avcodec(&wmv1_decoder);
62     register_avcodec(&mpeg_decoder);
63     register_avcodec(&h263i_decoder);
64     register_avcodec(&rv10_decoder);
65     register_avcodec(&mjpeg_decoder);
66     register_avcodec(&mp2_decoder);
67     register_avcodec(&mp3_decoder);
68 #ifdef CONFIG_AC3
69     register_avcodec(&ac3_decoder);
70 #endif
71 #endif /* CONFIG_DECODERS */
72
73     /* pcm codecs */
74
75 #define PCM_CODEC(id, name) \
76     register_avcodec(& name ## _encoder); \
77     register_avcodec(& name ## _decoder); \
78
79 PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le);
80 PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be);
81 PCM_CODEC(CODEC_ID_PCM_U16LE, pcm_u16le);
82 PCM_CODEC(CODEC_ID_PCM_U16BE, pcm_u16be);
83 PCM_CODEC(CODEC_ID_PCM_S8, pcm_s8);
84 PCM_CODEC(CODEC_ID_PCM_U8, pcm_u8);
85 PCM_CODEC(CODEC_ID_PCM_ALAW, pcm_alaw);
86 PCM_CODEC(CODEC_ID_PCM_MULAW, pcm_mulaw);
87
88 #undef PCM_CODEC
89 }
90