author | antonc27 <antonc27@mail.ru> |
Wed, 14 Oct 2015 21:25:49 +0200 | |
branch | ios-revival |
changeset 11210 | 2e80c9861818 |
parent 7813 | 7ac83d79b897 |
permissions | -rw-r--r-- |
7813
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
1 |
/* |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
2 |
* This file is part of Libav. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
3 |
* |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
4 |
* Libav is free software; you can redistribute it and/or |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
5 |
* modify it under the terms of the GNU Lesser General Public |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
6 |
* License as published by the Free Software Foundation; either |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
7 |
* version 2.1 of the License, or (at your option) any later version. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
8 |
* |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
9 |
* Libav is distributed in the hope that it will be useful, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
12 |
* Lesser General Public License for more details. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
13 |
* |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU Lesser General Public |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
15 |
* License along with Libav; if not, write to the Free Software |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
17 |
*/ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
18 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
19 |
#ifndef AVCODEC_OLD_CODEC_IDS_H |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
20 |
#define AVCODEC_OLD_CODEC_IDS_H |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
21 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
22 |
/* |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
23 |
* This header exists to prevent new codec IDs from being accidentally added to |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
24 |
* the deprecated list. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
25 |
* Do not include it directly. It will be removed on next major bump |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
26 |
* |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
27 |
* Do not add new items to this list. Use the AVCodecID enum instead. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
28 |
*/ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
29 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
30 |
CODEC_ID_NONE = AV_CODEC_ID_NONE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
31 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
32 |
/* video codecs */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
33 |
CODEC_ID_MPEG1VIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
34 |
CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
35 |
CODEC_ID_MPEG2VIDEO_XVMC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
36 |
CODEC_ID_H261, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
37 |
CODEC_ID_H263, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
38 |
CODEC_ID_RV10, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
39 |
CODEC_ID_RV20, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
40 |
CODEC_ID_MJPEG, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
41 |
CODEC_ID_MJPEGB, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
42 |
CODEC_ID_LJPEG, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
43 |
CODEC_ID_SP5X, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
44 |
CODEC_ID_JPEGLS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
45 |
CODEC_ID_MPEG4, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
46 |
CODEC_ID_RAWVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
47 |
CODEC_ID_MSMPEG4V1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
48 |
CODEC_ID_MSMPEG4V2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
49 |
CODEC_ID_MSMPEG4V3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
50 |
CODEC_ID_WMV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
51 |
CODEC_ID_WMV2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
52 |
CODEC_ID_H263P, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
53 |
CODEC_ID_H263I, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
54 |
CODEC_ID_FLV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
55 |
CODEC_ID_SVQ1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
56 |
CODEC_ID_SVQ3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
57 |
CODEC_ID_DVVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
58 |
CODEC_ID_HUFFYUV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
59 |
CODEC_ID_CYUV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
60 |
CODEC_ID_H264, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
61 |
CODEC_ID_INDEO3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
62 |
CODEC_ID_VP3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
63 |
CODEC_ID_THEORA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
64 |
CODEC_ID_ASV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
65 |
CODEC_ID_ASV2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
66 |
CODEC_ID_FFV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
67 |
CODEC_ID_4XM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
68 |
CODEC_ID_VCR1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
69 |
CODEC_ID_CLJR, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
70 |
CODEC_ID_MDEC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
71 |
CODEC_ID_ROQ, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
72 |
CODEC_ID_INTERPLAY_VIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
73 |
CODEC_ID_XAN_WC3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
74 |
CODEC_ID_XAN_WC4, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
75 |
CODEC_ID_RPZA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
76 |
CODEC_ID_CINEPAK, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
77 |
CODEC_ID_WS_VQA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
78 |
CODEC_ID_MSRLE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
79 |
CODEC_ID_MSVIDEO1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
80 |
CODEC_ID_IDCIN, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
81 |
CODEC_ID_8BPS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
82 |
CODEC_ID_SMC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
83 |
CODEC_ID_FLIC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
84 |
CODEC_ID_TRUEMOTION1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
85 |
CODEC_ID_VMDVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
86 |
CODEC_ID_MSZH, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
87 |
CODEC_ID_ZLIB, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
88 |
CODEC_ID_QTRLE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
89 |
CODEC_ID_SNOW, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
90 |
CODEC_ID_TSCC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
91 |
CODEC_ID_ULTI, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
92 |
CODEC_ID_QDRAW, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
93 |
CODEC_ID_VIXL, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
94 |
CODEC_ID_QPEG, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
95 |
CODEC_ID_PNG, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
96 |
CODEC_ID_PPM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
97 |
CODEC_ID_PBM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
98 |
CODEC_ID_PGM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
99 |
CODEC_ID_PGMYUV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
100 |
CODEC_ID_PAM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
101 |
CODEC_ID_FFVHUFF, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
102 |
CODEC_ID_RV30, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
103 |
CODEC_ID_RV40, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
104 |
CODEC_ID_VC1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
105 |
CODEC_ID_WMV3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
106 |
CODEC_ID_LOCO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
107 |
CODEC_ID_WNV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
108 |
CODEC_ID_AASC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
109 |
CODEC_ID_INDEO2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
110 |
CODEC_ID_FRAPS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
111 |
CODEC_ID_TRUEMOTION2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
112 |
CODEC_ID_BMP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
113 |
CODEC_ID_CSCD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
114 |
CODEC_ID_MMVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
115 |
CODEC_ID_ZMBV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
116 |
CODEC_ID_AVS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
117 |
CODEC_ID_SMACKVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
118 |
CODEC_ID_NUV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
119 |
CODEC_ID_KMVC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
120 |
CODEC_ID_FLASHSV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
121 |
CODEC_ID_CAVS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
122 |
CODEC_ID_JPEG2000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
123 |
CODEC_ID_VMNC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
124 |
CODEC_ID_VP5, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
125 |
CODEC_ID_VP6, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
126 |
CODEC_ID_VP6F, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
127 |
CODEC_ID_TARGA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
128 |
CODEC_ID_DSICINVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
129 |
CODEC_ID_TIERTEXSEQVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
130 |
CODEC_ID_TIFF, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
131 |
CODEC_ID_GIF, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
132 |
CODEC_ID_DXA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
133 |
CODEC_ID_DNXHD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
134 |
CODEC_ID_THP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
135 |
CODEC_ID_SGI, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
136 |
CODEC_ID_C93, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
137 |
CODEC_ID_BETHSOFTVID, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
138 |
CODEC_ID_PTX, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
139 |
CODEC_ID_TXD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
140 |
CODEC_ID_VP6A, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
141 |
CODEC_ID_AMV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
142 |
CODEC_ID_VB, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
143 |
CODEC_ID_PCX, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
144 |
CODEC_ID_SUNRAST, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
145 |
CODEC_ID_INDEO4, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
146 |
CODEC_ID_INDEO5, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
147 |
CODEC_ID_MIMIC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
148 |
CODEC_ID_RL2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
149 |
CODEC_ID_ESCAPE124, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
150 |
CODEC_ID_DIRAC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
151 |
CODEC_ID_BFI, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
152 |
CODEC_ID_CMV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
153 |
CODEC_ID_MOTIONPIXELS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
154 |
CODEC_ID_TGV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
155 |
CODEC_ID_TGQ, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
156 |
CODEC_ID_TQI, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
157 |
CODEC_ID_AURA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
158 |
CODEC_ID_AURA2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
159 |
CODEC_ID_V210X, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
160 |
CODEC_ID_TMV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
161 |
CODEC_ID_V210, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
162 |
CODEC_ID_DPX, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
163 |
CODEC_ID_MAD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
164 |
CODEC_ID_FRWU, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
165 |
CODEC_ID_FLASHSV2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
166 |
CODEC_ID_CDGRAPHICS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
167 |
CODEC_ID_R210, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
168 |
CODEC_ID_ANM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
169 |
CODEC_ID_BINKVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
170 |
CODEC_ID_IFF_ILBM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
171 |
CODEC_ID_IFF_BYTERUN1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
172 |
CODEC_ID_KGV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
173 |
CODEC_ID_YOP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
174 |
CODEC_ID_VP8, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
175 |
CODEC_ID_PICTOR, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
176 |
CODEC_ID_ANSI, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
177 |
CODEC_ID_A64_MULTI, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
178 |
CODEC_ID_A64_MULTI5, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
179 |
CODEC_ID_R10K, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
180 |
CODEC_ID_MXPEG, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
181 |
CODEC_ID_LAGARITH, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
182 |
CODEC_ID_PRORES, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
183 |
CODEC_ID_JV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
184 |
CODEC_ID_DFA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
185 |
CODEC_ID_WMV3IMAGE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
186 |
CODEC_ID_VC1IMAGE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
187 |
CODEC_ID_UTVIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
188 |
CODEC_ID_BMV_VIDEO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
189 |
CODEC_ID_VBLE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
190 |
CODEC_ID_DXTORY, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
191 |
CODEC_ID_V410, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
192 |
CODEC_ID_XWD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
193 |
CODEC_ID_CDXL, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
194 |
CODEC_ID_XBM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
195 |
CODEC_ID_ZEROCODEC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
196 |
CODEC_ID_MSS1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
197 |
CODEC_ID_MSA1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
198 |
CODEC_ID_TSCC2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
199 |
CODEC_ID_MTS2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
200 |
CODEC_ID_CLLC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
201 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
202 |
/* various PCM "codecs" */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
203 |
CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
204 |
CODEC_ID_PCM_S16LE = 0x10000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
205 |
CODEC_ID_PCM_S16BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
206 |
CODEC_ID_PCM_U16LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
207 |
CODEC_ID_PCM_U16BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
208 |
CODEC_ID_PCM_S8, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
209 |
CODEC_ID_PCM_U8, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
210 |
CODEC_ID_PCM_MULAW, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
211 |
CODEC_ID_PCM_ALAW, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
212 |
CODEC_ID_PCM_S32LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
213 |
CODEC_ID_PCM_S32BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
214 |
CODEC_ID_PCM_U32LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
215 |
CODEC_ID_PCM_U32BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
216 |
CODEC_ID_PCM_S24LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
217 |
CODEC_ID_PCM_S24BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
218 |
CODEC_ID_PCM_U24LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
219 |
CODEC_ID_PCM_U24BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
220 |
CODEC_ID_PCM_S24DAUD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
221 |
CODEC_ID_PCM_ZORK, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
222 |
CODEC_ID_PCM_S16LE_PLANAR, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
223 |
CODEC_ID_PCM_DVD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
224 |
CODEC_ID_PCM_F32BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
225 |
CODEC_ID_PCM_F32LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
226 |
CODEC_ID_PCM_F64BE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
227 |
CODEC_ID_PCM_F64LE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
228 |
CODEC_ID_PCM_BLURAY, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
229 |
CODEC_ID_PCM_LXF, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
230 |
CODEC_ID_S302M, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
231 |
CODEC_ID_PCM_S8_PLANAR, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
232 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
233 |
/* various ADPCM codecs */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
234 |
CODEC_ID_ADPCM_IMA_QT = 0x11000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
235 |
CODEC_ID_ADPCM_IMA_WAV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
236 |
CODEC_ID_ADPCM_IMA_DK3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
237 |
CODEC_ID_ADPCM_IMA_DK4, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
238 |
CODEC_ID_ADPCM_IMA_WS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
239 |
CODEC_ID_ADPCM_IMA_SMJPEG, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
240 |
CODEC_ID_ADPCM_MS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
241 |
CODEC_ID_ADPCM_4XM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
242 |
CODEC_ID_ADPCM_XA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
243 |
CODEC_ID_ADPCM_ADX, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
244 |
CODEC_ID_ADPCM_EA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
245 |
CODEC_ID_ADPCM_G726, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
246 |
CODEC_ID_ADPCM_CT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
247 |
CODEC_ID_ADPCM_SWF, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
248 |
CODEC_ID_ADPCM_YAMAHA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
249 |
CODEC_ID_ADPCM_SBPRO_4, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
250 |
CODEC_ID_ADPCM_SBPRO_3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
251 |
CODEC_ID_ADPCM_SBPRO_2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
252 |
CODEC_ID_ADPCM_THP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
253 |
CODEC_ID_ADPCM_IMA_AMV, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
254 |
CODEC_ID_ADPCM_EA_R1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
255 |
CODEC_ID_ADPCM_EA_R3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
256 |
CODEC_ID_ADPCM_EA_R2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
257 |
CODEC_ID_ADPCM_IMA_EA_SEAD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
258 |
CODEC_ID_ADPCM_IMA_EA_EACS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
259 |
CODEC_ID_ADPCM_EA_XAS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
260 |
CODEC_ID_ADPCM_EA_MAXIS_XA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
261 |
CODEC_ID_ADPCM_IMA_ISS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
262 |
CODEC_ID_ADPCM_G722, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
263 |
CODEC_ID_ADPCM_IMA_APC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
264 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
265 |
/* AMR */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
266 |
CODEC_ID_AMR_NB = 0x12000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
267 |
CODEC_ID_AMR_WB, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
268 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
269 |
/* RealAudio codecs*/ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
270 |
CODEC_ID_RA_144 = 0x13000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
271 |
CODEC_ID_RA_288, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
272 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
273 |
/* various DPCM codecs */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
274 |
CODEC_ID_ROQ_DPCM = 0x14000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
275 |
CODEC_ID_INTERPLAY_DPCM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
276 |
CODEC_ID_XAN_DPCM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
277 |
CODEC_ID_SOL_DPCM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
278 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
279 |
/* audio codecs */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
280 |
CODEC_ID_MP2 = 0x15000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
281 |
CODEC_ID_MP3, ///< preferred ID for decoding MPEG audio layer 1, 2 or 3 |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
282 |
CODEC_ID_AAC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
283 |
CODEC_ID_AC3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
284 |
CODEC_ID_DTS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
285 |
CODEC_ID_VORBIS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
286 |
CODEC_ID_DVAUDIO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
287 |
CODEC_ID_WMAV1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
288 |
CODEC_ID_WMAV2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
289 |
CODEC_ID_MACE3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
290 |
CODEC_ID_MACE6, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
291 |
CODEC_ID_VMDAUDIO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
292 |
CODEC_ID_FLAC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
293 |
CODEC_ID_MP3ADU, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
294 |
CODEC_ID_MP3ON4, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
295 |
CODEC_ID_SHORTEN, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
296 |
CODEC_ID_ALAC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
297 |
CODEC_ID_WESTWOOD_SND1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
298 |
CODEC_ID_GSM, ///< as in Berlin toast format |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
299 |
CODEC_ID_QDM2, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
300 |
CODEC_ID_COOK, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
301 |
CODEC_ID_TRUESPEECH, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
302 |
CODEC_ID_TTA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
303 |
CODEC_ID_SMACKAUDIO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
304 |
CODEC_ID_QCELP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
305 |
CODEC_ID_WAVPACK, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
306 |
CODEC_ID_DSICINAUDIO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
307 |
CODEC_ID_IMC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
308 |
CODEC_ID_MUSEPACK7, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
309 |
CODEC_ID_MLP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
310 |
CODEC_ID_GSM_MS, /* as found in WAV */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
311 |
CODEC_ID_ATRAC3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
312 |
CODEC_ID_VOXWARE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
313 |
CODEC_ID_APE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
314 |
CODEC_ID_NELLYMOSER, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
315 |
CODEC_ID_MUSEPACK8, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
316 |
CODEC_ID_SPEEX, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
317 |
CODEC_ID_WMAVOICE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
318 |
CODEC_ID_WMAPRO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
319 |
CODEC_ID_WMALOSSLESS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
320 |
CODEC_ID_ATRAC3P, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
321 |
CODEC_ID_EAC3, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
322 |
CODEC_ID_SIPR, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
323 |
CODEC_ID_MP1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
324 |
CODEC_ID_TWINVQ, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
325 |
CODEC_ID_TRUEHD, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
326 |
CODEC_ID_MP4ALS, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
327 |
CODEC_ID_ATRAC1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
328 |
CODEC_ID_BINKAUDIO_RDFT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
329 |
CODEC_ID_BINKAUDIO_DCT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
330 |
CODEC_ID_AAC_LATM, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
331 |
CODEC_ID_QDMC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
332 |
CODEC_ID_CELT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
333 |
CODEC_ID_G723_1, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
334 |
CODEC_ID_G729, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
335 |
CODEC_ID_8SVX_EXP, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
336 |
CODEC_ID_8SVX_FIB, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
337 |
CODEC_ID_BMV_AUDIO, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
338 |
CODEC_ID_RALF, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
339 |
CODEC_ID_IAC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
340 |
CODEC_ID_ILBC, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
341 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
342 |
/* subtitle codecs */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
343 |
CODEC_ID_FIRST_SUBTITLE = 0x17000, ///< A dummy ID pointing at the start of subtitle codecs. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
344 |
CODEC_ID_DVD_SUBTITLE = 0x17000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
345 |
CODEC_ID_DVB_SUBTITLE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
346 |
CODEC_ID_TEXT, ///< raw UTF-8 text |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
347 |
CODEC_ID_XSUB, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
348 |
CODEC_ID_SSA, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
349 |
CODEC_ID_MOV_TEXT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
350 |
CODEC_ID_HDMV_PGS_SUBTITLE, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
351 |
CODEC_ID_DVB_TELETEXT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
352 |
CODEC_ID_SRT, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
353 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
354 |
/* other specific kind of codecs (generally used for attachments) */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
355 |
CODEC_ID_FIRST_UNKNOWN = 0x18000, ///< A dummy ID pointing at the start of various fake codecs. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
356 |
CODEC_ID_TTF = 0x18000, |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
357 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
358 |
CODEC_ID_PROBE = 0x19000, ///< codec_id is not known (like CODEC_ID_NONE) but lavf should attempt to identify it |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
359 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
360 |
CODEC_ID_MPEG2TS = 0x20000, /**< _FAKE_ codec to indicate a raw MPEG-2 TS |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
361 |
* stream (only used by libavformat) */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
362 |
CODEC_ID_MPEG4SYSTEMS = 0x20001, /**< _FAKE_ codec to indicate a MPEG-4 Systems |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
363 |
* stream (only used by libavformat) */ |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
364 |
CODEC_ID_FFMETADATA = 0x21000, ///< Dummy codec for streams containing only metadata information. |
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
365 |
|
7ac83d79b897
support video recording on windows with automation and headers
koda
parents:
diff
changeset
|
366 |
#endif /* AVCODEC_OLD_CODEC_IDS_H */ |