Mercurial > libavcodec.hg
annotate allcodecs.c @ 5443:40c87c0f754b libavcodec
exchange for() and if() order in the MT_FRAME case
safes 24 cpu cycles
author | michael |
---|---|
date | Wed, 01 Aug 2007 21:05:58 +0000 |
parents | ad384eda0cb7 |
children | 447409d8770f |
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 /* |
4550 | 2 * Provides registration of all codecs, parsers and bitstream filters for libavcodec. |
491
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 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3914
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3914
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3914
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
8 * 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
|
9 * License as published by the Free Software Foundation; either |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3914
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3914
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
13 * 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
|
14 * 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
|
15 * 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
|
16 * |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3914
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
3030
diff
changeset
|
19 * 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
|
20 */ |
1106 | 21 |
22 /** | |
23 * @file allcodecs.c | |
4550 | 24 * Provides registration of all codecs, parsers and bitstream filters for libavcodec. |
1106 | 25 */ |
26 | |
5124
5f9cbdd466fe
move codecs declarations from avcodec.h to allcodecs.h
aurel
parents:
5103
diff
changeset
|
27 #include "allcodecs.h" |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
28 |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
29 #define REGISTER_ENCODER(X,x) \ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
30 if(ENABLE_##X##_ENCODER) register_avcodec(&x##_encoder) |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
31 #define REGISTER_DECODER(X,x) \ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
32 if(ENABLE_##X##_DECODER) register_avcodec(&x##_decoder) |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
33 #define REGISTER_ENCDEC(X,x) REGISTER_ENCODER(X,x); REGISTER_DECODER(X,x) |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
34 |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
35 #define REGISTER_PARSER(X,x) \ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
36 if(ENABLE_##X##_PARSER) av_register_codec_parser(&x##_parser) |
4994
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
37 #define REGISTER_BSF(X,x) \ |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
38 if(ENABLE_##X##_BSF) av_register_bitstream_filter(&x##_bsf) |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
39 |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
40 /** |
4550 | 41 * Register all the codecs, parsers and bitstream filters which were enabled at |
42 * configuration time. If you do not call this function you can select exactly | |
43 * which formats you want to support, by using the individual registration | |
44 * functions. | |
45 * | |
46 * @see register_avcodec | |
47 * @see av_register_codec_parser | |
48 * @see av_register_bitstream_filter | |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
49 */ |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
50 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
|
51 { |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
52 static int inited = 0; |
2967 | 53 |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
54 if (inited != 0) |
2979 | 55 return; |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
56 inited = 1; |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
57 |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
58 /* video codecs */ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
59 REGISTER_DECODER(AASC, aasc); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
60 REGISTER_ENCDEC (ASV1, asv1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
61 REGISTER_ENCDEC (ASV2, asv2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
62 REGISTER_DECODER(AVS, avs); |
4803 | 63 REGISTER_DECODER(BETHSOFTVID, bethsoftvid); |
4477
87e943798698
BMP encoder by Michel Bardiaux, mbardiaux mediaxim be
diego
parents:
4465
diff
changeset
|
64 REGISTER_ENCDEC (BMP, bmp); |
4797 | 65 REGISTER_DECODER(C93, c93); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
66 REGISTER_DECODER(CAVS, cavs); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
67 REGISTER_DECODER(CINEPAK, cinepak); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
68 REGISTER_DECODER(CLJR, cljr); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
69 REGISTER_DECODER(CSCD, cscd); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
70 REGISTER_DECODER(CYUV, cyuv); |
4687 | 71 REGISTER_DECODER(DNXHD, dnxhd); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
72 REGISTER_DECODER(DSICINVIDEO, dsicinvideo); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
73 REGISTER_ENCDEC (DVVIDEO, dvvideo); |
4671 | 74 REGISTER_DECODER(DXA, dxa); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
75 REGISTER_DECODER(EIGHTBPS, eightbps); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
76 REGISTER_ENCDEC (FFV1, ffv1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
77 REGISTER_ENCDEC (FFVHUFF, ffvhuff); |
4374 | 78 REGISTER_ENCDEC (FLASHSV, flashsv); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
79 REGISTER_DECODER(FLIC, flic); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
80 REGISTER_ENCDEC (FLV, flv); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
81 REGISTER_DECODER(FOURXM, fourxm); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
82 REGISTER_DECODER(FRAPS, fraps); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
83 REGISTER_ENCDEC (GIF, gif); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
84 REGISTER_ENCDEC (H261, h261); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
85 REGISTER_ENCDEC (H263, h263); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
86 REGISTER_DECODER(H263I, h263i); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
87 REGISTER_ENCODER(H263P, h263p); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
88 REGISTER_DECODER(H264, h264); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
89 REGISTER_ENCDEC (HUFFYUV, huffyuv); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
90 REGISTER_DECODER(IDCIN, idcin); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
91 REGISTER_DECODER(INDEO2, indeo2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
92 REGISTER_DECODER(INDEO3, indeo3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
93 REGISTER_DECODER(INTERPLAY_VIDEO, interplay_video); |
5041 | 94 REGISTER_ENCDEC (JPEGLS, jpegls); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
95 REGISTER_DECODER(KMVC, kmvc); |
5103
1deb3e53da27
Consistent naming and lib prefixes for x264, xvid and mp3lame within the code.
diego
parents:
5092
diff
changeset
|
96 REGISTER_ENCODER(LIBX264, libx264); |
1deb3e53da27
Consistent naming and lib prefixes for x264, xvid and mp3lame within the code.
diego
parents:
5092
diff
changeset
|
97 REGISTER_ENCODER(LIBXVID, libxvid); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
98 REGISTER_ENCODER(LJPEG, ljpeg); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
99 REGISTER_DECODER(LOCO, loco); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
100 REGISTER_DECODER(MDEC, mdec); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
101 REGISTER_ENCDEC (MJPEG, mjpeg); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
102 REGISTER_DECODER(MJPEGB, mjpegb); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
103 REGISTER_DECODER(MMVIDEO, mmvideo); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
104 REGISTER_DECODER(MPEG_XVMC, mpeg_xvmc); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
105 REGISTER_ENCDEC (MPEG1VIDEO, mpeg1video); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
106 REGISTER_ENCDEC (MPEG2VIDEO, mpeg2video); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
107 REGISTER_ENCDEC (MPEG4, mpeg4); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
108 REGISTER_DECODER(MPEGVIDEO, mpegvideo); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
109 REGISTER_ENCDEC (MSMPEG4V1, msmpeg4v1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
110 REGISTER_ENCDEC (MSMPEG4V2, msmpeg4v2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
111 REGISTER_ENCDEC (MSMPEG4V3, msmpeg4v3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
112 REGISTER_DECODER(MSRLE, msrle); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
113 REGISTER_DECODER(MSVIDEO1, msvideo1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
114 REGISTER_DECODER(MSZH, mszh); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
115 REGISTER_DECODER(NUV, nuv); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
116 REGISTER_ENCODER(PAM, pam); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
117 REGISTER_ENCODER(PBM, pbm); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
118 REGISTER_ENCODER(PGM, pgm); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
119 REGISTER_ENCODER(PGMYUV, pgmyuv); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
120 REGISTER_ENCDEC (PNG, png); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
121 REGISTER_ENCODER(PPM, ppm); |
4884 | 122 REGISTER_DECODER(PTX, ptx); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
123 REGISTER_DECODER(QDRAW, qdraw); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
124 REGISTER_DECODER(QPEG, qpeg); |
5195 | 125 REGISTER_ENCDEC (QTRLE, qtrle); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
126 REGISTER_ENCDEC (RAWVIDEO, rawvideo); |
5184 | 127 REGISTER_ENCDEC (ROQ, roq); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
128 REGISTER_DECODER(RPZA, rpza); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
129 REGISTER_ENCDEC (RV10, rv10); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
130 REGISTER_ENCDEC (RV20, rv20); |
4790 | 131 REGISTER_ENCDEC (SGI, sgi); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
132 REGISTER_DECODER(SMACKER, smacker); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
133 REGISTER_DECODER(SMC, smc); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
134 REGISTER_ENCDEC (SNOW, snow); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
135 REGISTER_DECODER(SP5X, sp5x); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
136 REGISTER_ENCDEC (SVQ1, svq1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
137 REGISTER_DECODER(SVQ3, svq3); |
4673 | 138 REGISTER_ENCDEC (TARGA, targa); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
139 REGISTER_DECODER(THEORA, theora); |
4761
4effe3bde31b
support for the THP game format by Marco Gerards, mgerards xs4all nl
diego
parents:
4687
diff
changeset
|
140 REGISTER_DECODER(THP, thp); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
141 REGISTER_DECODER(TIERTEXSEQVIDEO, tiertexseqvideo); |
4774
0860efc2f02b
tiff encoder by (Bartlomiej Wolowiec b.wolowiec students mimuw edu pl)
michael
parents:
4761
diff
changeset
|
142 REGISTER_ENCDEC (TIFF, tiff); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
143 REGISTER_DECODER(TRUEMOTION1, truemotion1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
144 REGISTER_DECODER(TRUEMOTION2, truemotion2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
145 REGISTER_DECODER(TSCC, tscc); |
4934 | 146 REGISTER_DECODER(TXD, txd); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
147 REGISTER_DECODER(ULTI, ulti); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
148 REGISTER_DECODER(VC1, vc1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
149 REGISTER_DECODER(VCR1, vcr1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
150 REGISTER_DECODER(VMDVIDEO, vmdvideo); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
151 REGISTER_DECODER(VMNC, vmnc); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
152 REGISTER_DECODER(VP3, vp3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
153 REGISTER_DECODER(VP5, vp5); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
154 REGISTER_DECODER(VP6, vp6); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
155 REGISTER_DECODER(VP6F, vp6f); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
156 REGISTER_DECODER(VQA, vqa); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
157 REGISTER_ENCDEC (WMV1, wmv1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
158 REGISTER_ENCDEC (WMV2, wmv2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
159 REGISTER_DECODER(WMV3, wmv3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
160 REGISTER_DECODER(WNV1, wnv1); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
161 REGISTER_DECODER(XAN_WC3, xan_wc3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
162 REGISTER_DECODER(XL, xl); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
163 REGISTER_ENCDEC (ZLIB, zlib); |
4286 | 164 REGISTER_ENCDEC (ZMBV, zmbv); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
165 |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
166 /* audio codecs */ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
167 REGISTER_DECODER(MPEG4AAC, mpeg4aac); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
168 REGISTER_ENCODER(AC3, ac3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
169 REGISTER_DECODER(ALAC, alac); |
4856 | 170 REGISTER_DECODER(ATRAC3, atrac3); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
171 REGISTER_DECODER(COOK, cook); |
4892
bfb1c49171b6
1000l to myself - DCA decoder should not be registered in video codecs section
kostya
parents:
4884
diff
changeset
|
172 REGISTER_DECODER(DCA, dca); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
173 REGISTER_DECODER(DSICINAUDIO, dsicinaudio); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
174 REGISTER_ENCDEC (FLAC, flac); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
175 REGISTER_DECODER(IMC, imc); |
4898
3df69e140c33
Give libamr decoders/encoders a lib prefix in the name.
diego
parents:
4897
diff
changeset
|
176 REGISTER_ENCDEC (LIBAMR_NB, libamr_nb); |
3df69e140c33
Give libamr decoders/encoders a lib prefix in the name.
diego
parents:
4897
diff
changeset
|
177 REGISTER_ENCDEC (LIBAMR_WB, libamr_wb); |
4513
3367310f8460
Rename ac3 decoder to liba52 to prepare for native decoder.
diego
parents:
4490
diff
changeset
|
178 REGISTER_DECODER(LIBA52, liba52); |
5091
160536e80ee6
Rename faac_encoder to libfaac_encoder for consistency and to be able to
diego
parents:
5041
diff
changeset
|
179 REGISTER_ENCODER(LIBFAAC, libfaac); |
5092
fd173be649b7
Rename aac_decoder to libfaad_decoder for consistency and to be able to
diego
parents:
5091
diff
changeset
|
180 REGISTER_DECODER(LIBFAAD, libfaad); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
181 REGISTER_ENCDEC (LIBGSM, libgsm); |
4551 | 182 REGISTER_ENCDEC (LIBGSM_MS, libgsm_ms); |
5103
1deb3e53da27
Consistent naming and lib prefixes for x264, xvid and mp3lame within the code.
diego
parents:
5092
diff
changeset
|
183 REGISTER_ENCODER(LIBMP3LAME, libmp3lame); |
4403 | 184 REGISTER_ENCODER(LIBTHEORA, libtheora); |
4901 | 185 if (!ENABLE_VORBIS_ENCODER) REGISTER_ENCODER(LIBVORBIS, libvorbis); |
186 if (!ENABLE_VORBIS_DECODER) REGISTER_DECODER(LIBVORBIS, libvorbis); | |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
187 REGISTER_DECODER(MACE3, mace3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
188 REGISTER_DECODER(MACE6, mace6); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
189 REGISTER_ENCDEC (MP2, mp2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
190 REGISTER_DECODER(MP3, mp3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
191 REGISTER_DECODER(MP3ADU, mp3adu); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
192 REGISTER_DECODER(MP3ON4, mp3on4); |
4328 | 193 REGISTER_DECODER(MPC7, mpc7); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
194 REGISTER_DECODER(QDM2, qdm2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
195 REGISTER_DECODER(RA_144, ra_144); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
196 REGISTER_DECODER(RA_288, ra_288); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
197 REGISTER_DECODER(SHORTEN, shorten); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
198 REGISTER_DECODER(SMACKAUD, smackaud); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
199 REGISTER_ENCDEC (SONIC, sonic); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
200 REGISTER_ENCODER(SONIC_LS, sonic_ls); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
201 REGISTER_DECODER(TRUESPEECH, truespeech); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
202 REGISTER_DECODER(TTA, tta); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
203 REGISTER_DECODER(VMDAUDIO, vmdaudio); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
204 REGISTER_ENCDEC (VORBIS, vorbis); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
205 REGISTER_DECODER(WAVPACK, wavpack); |
4490 | 206 REGISTER_ENCDEC(WMAV1, wmav1); |
207 REGISTER_ENCDEC(WMAV2, wmav2); | |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
208 REGISTER_DECODER(WS_SND1, ws_snd1); |
3119
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
209 |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
210 /* pcm codecs */ |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
211 REGISTER_ENCDEC (PCM_ALAW, pcm_alaw); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
212 REGISTER_ENCDEC (PCM_MULAW, pcm_mulaw); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
213 REGISTER_ENCDEC (PCM_S8, pcm_s8); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
214 REGISTER_ENCDEC (PCM_S16BE, pcm_s16be); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
215 REGISTER_ENCDEC (PCM_S16LE, pcm_s16le); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
216 REGISTER_ENCDEC (PCM_S24BE, pcm_s24be); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
217 REGISTER_ENCDEC (PCM_S24DAUD, pcm_s24daud); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
218 REGISTER_ENCDEC (PCM_S24LE, pcm_s24le); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
219 REGISTER_ENCDEC (PCM_S32BE, pcm_s32be); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
220 REGISTER_ENCDEC (PCM_S32LE, pcm_s32le); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
221 REGISTER_ENCDEC (PCM_U8, pcm_u8); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
222 REGISTER_ENCDEC (PCM_U16BE, pcm_u16be); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
223 REGISTER_ENCDEC (PCM_U16LE, pcm_u16le); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
224 REGISTER_ENCDEC (PCM_U24BE, pcm_u24be); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
225 REGISTER_ENCDEC (PCM_U24LE, pcm_u24le); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
226 REGISTER_ENCDEC (PCM_U32BE, pcm_u32be); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
227 REGISTER_ENCDEC (PCM_U32LE, pcm_u32le); |
5422 | 228 REGISTER_ENCDEC (PCM_ZORK , pcm_zork); |
1535 | 229 |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
230 /* dpcm codecs */ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
231 REGISTER_DECODER(INTERPLAY_DPCM, interplay_dpcm); |
4932 | 232 REGISTER_ENCDEC (ROQ_DPCM, roq_dpcm); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
233 REGISTER_DECODER(SOL_DPCM, sol_dpcm); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
234 REGISTER_DECODER(XAN_DPCM, xan_dpcm); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
235 |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
236 /* adpcm codecs */ |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
237 REGISTER_ENCDEC (ADPCM_4XM, adpcm_4xm); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
238 REGISTER_ENCDEC (ADPCM_ADX, adpcm_adx); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
239 REGISTER_ENCDEC (ADPCM_CT, adpcm_ct); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
240 REGISTER_ENCDEC (ADPCM_EA, adpcm_ea); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
241 REGISTER_ENCDEC (ADPCM_G726, adpcm_g726); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
242 REGISTER_ENCDEC (ADPCM_IMA_DK3, adpcm_ima_dk3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
243 REGISTER_ENCDEC (ADPCM_IMA_DK4, adpcm_ima_dk4); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
244 REGISTER_ENCDEC (ADPCM_IMA_QT, adpcm_ima_qt); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
245 REGISTER_ENCDEC (ADPCM_IMA_SMJPEG, adpcm_ima_smjpeg); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
246 REGISTER_ENCDEC (ADPCM_IMA_WAV, adpcm_ima_wav); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
247 REGISTER_ENCDEC (ADPCM_IMA_WS, adpcm_ima_ws); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
248 REGISTER_ENCDEC (ADPCM_MS, adpcm_ms); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
249 REGISTER_ENCDEC (ADPCM_SBPRO_2, adpcm_sbpro_2); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
250 REGISTER_ENCDEC (ADPCM_SBPRO_3, adpcm_sbpro_3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
251 REGISTER_ENCDEC (ADPCM_SBPRO_4, adpcm_sbpro_4); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
252 REGISTER_ENCDEC (ADPCM_SWF, adpcm_swf); |
4800 | 253 REGISTER_DECODER(ADPCM_THP, adpcm_thp); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
254 REGISTER_ENCDEC (ADPCM_XA, adpcm_xa); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
255 REGISTER_ENCDEC (ADPCM_YAMAHA, adpcm_yamaha); |
1613 | 256 |
2921
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
257 /* subtitles */ |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
258 REGISTER_ENCDEC (DVBSUB, dvbsub); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
259 REGISTER_ENCDEC (DVDSUB, dvdsub); |
2921
d22a3556292a
avoid the registration of DECODERS if only CONFIG_DECODERS is not defined.
gpoirier
parents:
2913
diff
changeset
|
260 |
4242 | 261 /* parsers */ |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
262 REGISTER_PARSER (AAC, aac); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
263 REGISTER_PARSER (AC3, ac3); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
264 REGISTER_PARSER (CAVSVIDEO, cavsvideo); |
4599 | 265 REGISTER_PARSER (DCA, dca); |
4244
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
266 REGISTER_PARSER (DVBSUB, dvbsub); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
267 REGISTER_PARSER (DVDSUB, dvdsub); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
268 REGISTER_PARSER (H261, h261); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
269 REGISTER_PARSER (H263, h263); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
270 REGISTER_PARSER (H264, h264); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
271 REGISTER_PARSER (MJPEG, mjpeg); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
272 REGISTER_PARSER (MPEG4VIDEO, mpeg4video); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
273 REGISTER_PARSER (MPEGAUDIO, mpegaudio); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
274 REGISTER_PARSER (MPEGVIDEO, mpegvideo); |
54b594d31ac1
cleanup the #ifdef mess in encoder/decoder/parser registration
aurel
parents:
4242
diff
changeset
|
275 REGISTER_PARSER (PNM, pnm); |
4465 | 276 REGISTER_PARSER (VC1, vc1); |
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
|
277 |
4994
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
278 /* bitstream filters */ |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
279 REGISTER_BSF (DUMP_EXTRADATA, dump_extradata); |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
280 REGISTER_BSF (REMOVE_EXTRADATA, remove_extradata); |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
281 REGISTER_BSF (NOISE, noise); |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
282 REGISTER_BSF (MP3_HEADER_COMPRESS, mp3_header_compress); |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
283 REGISTER_BSF (MP3_HEADER_DECOMPRESS, mp3_header_decompress); |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
284 REGISTER_BSF (MJPEGA_DUMP_HEADER, mjpega_dump_header); |
3fa689636240
allow to enable or disable every bitstream filters individually
aurel
parents:
4934
diff
changeset
|
285 REGISTER_BSF (IMX_DUMP_HEADER, imx_dump_header); |
491
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
286 } |
66d470d19feb
put codec registering in another file so that the user can install the codecs he wants
bellard
parents:
diff
changeset
|
287 |