2 * Copyright 2004 Christian Costa
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
20 import "mmstream.idl";
23 cpp_quote("#include <ddraw.h>")
24 cpp_quote("#include <mmsystem.h>")
25 cpp_quote("#include <mmstream.h>")
26 cpp_quote("#include <ddstream.h>")
27 cpp_quote("#include <austream.h>")
30 interface IDirectDraw;
31 interface IDirectDrawSurface;
34 interface IAMMultiMediaStream;
35 interface IAMMediaStream;
36 interface IMediaStreamFilter;
37 interface IAMMediaTypeStream;
38 interface IAMMediaTypeSample;
41 AMMSF_NOGRAPHTHREAD = 0x00000001
45 AMMSF_ADDDEFAULTRENDERER = 0x00000001,
46 AMMSF_CREATEPEER = 0x00000002,
47 AMMSF_STOPIFNOSAMPLES = 0x00000004,
48 AMMSF_NOSTALL = 0x00000008
52 AMMSF_RENDERTYPEMASK = 0x00000003,
53 AMMSF_RENDERTOEXISTING = 0x00000000,
54 AMMSF_RENDERALLSTREAMS = 0x00000001,
55 AMMSF_NORENDER = 0x00000002,
56 AMMSF_NOCLOCK = 0x00000004,
57 AMMSF_RUN = 0x00000008
61 typedef [v1_enum] enum {
70 uuid(7DB01C96-C0C3-11d0-8FF1-00C04FD9189D),
72 helpstring("IDirectShowStream Interface"),
73 pointer_default(unique)
75 interface IDirectShowStream : IDispatch
77 [propget, id(1), helpstring("property FileName")] HRESULT FileName([out, retval] BSTR *pVal);
78 [propput, id(1), helpstring("property FileName")] HRESULT FileName([in] BSTR newVal);
79 [propget, id(2), helpstring("property Video")] HRESULT Video([out, retval] OUTPUT_STATE *pVal);
80 [propput, id(2), helpstring("propetry Video")] HRESULT Video([in] OUTPUT_STATE newVal);
81 [propget, id(3), helpstring("property Audio")] HRESULT Audio([out, retval] OUTPUT_STATE *pVal);
82 [propput, id(3), helpstring("propetry Audio")] HRESULT Audio([in] OUTPUT_STATE newVal);
88 uuid(BEBE595C-9A6F-11d0-8FDE-00C04FD9189D),
89 pointer_default(unique)
91 interface IAMMultiMediaStream : IMultiMediaStream
94 [in] STREAM_TYPE StreamType,
96 [in, optional] IGraphBuilder *pFilterGraph);
98 HRESULT GetFilterGraph(
99 [out] IGraphBuilder **ppGraphBuilder);
102 [out] IMediaStreamFilter **ppFilter);
104 HRESULT AddMediaStream(
105 [in, optional] IUnknown *pStreamObject,
106 [in, optional] const MSPID *PurposeId,
108 [out, optional] IMediaStream **ppNewStream);
111 [in] LPCWSTR pszFileName,
116 [in] IMoniker *pMoniker,
126 uuid(BEBE595D-9A6F-11d0-8FDE-00C04FD9189D),
127 pointer_default(unique)
129 interface IAMMediaStream : IMediaStream
132 [in, optional] IUnknown *pSourceObject,
134 [in] REFMSPID PurposeId,
135 [in] const STREAM_TYPE StreamType);
138 [in] FILTER_STATE State);
140 HRESULT JoinAMMultiMediaStream(
141 [in] IAMMultiMediaStream *pAMMultiMediaStream);
144 [in] IMediaStreamFilter *pMediaStreamFilter);
146 HRESULT JoinFilterGraph(
147 [in] IFilterGraph *pFilterGraph);
154 uuid(BEBE595E-9A6F-11d0-8FDE-00C04FD9189D),
155 pointer_default(unique)
157 interface IMediaStreamFilter : IBaseFilter
159 HRESULT AddMediaStream(
160 [in] IAMMediaStream *pAMMediaStream);
162 HRESULT GetMediaStream(
163 [in] REFMSPID idPurpose,
164 [out] IMediaStream **ppMediaStream);
166 HRESULT EnumMediaStreams(
168 [out] IMediaStream **ppMediaStream);
170 HRESULT SupportSeeking(
171 [in] BOOL bRenderer);
173 HRESULT ReferenceTimeToStreamTime(
174 [in] [out] REFERENCE_TIME *pTime);
176 HRESULT GetCurrentStreamTime(
177 [out] REFERENCE_TIME *pCurrentStreamTime);
180 [in] REFERENCE_TIME WaitStreamTime);
183 [in] BOOL bCancelEOS);
185 HRESULT EndOfStream();
192 uuid(AB6B4AFC-F6E4-11d0-900D-00C04FD9189D),
193 pointer_default(unique)
195 interface IDirectDrawMediaSampleAllocator : IUnknown
197 HRESULT GetDirectDraw(IDirectDraw **ppDirectDraw);
204 uuid(AB6B4AFE-F6E4-11d0-900D-00C04FD9189D),
205 pointer_default(unique)
207 interface IDirectDrawMediaSample : IUnknown
209 HRESULT GetSurfaceAndReleaseLock(
210 [out] IDirectDrawSurface **ppDirectDrawSurface,
213 HRESULT LockMediaSamplePointer(void);
220 uuid(AB6B4AFA-F6E4-11d0-900D-00C04FD9189D),
221 pointer_default(unique)
224 interface IAMMediaTypeStream : IMediaStream
227 [out] AM_MEDIA_TYPE * pMediaType,
231 [in] AM_MEDIA_TYPE * pMediaType,
234 HRESULT CreateSample(
235 [in] long lSampleSize,
236 [in, optional] BYTE * pbBuffer,
238 [in, optional] IUnknown *pUnkOuter,
239 [out] IAMMediaTypeSample ** ppAMMediaTypeSample);
241 HRESULT GetStreamAllocatorRequirements(
242 [out] ALLOCATOR_PROPERTIES *pProps);
244 HRESULT SetStreamAllocatorRequirements(
245 [in] ALLOCATOR_PROPERTIES *pProps);
252 uuid(AB6B4AFB-F6E4-11d0-900D-00C04FD9189D),
253 pointer_default(unique)
255 interface IAMMediaTypeSample : IStreamSample
262 [out] BYTE ** ppBuffer);
267 [out] REFERENCE_TIME * pTimeStart,
268 [out] REFERENCE_TIME * pTimeEnd);
271 [in] REFERENCE_TIME * pTimeStart,
272 [in] REFERENCE_TIME * pTimeEnd);
274 HRESULT IsSyncPoint(void);
276 HRESULT SetSyncPoint(
279 HRESULT IsPreroll(void);
284 long GetActualDataLength(void);
286 HRESULT SetActualDataLength(long Len);
288 HRESULT GetMediaType(
289 AM_MEDIA_TYPE **ppMediaType);
291 HRESULT SetMediaType(
292 AM_MEDIA_TYPE *pMediaType);
294 HRESULT IsDiscontinuity(void);
296 HRESULT SetDiscontinuity(
297 BOOL bDiscontinuity);
299 HRESULT GetMediaTime(
300 [out] LONGLONG * pTimeStart,
301 [out] LONGLONG * pTimeEnd);
303 HRESULT SetMediaTime(
304 [in] LONGLONG * pTimeStart,
305 [in] LONGLONG * pTimeEnd);
309 uuid(49C47CE5-9BA4-11d0-8212-00C04FC32C45)
311 coclass AMMultiMediaStream
313 [default] dispinterface IDirectShowStream;
316 cpp_quote("DEFINE_GUID(CLSID_AMDirectDrawStream, 0x49c47ce4, 0x9ba4, 0x11d0, 0x82, 0x12, 0x00, 0xc0, 0x4f, 0xc3, 0x2c, 0x45);")
317 cpp_quote("DEFINE_GUID(CLSID_AMAudioStream, 0x8496e040, 0xaf4c, 0x11d0, 0x82, 0x12, 0x00, 0xc0, 0x4f, 0xc3, 0x2c, 0x45);")
318 cpp_quote("DEFINE_GUID(CLSID_AMAudioData, 0xf2468580, 0xaf8a, 0x11d0, 0x82, 0x12, 0x00, 0xc0, 0x4f, 0xc3, 0x2c, 0x45);")
319 cpp_quote("DEFINE_GUID(CLSID_AMMediaTypeStream, 0xcf0f2f7c, 0xf7bf, 0x11d0, 0x90, 0x0d, 0x00, 0xc0, 0x4f, 0xd9, 0x18, 0x9d);")