OSDN Git Service

* NEWS: Add and adjust release notes for 4.0.
[mingw/mingw-org-wsl.git] / include / mmreg.h
1 /**
2  * @file mmreg.h
3  * Copyright 2012, 2013 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _MMREG_H
25 #define _MMREG_H
26 #pragma GCC system_header
27 #include <_mingw.h>
28
29 #include <mmsystem.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 /*--- DirectShow Reference - DirectShow Structures */
36 typedef struct mpeg1waveformat_tag {
37         WAVEFORMATEX wfx;
38         WORD fwHeadLayer;
39         DWORD dwHeadBitrate;
40         WORD fwHeadMode;
41         WORD fwHeadModeExt;
42         WORD wHeadEmphasis;
43         WORD fwHeadFlags;
44         DWORD dwPTSLow;
45         DWORD dwPTSHigh;
46 } MPEG1WAVEFORMAT;
47 #define ACM_MPEG_LAYER1 0x0001
48 #define ACM_MPEG_LAYER2 0x0002
49 #define ACM_MPEG_LAYER3 0x0004
50 #define ACM_MPEG_STEREO 0x0001
51 #define ACM_MPEG_JOINTSTEREO 0x0002
52 #define ACM_MPEG_DUALCHANNEL 0x0004
53 #define ACM_MPEG_SINGLECHANNEL 0x0008
54 #define ACM_MPEG_PRIVATEBIT 0x0001
55 #define ACM_MPEG_COPYRIGHT 0x0002
56 #define ACM_MPEG_ORIGINALHOME 0x0004
57 #define ACM_MPEG_PROTECTIONBIT 0x0008
58 #define ACM_MPEG_ID_MPEG1 0x0010
59 typedef struct {
60         WAVEFORMATEX Format;
61         union {
62                 WORD wValidBitsPerSample;
63                 WORD wSamplesPerBlock;
64                 WORD wReserved;
65         } Samples;
66         DWORD dwChannelMask; 
67         GUID SubFormat;
68 } WAVEFORMATEXTENSIBLE,*PWAVEFORMATEXTENSIBLE;
69 #define SPEAKER_FRONT_LEFT 0x1
70 #define SPEAKER_FRONT_RIGHT 0x2
71 #define SPEAKER_FRONT_CENTER 0x4
72 #define SPEAKER_LOW_FREQUENCY 0x8
73 #define SPEAKER_BACK_LEFT 0x10
74 #define SPEAKER_BACK_RIGHT 0x20
75 #define SPEAKER_FRONT_LEFT_OF_CENTER 0x40
76 #define SPEAKER_FRONT_RIGHT_OF_CENTER 0x80
77 #define SPEAKER_BACK_CENTER 0x100
78 #define SPEAKER_SIDE_LEFT 0x200
79 #define SPEAKER_SIDE_RIGHT 0x400
80 #define SPEAKER_TOP_CENTER 0x800
81 #define SPEAKER_TOP_FRONT_LEFT  0x1000
82 #define SPEAKER_TOP_FRONT_CENTER 0x2000
83 #define SPEAKER_TOP_FRONT_RIGHT 0x4000
84 #define SPEAKER_TOP_BACK_LEFT 0x8000
85 #define SPEAKER_TOP_BACK_CENTER 0x10000
86 #define SPEAKER_TOP_BACK_RIGHT 0x20000
87
88 /*msdn.microsoft.com/en-us/library/dd390710%28VS.85%29.aspx*/
89 typedef struct mpeglayer3waveformat_tag {
90   WAVEFORMATEX wfx;
91   WORD         wID;
92   DWORD        fdwFlags;
93   WORD         nBlockSize;
94   WORD         nFramesPerBlock;
95   WORD         nCodecDelay;
96 } MPEGLAYER3WAVEFORMAT, *LPMPEGLAYER3WAVEFORMAT;
97
98 /* http://www.ietf.org/rfc/rfc2361.txt */
99 #define WAVE_FORMAT_UNKNOWN                 0x0000
100 #define WAVE_FORMAT_PCM                     0x0001
101 #define WAVE_FORMAT_ADPCM                   0x0002
102 #define WAVE_FORMAT_IEEE_FLOAT              0x0003
103 #define WAVE_FORMAT_VSELP                   0x0004
104 #define WAVE_FORMAT_IBM_CVSD                0x0005
105 #define WAVE_FORMAT_ALAW                    0x0006
106 #define WAVE_FORMAT_MULAW                   0x0007
107
108 #define WAVE_FORMAT_OKI_ADPCM               0x0010
109 #define WAVE_FORMAT_DVI_ADPCM               0x0011
110 #define WAVE_FORMAT_MEDIASPACE_ADPCM        0x0012
111 #define WAVE_FORMAT_SIERRA_ADPCM            0x0013
112 #define WAVE_FORMAT_G723_ADPCM              0x0014
113 #define WAVE_FORMAT_DIGIFIX                 0x0016
114 #define WAVE_FORMAT_DIALOGIC_OKI_ADPCM      0x0017
115 #define WAVE_FORMAT_MEDIAVISION_ADPCM       0x0018
116 #define WAVE_FORMAT_CU_CODEC                0x0019
117 #define WAVE_FORMAT_YAMAHA_ADPCM            0x0020
118 #define WAVE_FORMAT_SONARC                  0x0021
119 #define WAVE_FORMAT_DSPGROUP_TRUESPEECH     0x0022
120 #define WAVE_FORMAT_ECHOSC1                 0x0023
121 #define WAVE_FORMAT_AUDIOFILE_AF36          0x0024
122 #define WAVE_FORMAT_APTX                    0x0025
123 #define WAVE_FORMAT_AUDIOFILE_AF10          0x0026
124 #define WAVE_FORMAT_PROSODY_1612            0x0027
125 #define WAVE_FORMAT_LRC                     0x0028
126
127 #define WAVE_FORMAT_DOLBY_AC2               0x0030
128 #define WAVE_FORMAT_GSM610                  0x0031
129 #define WAVE_FORMAT_MSNAUDIO                0x0032
130 #define WAVE_FORMAT_ANTEX_ADPCME            0x0033
131 #define WAVE_FORMAT_CONTROL_RES_VQLPC       0x0034
132 #define WAVE_FORMAT_DIGIREAL                0x0035
133 #define WAVE_FORMAT_DIGIADPCM               0x0036
134 #define WAVE_FORMAT_CONTROL_RES_CR10        0x0037
135 #define WAVE_FORMAT_NMS_VBXADPCM            0x0038
136 #define WAVE_FORMAT_ROLAND_RDAC             0x0039
137 #define WAVE_FORMAT_ECHOSC3                 0x003A
138 #define WAVE_FORMAT_ROCKWELL_ADPCM          0x003B
139 #define WAVE_FORMAT_ROCKWELL_DIGITALK       0x003C
140 #define WAVE_FORMAT_XEBEC                   0x003D
141
142 #define WAVE_FORMAT_G721_ADPCM              0x0040
143 #define WAVE_FORMAT_G728_CELP               0x0041
144 #define WAVE_FORMAT_MSG723                  0x0042
145
146 #define WAVE_FORMAT_MPEG                    0x0050
147
148 #define WAVE_FORMAT_RT24                    0x0052
149 #define WAVE_FORMAT_PAC                     0x0053
150
151 #define WAVE_FORMAT_MPEGLAYER3              0x0055
152
153 #define WAVE_FORMAT_LUCENT_G723             0x0059
154 #define WAVE_FORMAT_CIRRUS                  0x0060
155 #define WAVE_FORMAT_ESPCM                   0x0061
156 #define WAVE_FORMAT_VOXWARE                 0x0062
157 #define WAVE_FORMAT_CANOPUS_ATRAC           0x0063
158 #define WAVE_FORMAT_G726_ADPCM              0x0064
159 #define WAVE_FORMAT_G722_ADPCM              0x0065
160 #define WAVE_FORMAT_DSAT                    0x0066
161 #define WAVE_FORMAT_DSAT_DISPLAY            0x0067
162
163 #define WAVE_FORMAT_VOXWARE_BYTE_ALIGNED    0x0069
164 #define WAVE_FORMAT_VOXWARE_AC8             0x0070
165 #define WAVE_FORMAT_VOXWARE_AC10            0x0071
166 #define WAVE_FORMAT_VOXWARE_AC16            0x0072
167 #define WAVE_FORMAT_VOXWARE_AC20            0x0073
168 #define WAVE_FORMAT_VOXWARE_RT24            0x0074
169 #define WAVE_FORMAT_VOXWARE_RT29            0x0075
170 #define WAVE_FORMAT_VOXWARE_RT29HW          0x0076
171 #define WAVE_FORMAT_VOXWARE_VR12            0x0077
172 #define WAVE_FORMAT_VOXWARE_VR18            0x0078
173 #define WAVE_FORMAT_VOXWARE_TQ40            0x0079
174 #define WAVE_FORMAT_SOFTSOUND               0x0080
175 #define WAVE_FORMAT_VOXWARE_TQ60            0x0081
176 #define WAVE_FORMAT_MSRT24                  0x0082
177 #define WAVE_FORMAT_G729A                   0x0083
178 #define WAVE_FORMAT_MVI_MV12                0x0084
179 #define WAVE_FORMAT_DF_G726                 0x0085
180 #define WAVE_FORMAT_DF_GSM610               0x0086
181
182 #define WAVE_FORMAT_ISIAUDIO                0x0088
183 #define WAVE_FORMAT_ONLIVE                  0x0089
184
185 #define WAVE_FORMAT_SBC24                   0x0091
186 #define WAVE_FORMAT_DOLBY_AC3_SPDIF         0x0092
187
188 #define WAVE_FORMAT_ZYXEL_ADPCM             0x0097
189 #define WAVE_FORMAT_PHILIPS_LPCBB           0x0098
190 #define WAVE_FORMAT_PACKED                  0x0099
191 #define WAVE_FORMAT_RHETOREX_ADPCM          0x0100
192 #define WAVE_FORMAT_IRAT                    0x0101
193 #define WAVE_FORMAT_VIVO_G723               0x0111
194 #define WAVE_FORMAT_VIVO_SIREN              0x0112
195 #define WAVE_FORMAT_DIGITAL_G723            0x0113
196
197 #define WAVE_FORMAT_CREATIVE_ADPCM          0x0200
198
199 #define WAVE_FORMAT_CREATIVE_FASTSPEECH8    0x0202
200 #define WAVE_FORMAT_CREATIVE_FASTSPEECH10   0x0203
201
202 #define WAVE_FORMAT_QUARTERDECK             0x0220
203
204 #define WAVE_FORMAT_FM_TOWNS_SND            0x0300
205
206 #define WAVE_FORMAT_BTV_DIGITAL             0x0400
207
208 #define WAVE_FORMAT_VME_VMPCM               0x0680
209
210 #define WAVE_FORMAT_OLIGSM                  0x1000
211 #define WAVE_FORMAT_OLIADPCM                0x1001
212 #define WAVE_FORMAT_OLICELP                 0x1002
213 #define WAVE_FORMAT_OLISBC                  0x1003
214 #define WAVE_FORMAT_OLIOPR                  0x1004
215
216 #define WAVE_FORMAT_LH_CODEC                0x1100
217
218 #define WAVE_FORMAT_NORRIS                  0x1400
219 #define WAVE_FORMAT_ISIAUDIO                0x1401
220
221 #define WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS 0x1500
222
223 #define WAVE_FORMAT_DVM                     0x2000
224
225 /* http://msdn.microsoft.com/en-us/library/aa372553%28VS.85%29.aspx */
226 #define WAVE_FORMAT_RAW_AAC1                0x00FF
227 #define WAVE_FORMAT_MPEG_HEAAC              0x1610
228 #define WAVE_FORMAT_MPEG_ADTS_AAC           0x1600
229 #define WAVE_FORMAT_DRM                     0x0009
230 #define WAVE_FORMAT_DTS                     0x0008
231 #define WAVE_FORMAT_WMAVOICE9               0x000A
232 #define WAVE_FORMAT_WMASPDIF                0x0164
233 #define WAVE_FORMAT_WMAUDIO_LOSSLESS        0x0163
234 #define WAVE_FORMAT_WMAUDIO2                0x0161
235 #define WAVE_FORMAT_WMAUDIO3                0x0162
236
237 /* http://msdn.microsoft.com/en-us/library/dd317599%28VS.85%29.aspx */
238 #define WAVE_FORMAT_MPEG_LOAS               0x1602
239 #define WAVE_FORMAT_RAW_SPORT               0x0240
240 #define WAVE_FORMAT_ESST_AC3                0x0241
241 #define WAVE_FORMAT_DTS2                    0x2001
242
243 #ifdef __cplusplus
244 }
245 #endif
246
247 #endif