shell32: Get rid of menu enabling helper.
[wine/multimedia.git] / include / ksmedia.h
blob44834bb52be6236f4a22987e61af6d4046ed8c72
1 /*
2 * Copyright (C) 2004 Robert Reif
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _KS_
20 #error must include ks.h before ksmedia.h
21 #endif
23 #ifndef _KSMEDIA_
24 #define _KSMEDIA_
26 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_PCM, 0x00000001, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
27 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT, 0x00000003, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
28 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_MULAW, 0x00000007, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
29 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_ALAW, 0x00000006, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
31 #define KSAUDIO_SPEAKER_DIRECTOUT 0
32 #define KSAUDIO_SPEAKER_MONO SPEAKER_FRONT_CENTER
33 #define KSAUDIO_SPEAKER_STEREO (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT)
34 #define KSAUDIO_SPEAKER_QUAD (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT)
35 #define KSAUDIO_SPEAKER_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_BACK_CENTER)
36 #define KSAUDIO_SPEAKER_5POINT1 (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT)
37 #define KSAUDIO_SPEAKER_5POINT1_SURROUND (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_LOW_FREQUENCY | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT)
38 #define KSAUDIO_SPEAKER_7POINT1 (KSAUDIO_SPEAKER_5POINT1 | SPEAKER_FRONT_LEFT_OF_CENTER | SPEAKER_FRONT_RIGHT_OF_CENTER)
39 #define KSAUDIO_SPEAKER_7POINT1_SURROUND (KSAUDIO_SPEAKER_5POINT1 | SPEAKER_SIDE_LEFT | SPEAKER_SIDE_RIGHT)
41 #ifndef REFERENCE_TIME_DEFINED
42 #define REFERENCE_TIME_DEFINED
43 typedef LONGLONG REFERENCE_TIME;
44 #endif
46 typedef enum
48 eConnTypeUnknown = 0,
49 eConnType3Point5mm,
50 eConnTypeQuarter,
51 eConnTypeAtapiInternal,
52 eConnTypeRCA,
53 eConnTypeOptical,
54 eConnTypeOtherDigital,
55 eConnTypeOtherAnalog,
56 eConnTypeMultichannelAnalogDIN,
57 eConnTypeXlrProfessional,
58 eConnTypeRj11Modem,
59 eConnTypeCombination
60 } EPcxConnectionType;
62 typedef enum
64 eGeoLocRear = 1,
65 eGeoLocFront,
66 eGeoLocLeft,
67 eGeoLocRight,
68 eGeoLocTop,
69 eGeoLocBottom,
70 eGeoLocRearPanel,
71 eGeoLocRiser,
72 eGeoLocInsideMobileLid,
73 eGeoLocDrivebay,
74 eGeoLocHDMI,
75 eGeoLocOutsideMobileLid,
76 eGeoLocATAPI,
77 eGeoLocReserved5,
78 eGeoLocReserved6
79 } EPcxGeoLocation;
81 typedef enum
83 eGenLocPrimaryBox = 0,
84 eGenLocInternal,
85 eGenLocSeparate,
86 eGenLocOther
87 } EPcxGenLocation;
89 typedef enum
91 ePortConnJack = 0,
92 ePortConnIntegratedDevice,
93 ePortConnBothIntegratedAndJack,
94 ePortConnUnknown
95 } EPxcPortConnection;
97 typedef struct
99 DWORD ChannelMapping;
100 COLORREF Color;
101 EPcxConnectionType ConnectionType;
102 EPcxGeoLocation GeoLocation;
103 EPcxGenLocation GenLocation;
104 EPxcPortConnection PortConnection;
105 BOOL IsConnected;
106 } KSJACK_DESCRIPTION;
108 typedef KSJACK_DESCRIPTION *PKSJACK_DESCRIPTION;
110 typedef enum
112 KSJACK_SINK_CONNECTIONTYPE_HDMI = 0,
113 KSJACK_SINK_CONNECTIONTYPE_DISPLAYPORT
114 } KSJACK_SINK_CONNECTIONTYPE;
116 #define MAX_SINK_DESCRIPTION_NAME_LENGTH 32
118 typedef struct _tagKSJACK_SINK_INFORMATION
120 KSJACK_SINK_CONNECTIONTYPE ConnType;
121 WORD ManufacturerId;
122 WORD ProductId;
123 WORD AudioLatency;
124 BOOL HDCPCapable;
125 BOOL AICapable;
126 UCHAR SinkDescriptionLength;
127 WCHAR SinkDescription[MAX_SINK_DESCRIPTION_NAME_LENGTH];
128 LUID PortId;
129 } KSJACK_SINK_INFORMATION;
131 #define JACKDESC2_PRESENCE_DETECT_CAPABILITY 0x1
132 #define JACKDESC2_DYNAMIC_FORMAT_CHANGE_CAPABILITY 0x2
134 typedef struct _tagKSJACK_DESCRIPTION2
136 DWORD DeviceStateInfo;
137 DWORD JackCapabilities;
138 } KSJACK_DESCRIPTION2;
140 typedef struct _tagKSJACK_DESCRIPTION2 *PKSJACK_DESCRIPTION2;
142 #endif /* _KSMEDIA_ */