-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaustream.cs
216 lines (175 loc) · 5.74 KB
/
austream.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#region license
/*
DirectShowLib - Provide access to DirectShow interfaces via .NET
Copyright (C) 2007
http://sourceforge.net/projects/directshownet/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#endregion
using System;
using System.Runtime.InteropServices;
namespace DirectShowLib.MultimediaStreaming
{
#region Interfaces
#if ALLOW_UNTESTED_INTERFACES
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("327FC560-AF60-11D0-8212-00C04FC32C45")]
public interface IMemoryData
{
[PreserveSig]
int SetBuffer(
[In] int cbSize,
[In] IntPtr pbData,
[In] int dwFlags
);
[PreserveSig]
int GetInfo(
out int pdwLength,
[Out] IntPtr ppbData,
out int pcbActualData
);
[PreserveSig]
int SetActual(
[In] int cbDataValid
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("54C719C0-AF60-11D0-8212-00C04FC32C45")]
public interface IAudioData : IMemoryData
{
#region IMemoryData Methods
[PreserveSig]
new int SetBuffer(
[In] int cbSize,
[In] IntPtr pbData,
[In] int dwFlags
);
[PreserveSig]
new int GetInfo(
out int pdwLength,
[Out] IntPtr ppbData,
out int pcbActualData
);
[PreserveSig]
new int SetActual(
[In] int cbDataValid
);
#endregion
[PreserveSig]
int GetFormat(
[Out] WaveFormatEx pWaveFormatCurrent
);
[PreserveSig]
int SetFormat(
[In, MarshalAs(UnmanagedType.LPStruct)] WaveFormatEx lpWaveFormat
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("345FEE00-ABA5-11D0-8212-00C04FC32C45")]
public interface IAudioStreamSample : IStreamSample
{
#region IStreamSample Methods
[PreserveSig]
new int GetMediaStream(
[MarshalAs(UnmanagedType.Interface)] out IMediaStream ppMediaStream
);
[PreserveSig]
new int GetSampleTimes(
out long pStartTime,
out long pEndTime,
out long pCurrentTime
);
[PreserveSig]
new int SetSampleTimes(
[In] DsLong pStartTime,
[In] DsLong pEndTime
);
[PreserveSig]
new int Update(
[In] SSUpdate dwFlags,
[In] IntPtr hEvent,
[In] IntPtr pfnAPC,
[In] IntPtr dwAPCData
);
[PreserveSig]
new int CompletionStatus(
[In] CompletionStatusFlags dwFlags,
[In] int dwMilliseconds
);
#endregion
[PreserveSig]
int GetAudioData(
[MarshalAs(UnmanagedType.Interface)] out IAudioData ppAudio
);
}
#endif
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("F7537560-A3BE-11D0-8212-00C04FC32C45")]
public interface IAudioMediaStream : IMediaStream
{
#region IMediaStream Methods
[PreserveSig]
new int GetMultiMediaStream(
[MarshalAs(UnmanagedType.Interface)] out IMultiMediaStream ppMultiMediaStream
);
[PreserveSig]
new int GetInformation(
out Guid pPurposeId,
out StreamType pType);
[PreserveSig]
new int SetSameFormat(
[In, MarshalAs(UnmanagedType.Interface)] IMediaStream pStreamThatHasDesiredFormat,
[In] int dwFlags);
[PreserveSig]
new int AllocateSample(
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IStreamSample ppSample
);
[PreserveSig]
new int CreateSharedSample(
[In, MarshalAs(UnmanagedType.Interface)] IStreamSample pExistingSample,
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IStreamSample ppNewSample
);
[PreserveSig]
new int SendEndOfStream(
int dwFlags
);
#endregion
[PreserveSig]
int GetFormat(
[Out, MarshalAs(UnmanagedType.LPStruct)] WaveFormatEx pWaveFormatCurrent
);
[PreserveSig]
int SetFormat(
[In] WaveFormatEx lpWaveFormat
);
[PreserveSig]
int CreateSample(
#if ALLOW_UNTESTED_INTERFACES
[In, MarshalAs(UnmanagedType.Interface)] IAudioData pAudioData,
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out IAudioStreamSample ppSample
#else
[In, MarshalAs(UnmanagedType.Interface)] object pAudioData,
[In] int dwFlags,
[MarshalAs(UnmanagedType.Interface)] out object ppSample
#endif
);
}
#endregion
}