1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/mediactrl.cpp
3 // Purpose: Built-in Media Backends for Windows
4 // Author: Ryan Norton <wxprojects@comcast.net>
8 // Copyright: (c) Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 //===========================================================================
14 //===========================================================================
16 //---------------------------------------------------------------------------
17 // Pre-compiled header stuff
18 //---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "mediactrl.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 //---------------------------------------------------------------------------
33 //---------------------------------------------------------------------------
34 #include "wx/mediactrl.h"
36 //---------------------------------------------------------------------------
38 //---------------------------------------------------------------------------
41 //---------------------------------------------------------------------------
42 // Externals (somewhere in src/msw/app.cpp)
43 //---------------------------------------------------------------------------
44 extern "C" WXDLLIMPEXP_BASE HINSTANCE
wxGetInstance(void);
46 extern WXDLLIMPEXP_CORE wxChar
*wxCanvasClassName
;
48 extern WXDLLIMPEXP_CORE
const wxChar
*wxCanvasClassName
;
51 //===========================================================================
52 // BACKEND DECLARATIONS
53 //===========================================================================
55 //---------------------------------------------------------------------------
59 //---------------------------------------------------------------------------
61 //####################THE BIG DIRECTSHOW OVERVIEW############################
64 // OK... this deserves its own little tutorial. Knowledge of COM and class
65 // factories is assumed throughout this code.
67 // Basically, the way directshow works is that you tell it to render
68 // a file, and it builds and connects a bunch of filters together.
70 // There are many, many ways to do this.
72 // WAYS TO RENDER A FILE (URLS WORK IN DS ALSO)
74 // 1) Create an instance of IGraphBuilder and call RenderFile on it
75 // 2) Create an instance of IMediaControl and call RenderFile on it
76 // 3) Create an instance of IAMMultiMediaStream, call
77 // IAMMultiMediaStream::AddStream and pass an IDirectDraw instance for
78 // the video, and pass an IDirectSound(Buffer?) instance or use the
79 // default sound renderer, then call RenderFile or RenderMoniker
80 // 4) Create a Moniker instance for the file and create and build
81 // all of the filtergraph manually
83 // Our issue here is that we can't use the default representation of 1 and 2
84 // because the IVideoWindow instance hogs a lot of the useful window
85 // messages such as WM_SETCURSOR.
87 // Solution #1 was to use #3 by creating a seperate IDirectDraw instance
88 // for our window and blitting to that through a thread... unfortunately
89 // the blitting resizing is very low quality and its quite slow.
91 // The current way is to use windowless rendering and have directshow
92 // do all the DirectDraw-style clipping to our window
94 // ~~~~~~~~~~~~~~AFTER RENDERING THE FILE~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96 // When done rendering the file, we need to get several interfaces from
97 // either a IMediaControl or IGraphBuilder instance -
99 // IMediaPosition - we can set the rate with this... we can also get
100 // positions and set positions through this with REFTIME (double) instead
101 // of the normal LONGLONG that IAMMultiMediaStream and IMediaControl use
103 // IBasicAudio - we need this for setting/getting the volume
105 // Interfaces that we don't use but might be useful one day -
107 // IDirectDrawVideo - you can get this through the IFilter returned
108 // from L"Video Renderer" filter from FindFilter on the IGraphBuilder.
109 // Through this we can set the IDirectDraw instance DrawShow uses.
111 // ~~~~~~~~~~~~~~STOPPING~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
113 // There are two ways we can do this -
114 // 1) Have a thread compare the current position to the end position
115 // about every 10 milliseconds
116 // 2) Have IMediaSeekingEx send a message to a windowproc or signal a
119 // Note that we can do these both, I.E. if an IMediaSeekingEx interface
120 // is unavailable we can check the position instead of an event
122 //---------------------------------------------------------------------------
124 //---------------------------------------------------------------------------
126 //---------------------------------------------------------------------------
127 #include "wx/msw/ole/oleutils.h" //wxBasicString, IID etc.
128 #include "wx/msw/ole/uuid.h" //IID etc..
130 //---------------------------------------------------------------------------
131 // COM compatability definitions
132 //---------------------------------------------------------------------------
133 #ifndef STDMETHODCALLTYPE
134 #define STDMETHODCALLTYPE __stdcall
137 #define STDMETHOD(funcname) virtual HRESULT STDMETHODCALLTYPE funcname
142 //---------------------------------------------------------------------------
143 // IIDS - used by CoCreateInstance and IUnknown::QueryInterface
144 // Dumped from amstream.idl, quartz.idl, direct draw and with some
145 // confirmation from WINE
147 // Some of these are not used but are kept here for future reference anyway
148 //---------------------------------------------------------------------------
151 const IID LIBID_QuartzTypeLib
= {0x56A868B0,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
152 const IID IID_IAMCollection
= {0x56A868B9,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
153 const IID IID_IMediaControl
= {0x56A868B1,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
154 const IID IID_IMediaEvent
= {0x56A868B6,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
155 const IID IID_IMediaEventEx
= {0x56A868C0,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
156 const IID IID_IMediaPosition
= {0x56A868B2,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
157 const IID IID_IBasicAudio
= {0x56A868B3,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
158 const IID IID_IVideoWindow
= {0x56A868B4,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
159 const IID IID_IBasicVideo
= {0x56A868B5,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
160 const IID IID_IBasicVideo2
= {0x329BB360,0xF6EA,0x11D1,{0x90,0x38,0x00,0xA0,0xC9,0x69,0x72,0x98}};
161 const IID IID_IDeferredCommand
= {0x56A868B8,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
162 const IID IID_IQueueCommand
= {0x56A868B7,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
163 const IID IID_IFilterInfo
= {0x56A868BA,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
164 const IID IID_IRegFilterInfo
= {0x56A868BB,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
165 const IID IID_IMediaTypeInfo
= {0x56A868BC,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
166 const IID IID_IPinInfo
= {0x56A868BD,0x0AD4,0x11CE,{0xB0,0x3A,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
167 const IID IID_IAMStats
= {0xBC9BCF80,0xDCD2,0x11D2,{0xAB,0xF6,0x00,0xA0,0xC9,0x05,0xF3,0x75}};
168 const CLSID CLSID_FilgraphManager
= {0xE436EBB3,0x524F,0x11CE,{0x9F,0x53,0x00,0x20,0xAF,0x0B,0xA7,0x70}};
171 const CLSID CLSID_AMMultiMediaStream
= {0x49C47CE5, 0x9BA4, 0x11D0,{0x82, 0x12, 0x00, 0xC0, 0x4F, 0xC3, 0x2C, 0x45}};
172 const IID IID_IAMMultiMediaStream
= {0xBEBE595C, 0x9A6F, 0x11D0,{0x8F, 0xDE, 0x00, 0xC0, 0x4F, 0xD9, 0x18, 0x9D}};
173 const IID IID_IDirectDrawMediaStream
= {0xF4104FCE, 0x9A70, 0x11D0,{0x8F, 0xDE, 0x00, 0xC0, 0x4F, 0xD9, 0x18, 0x9D}};
174 const GUID MSPID_PrimaryVideo
= {0xa35FF56A, 0x9FDA, 0x11D0,{0x8F, 0xDF, 0x00, 0xC0, 0x4F, 0xD9, 0x18, 0x9D}};
175 const GUID MSPID_PrimaryAudio
= {0xa35FF56B, 0x9FDA, 0x11D0,{0x8F, 0xDF, 0x00, 0xC0, 0x4F, 0xD9, 0x18, 0x9D}};
178 const IID IID_IDirectDraw
= {0x6C14DB80,0xA733,0x11CE,{0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60}};
179 const CLSID CLSID_DirectDraw
= {0xD7B70EE0,0x4340,0x11CF,{0xB0,0x63,0x00,0x20,0xAF,0xC2,0xCD,0x35}};
182 const CLSID CLSID_VideoMixingRenderer
= {0xB87BEB7B, 0x8D29, 0x423F,{0xAE, 0x4D, 0x65, 0x82, 0xC1, 0x01, 0x75, 0xAC}};
183 const IID IID_IVMRWindowlessControl
= {0x0EB1088C, 0x4DCD, 0x46F0,{0x87, 0x8F, 0x39, 0xDA, 0xE8, 0x6A, 0x51, 0xB7}};
184 const IID IID_IFilterGraph
= {0x56A8689F, 0x0AD4, 0x11CE,{0xB0, 0x3A, 0x00, 0x20, 0xAF, 0x0B, 0xA7, 0x70}};
185 const IID IID_IGraphBuilder
= {0x56A868A9, 0x0AD4, 0x11CE,{0xB0, 0x3A, 0x00, 0x20, 0xAF, 0x0B, 0xA7, 0x70}};
186 const IID IID_IVMRFilterConfig
= {0x9E5530C5, 0x7034, 0x48B4,{0xBB, 0x46, 0x0B, 0x8A, 0x6E, 0xFC, 0x8E, 0x36}};
187 const IID IID_IBaseFilter
= {0x56A86895, 0x0AD4, 0x11CE,{0xB0, 0x3A, 0x00, 0x20, 0xAF, 0x0B, 0xA7, 0x70}};
189 //---------------------------------------------------------------------------
190 // DIRECTDRAW COM INTERFACES
191 //---------------------------------------------------------------------------
192 //DDSURFACESDESC - we don't need most of the stuff here, esp. DDPIXELFORMAT,
193 //so just put stubs in
194 struct DDPIXELFORMAT
{DWORD dw1
,dw2
,dw3
,dw4
,dw5
,dw6
,dw7
,dw8
;};
195 struct DDCOLORKEY
{DWORD dwLow
, dwHigh
;};
197 typedef struct IDirectDrawClipper
* LPDIRECTDRAWCLIPPER
;
198 typedef struct IDirectDraw
* LPDIRECTDRAW
;
199 typedef struct IDirectDrawSurface
* LPDIRECTDRAWSURFACE
;
200 typedef struct DDSURFACEDESC
* LPDDSURFACEDESC
;
201 typedef struct IDirectDrawPalette
* LPDIRECTDRAWPALETTE
;
202 typedef struct DDSCAPS
* LPDDSCAPS
;
203 typedef DDCOLORKEY
* LPDDCOLORKEY
;
204 typedef DDPIXELFORMAT
* LPDDPIXELFORMAT
;
205 typedef struct DDCAPS
* LPDDCAPS
;
218 DWORD dwBackBufferCount
;
222 DWORD dwZBufferBitDepth
;
225 DWORD dwAlphaBitDepth
;
228 DDCOLORKEY ddckCKDestOverlay
;
229 DDCOLORKEY ddckCKDestBlt
;
230 DDCOLORKEY ddckCKSrcOverlay
;
231 DDCOLORKEY ddckCKSrcBlt
;
232 DDPIXELFORMAT ddpfPixelFormat
;
233 struct DDSCAPS
{DWORD dwCaps
;} ddsCaps
;
236 struct IDirectDrawClipper
: public IUnknown
238 STDMETHOD(GetClipList
)(LPRECT
, LPRGNDATA
, LPDWORD
) PURE
;
239 STDMETHOD(GetHWnd
)(HWND
*) PURE
;
240 STDMETHOD(Initialize
)(LPDIRECTDRAW
, DWORD
) PURE
;
241 STDMETHOD(IsClipListChanged
)(BOOL
*) PURE
;
242 STDMETHOD(SetClipList
)(LPRGNDATA
,DWORD
) PURE
;
243 STDMETHOD(SetHWnd
)(DWORD
, HWND
) PURE
;
246 struct IDirectDrawSurface
: public IUnknown
248 STDMETHOD(AddAttachedSurface
)(LPDIRECTDRAWSURFACE
) PURE
;
249 STDMETHOD(AddOverlayDirtyRect
)(LPRECT
) PURE
;
250 STDMETHOD(Blt
)(LPRECT
,LPDIRECTDRAWSURFACE
, LPRECT
,DWORD
, struct DDBLTFX
*) PURE
;
251 STDMETHOD(BltBatch
)(struct DDBLTBATCH
*, DWORD
, DWORD
) PURE
;
252 STDMETHOD(BltFast
)(DWORD
,DWORD
,LPDIRECTDRAWSURFACE
, LPRECT
,DWORD
) PURE
;
253 STDMETHOD(DeleteAttachedSurface
)(DWORD
,LPDIRECTDRAWSURFACE
) PURE
;
254 STDMETHOD(EnumAttachedSurfaces
)(LPVOID
, LPVOID
/*LPDDENUMSURFACESCALLBACK*/) PURE
;
255 STDMETHOD(EnumOverlayZOrders
)(DWORD
,LPVOID
,LPVOID
/*LPDDENUMSURFACESCALLBACK*/) PURE
;
256 STDMETHOD(Flip
)(LPDIRECTDRAWSURFACE
, DWORD
) PURE
;
257 STDMETHOD(GetAttachedSurface
)(LPDDSCAPS
, LPDIRECTDRAWSURFACE
*) PURE
;
258 STDMETHOD(GetBltStatus
)(DWORD
) PURE
;
259 STDMETHOD(GetCaps
)(LPDDSCAPS
) PURE
;
260 STDMETHOD(GetClipper
)(LPDIRECTDRAWCLIPPER
*) PURE
;
261 STDMETHOD(GetColorKey
)(DWORD
, LPDDCOLORKEY
) PURE
;
262 STDMETHOD(GetDC
)(HDC
*) PURE
;
263 STDMETHOD(GetFlipStatus
)(DWORD
) PURE
;
264 STDMETHOD(GetOverlayPosition
)(LPLONG
, LPLONG
) PURE
;
265 STDMETHOD(GetPalette
)(LPDIRECTDRAWPALETTE FAR
*) PURE
;
266 STDMETHOD(GetPixelFormat
)(LPDDPIXELFORMAT
) PURE
;
267 STDMETHOD(GetSurfaceDesc
)(LPDDSURFACEDESC
) PURE
;
268 STDMETHOD(Initialize
)(LPDIRECTDRAW
, LPDDSURFACEDESC
) PURE
;
269 STDMETHOD(IsLost
)(THIS
) PURE
;
270 STDMETHOD(Lock
)(LPRECT
,LPDDSURFACEDESC
,DWORD
,HANDLE
) PURE
;
271 STDMETHOD(ReleaseDC
)(HDC
) PURE
;
272 STDMETHOD(Restore
)(THIS
) PURE
;
273 STDMETHOD(SetClipper
)(LPDIRECTDRAWCLIPPER
) PURE
;
274 STDMETHOD(SetColorKey
)(DWORD
, LPDDCOLORKEY
) PURE
;
275 STDMETHOD(SetOverlayPosition
)(LONG
, LONG
) PURE
;
276 STDMETHOD(SetPalette
)(IUnknown
*) PURE
;
277 STDMETHOD(Unlock
)(LPVOID
) PURE
;
278 STDMETHOD(UpdateOverlay
)(LPRECT
, LPDIRECTDRAWSURFACE
,LPRECT
,
279 DWORD
, struct DDOVERLAYFX
*) PURE
;
280 STDMETHOD(UpdateOverlayDisplay
)(DWORD
) PURE
;
281 STDMETHOD(UpdateOverlayZOrder
)(DWORD
, LPDIRECTDRAWSURFACE
) PURE
;
284 struct IDirectDraw
: public IUnknown
286 STDMETHOD(Compact
)() PURE
;
287 STDMETHOD(CreateClipper
)(DWORD
, LPDIRECTDRAWCLIPPER
*, IUnknown
* ) PURE
;
288 STDMETHOD(CreatePalette
)(DWORD
, LPPALETTEENTRY
, LPDIRECTDRAWPALETTE
*, IUnknown
* ) PURE
;
289 STDMETHOD(CreateSurface
)(LPDDSURFACEDESC
, LPDIRECTDRAWSURFACE
*, IUnknown
*) PURE
;
290 STDMETHOD(DuplicateSurface
)(LPDIRECTDRAWSURFACE
, LPDIRECTDRAWSURFACE
* ) PURE
;
291 STDMETHOD(EnumDisplayModes
)(DWORD
, LPDDSURFACEDESC
, LPVOID
, LPVOID
) PURE
;
292 STDMETHOD(EnumSurfaces
)(DWORD
, LPDDSURFACEDESC
, LPVOID
,LPVOID
) PURE
;
293 STDMETHOD(FlipToGDISurface
)() PURE
;
294 STDMETHOD(GetCaps
)(LPDDCAPS
, LPDDCAPS
) PURE
;
295 STDMETHOD(GetDisplayMode
)(LPDDSURFACEDESC
) PURE
;
296 STDMETHOD(GetFourCCCodes
)(LPDWORD
, LPDWORD
) PURE
;
297 STDMETHOD(GetGDISurface
)(LPDIRECTDRAWSURFACE
*) PURE
;
298 STDMETHOD(GetMonitorFrequency
)(LPDWORD
) PURE
;
299 STDMETHOD(GetScanLine
)(LPDWORD
) PURE
;
300 STDMETHOD(GetVerticalBlankStatus
)(LPBOOL
) PURE
;
301 STDMETHOD(Initialize
)(GUID
*) PURE
;
302 STDMETHOD(RestoreDisplayMode
)() PURE
;
303 STDMETHOD(SetCooperativeLevel
)(HWND
, DWORD
) PURE
;
304 STDMETHOD(SetDisplayMode
)(DWORD
, DWORD
,DWORD
, DWORD
, DWORD
) PURE
;
305 STDMETHOD(WaitForVerticalBlank
)(DWORD
, HANDLE
) PURE
;
308 //---------------------------------------------------------------------------
309 // AMMEDIA COM INTERFACES
310 //---------------------------------------------------------------------------
312 struct IMultiMediaStream
;
313 struct IStreamSample
: public IUnknown
316 STDMETHOD(GetMediaStream
)(IMediaStream
**) PURE
;
317 STDMETHOD(GetSampleTimes
)(LONGLONG
*, LONGLONG
*, LONGLONG
*) PURE
;
318 STDMETHOD(SetSampleTimes
)(const LONGLONG
*, const LONGLONG
*) PURE
;
319 STDMETHOD(Update
)(DWORD
, HANDLE
, LPVOID
, DWORD_PTR
) PURE
;
320 STDMETHOD(CompletionStatus
)(DWORD
, DWORD
) PURE
;
323 struct IDirectDrawStreamSample
: public IStreamSample
326 STDMETHOD(GetSurface
)(IDirectDrawSurface
**, RECT
*) PURE
;
327 STDMETHOD(SetRect
)(const RECT
*) PURE
;
330 struct IMediaStream
: public IUnknown
332 STDMETHOD(GetMultiMediaStream
)(IMultiMediaStream
**) PURE
;
333 STDMETHOD(GetInformation
)(GUID
*, int *) PURE
;
334 STDMETHOD(SetSameFormat
)(IMediaStream
*, DWORD
) PURE
;
335 STDMETHOD(AllocateSample
)(DWORD
, IStreamSample
**) PURE
;
336 STDMETHOD(CreateSharedSample
)(IStreamSample
*, DWORD
,
337 IStreamSample
**) PURE
;
338 STDMETHOD(SendEndOfStream
)(DWORD dwFlags
) PURE
;
341 struct IDirectDrawMediaStream
: public IMediaStream
343 STDMETHOD(GetFormat
)(DDSURFACEDESC
*, IDirectDrawPalette
**,
344 DDSURFACEDESC
*, DWORD
*) PURE
;
345 STDMETHOD(SetFormat
)(const DDSURFACEDESC
*, IDirectDrawPalette
*) PURE
;
346 STDMETHOD(GetDirectDraw
)(IDirectDraw
**) PURE
;
347 STDMETHOD(SetDirectDraw
)(IDirectDraw
*) PURE
;
348 STDMETHOD(CreateSample
)(IDirectDrawSurface
*, const RECT
*,
349 DWORD
, IDirectDrawStreamSample
**) PURE
;
350 STDMETHOD(GetTimePerFrame
)(LONGLONG
*) PURE
;
353 struct IMultiMediaStream
: public IUnknown
355 STDMETHOD(GetInformation
)(DWORD
*, int *) PURE
;
356 STDMETHOD(GetMediaStream
)(REFGUID
, IMediaStream
**) PURE
;
357 STDMETHOD(EnumMediaStreams
)(long, IMediaStream
**) PURE
;
358 STDMETHOD(GetState
)(int *pCurrentState
) PURE
;
359 STDMETHOD(SetState
)(int NewState
) PURE
;
360 STDMETHOD(GetTime
)(LONGLONG
*pCurrentTime
) PURE
;
361 STDMETHOD(GetDuration
)(LONGLONG
*pDuration
) PURE
;
362 STDMETHOD(Seek
)(LONGLONG SeekTime
) PURE
;
363 STDMETHOD(GetEndOfStreamEventHandle
)(HANDLE
*phEOS
) PURE
;
366 struct IAMMultiMediaStream
: public IMultiMediaStream
368 STDMETHOD(Initialize
)(int, DWORD
, IUnknown
*) PURE
;
369 STDMETHOD(GetFilterGraph
)(IUnknown
**) PURE
;
370 STDMETHOD(GetFilter
)(IUnknown
**) PURE
;
371 STDMETHOD(AddMediaStream
)(IUnknown
*, const GUID
*, DWORD
,
372 IMediaStream
**) PURE
;
373 STDMETHOD(OpenFile
)(LPCWSTR
, DWORD
) PURE
;
374 STDMETHOD(OpenMoniker
)(IBindCtx
*, IMoniker
*, DWORD
) PURE
;
375 STDMETHOD(Render
)(DWORD
) PURE
;
378 //---------------------------------------------------------------------------
379 // QUARTZ COM INTERFACES (dumped from quartz.idl from MSVC COM Browser)
380 //---------------------------------------------------------------------------
381 struct IAMCollection
: public IDispatch
383 STDMETHOD(get_Count
)(long *) PURE
;
384 STDMETHOD(Item
)(long, IUnknown
**) PURE
;
385 STDMETHOD(get__NewEnum
)(IUnknown
**) PURE
;
388 struct IMediaControl
: public IDispatch
390 STDMETHOD(Run
)() PURE
;
391 STDMETHOD(Pause
)() PURE
;
392 STDMETHOD(Stop
)() PURE
;
393 STDMETHOD(GetState
)(long, long*) PURE
;
394 STDMETHOD(RenderFile
)(BSTR
) PURE
;
395 STDMETHOD(AddSourceFilter
)(BSTR
, IDispatch
**) PURE
;
396 STDMETHOD(get_FilterCollection
)(IDispatch
**) PURE
;
397 STDMETHOD(get_RegFilterCollection
)(IDispatch
**) PURE
;
398 STDMETHOD(StopWhenReady
)() PURE
;
401 struct IMediaEvent
: public IDispatch
403 STDMETHOD(GetEventHandle
)(LONG_PTR
*) PURE
;
404 STDMETHOD(GetEvent
)(long *, LONG_PTR
*, LONG_PTR
*, long) PURE
;
405 STDMETHOD(WaitForCompletion
)(long, long *) PURE
;
406 STDMETHOD(CancelDefaultHandling
)(long) PURE
;
407 STDMETHOD(RestoreDefaultHandling
)(long) PURE
;
408 STDMETHOD(FreeEventParams
)(long, LONG_PTR
, LONG_PTR
) PURE
;
411 struct IMediaEventEx
: public IMediaEvent
413 STDMETHOD(SetNotifyWindow
)(LONG_PTR
, long, LONG_PTR
) PURE
;
414 STDMETHOD(SetNotifyFlags
)(long) PURE
;
415 STDMETHOD(GetNotifyFlags
)(long *) PURE
;
418 struct IMediaPosition
: public IDispatch
420 STDMETHOD(get_Duration
)(double *) PURE
;
421 STDMETHOD(put_CurrentPosition
)(double) PURE
;
422 STDMETHOD(get_CurrentPosition
)(double *) PURE
;
423 STDMETHOD(get_StopTime
)(double *) PURE
;
424 STDMETHOD(put_StopTime
)(double) PURE
;
425 STDMETHOD(get_PrerollTime
)(double *) PURE
;
426 STDMETHOD(put_PrerollTime
)(double) PURE
;
427 STDMETHOD(put_Rate
)(double) PURE
;
428 STDMETHOD(get_Rate
)(double *) PURE
;
429 STDMETHOD(CanSeekForward
)(long *) PURE
;
430 STDMETHOD(CanSeekBackward
)(long *) PURE
;
433 struct IBasicAudio
: public IDispatch
435 STDMETHOD(put_Volume
)(long) PURE
;
436 STDMETHOD(get_Volume
)(long *) PURE
;
437 STDMETHOD(put_Balance
)(long) PURE
;
438 STDMETHOD(get_Balance
)(long *) PURE
;
441 //---------------------------------------------------------------------------
442 // MISC COM INTERFACES
443 //---------------------------------------------------------------------------
444 struct IVMRWindowlessControl
: public IUnknown
446 STDMETHOD(GetNativeVideoSize
)(LONG
*, LONG
*, LONG
*, LONG
*) PURE
;
447 STDMETHOD(GetMinIdealVideoSize
)(LONG
*, LONG
*) PURE
;
448 STDMETHOD(GetMaxIdealVideoSize
)(LONG
*, LONG
*) PURE
;
449 STDMETHOD(SetVideoPosition
)(const LPRECT
,const LPRECT
) PURE
;
450 STDMETHOD(GetVideoPosition
)(LPRECT
, LPRECT
) PURE
;
451 STDMETHOD(GetAspectRatioMode
)(DWORD
*) PURE
;
452 STDMETHOD(SetAspectRatioMode
)(DWORD
) PURE
;
453 STDMETHOD(SetVideoClippingWindow
)(HWND
) PURE
;
454 STDMETHOD(RepaintVideo
)(HWND
, HDC
) PURE
;
455 STDMETHOD(DisplayModeChanged
)() PURE
;
456 STDMETHOD(GetCurrentImage
)(BYTE
**) PURE
;
457 STDMETHOD(SetBorderColor
)(COLORREF
) PURE
;
458 STDMETHOD(GetBorderColor
)(COLORREF
*) PURE
;
459 STDMETHOD(SetColorKey
)(COLORREF
) PURE
;
460 STDMETHOD(GetColorKey
)(COLORREF
*) PURE
;
463 typedef IUnknown IVMRImageCompositor
;
465 struct IVMRFilterConfig
: public IUnknown
467 STDMETHOD(SetImageCompositor
)(IVMRImageCompositor
*) PURE
;
468 STDMETHOD(SetNumberOfStreams
)(DWORD
) PURE
;
469 STDMETHOD(GetNumberOfStreams
)(DWORD
*) PURE
;
470 STDMETHOD(SetRenderingPrefs
)(DWORD
) PURE
;
471 STDMETHOD(GetRenderingPrefs
)(DWORD
*) PURE
;
472 STDMETHOD(SetRenderingMode
)(DWORD
) PURE
;
473 STDMETHOD(GetRenderingMode
)(DWORD
*) PURE
;
476 typedef IUnknown IBaseFilter
;
477 typedef IUnknown IPin
;
478 typedef IUnknown IEnumFilters
;
479 typedef int AM_MEDIA_TYPE
;
481 struct IFilterGraph
: public IUnknown
483 STDMETHOD(AddFilter
)(IBaseFilter
*, LPCWSTR
) PURE
;
484 STDMETHOD(RemoveFilter
)(IBaseFilter
*) PURE
;
485 STDMETHOD(EnumFilters
)(IEnumFilters
**) PURE
;
486 STDMETHOD(FindFilterByName
)(LPCWSTR
, IBaseFilter
**) PURE
;
487 STDMETHOD(ConnectDirect
)(IPin
*, IPin
*, const AM_MEDIA_TYPE
*) PURE
;
488 STDMETHOD(Reconnect
)(IPin
*) PURE
;
489 STDMETHOD(Disconnect
)(IPin
*) PURE
;
490 STDMETHOD(SetDefaultSyncSource
)() PURE
;
493 struct IGraphBuilder
: public IFilterGraph
496 STDMETHOD(Connect
)(IPin
*, IPin
*) PURE
;
497 STDMETHOD(Render
)(IPin
*) PURE
;
498 STDMETHOD(RenderFile
)(LPCWSTR
, LPCWSTR
) PURE
;
499 STDMETHOD(AddSourceFilter
)(LPCWSTR
, LPCWSTR
, IBaseFilter
**) PURE
;
500 STDMETHOD(SetLogFile
)(DWORD_PTR
) PURE
;
501 STDMETHOD(Abort
)() PURE
;
502 STDMETHOD(ShouldOperationContinue
)() PURE
;
505 //------------------------------------------------------------------
506 // wxAMMediaBackend (Active Movie)
507 //------------------------------------------------------------------
508 class WXDLLIMPEXP_MEDIA wxAMMediaThread
: public wxThread
511 virtual ExitCode
Entry();
513 class wxAMMediaBackend
* pThis
;
516 //cludgy workaround for wx events. slots would be nice :)
517 class WXDLLIMPEXP_MEDIA wxAMMediaEvtHandler
: public wxEvtHandler
520 void OnPaint(wxPaintEvent
&);
521 void OnMove(wxMoveEvent
&);
522 void OnSize(wxSizeEvent
&);
523 void OnEraseBackground(wxEraseEvent
&);
526 typedef BOOL (WINAPI
* LPAMGETERRORTEXT
)(HRESULT
, wxChar
*, DWORD
);
528 class WXDLLIMPEXP_MEDIA wxAMMediaBackend
: public wxMediaBackend
533 virtual ~wxAMMediaBackend();
535 virtual bool CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
540 const wxValidator
& validator
,
541 const wxString
& name
);
544 virtual bool Pause();
547 virtual bool Load(const wxString
& fileName
);
548 virtual bool Load(const wxURI
& location
);
550 virtual wxMediaState
GetState();
552 virtual bool SetPosition(wxLongLong where
);
553 virtual wxLongLong
GetPosition();
554 virtual wxLongLong
GetDuration();
556 virtual void Move(int x
, int y
, int w
, int h
);
557 wxSize
GetVideoSize() const;
559 virtual double GetPlaybackRate();
560 virtual bool SetPlaybackRate(double);
562 virtual double GetVolume();
563 virtual bool SetVolume(double);
567 bool SetWindowlessMode(IGraphBuilder
* pGB
,
568 IVMRWindowlessControl
** ppVMC
= NULL
);
572 wxMediaState m_state
;
573 wxCriticalSection m_rendercs
;
575 IVMRWindowlessControl
* m_pVMC
;
576 IGraphBuilder
* m_pGB
;
578 IMediaControl
* m_pMC
;
580 IMediaPosition
* m_pMS
;
583 wxAMMediaThread
* m_pThread
;
588 HMODULE m_hQuartzDll
;
589 LPAMGETERRORTEXT m_lpAMGetErrorText
;
592 friend class wxAMMediaThread
;
593 friend class wxAMMediaEvtHandler
;
595 DECLARE_DYNAMIC_CLASS(wxAMMediaBackend
)
598 //---------------------------------------------------------------------------
602 //---------------------------------------------------------------------------
604 //---------------------------------------------------------------------------
606 //---------------------------------------------------------------------------
607 #include <mmsystem.h>
609 class WXDLLIMPEXP_MEDIA wxMCIMediaBackend
: public wxMediaBackend
614 ~wxMCIMediaBackend();
616 virtual bool CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
621 const wxValidator
& validator
,
622 const wxString
& name
);
625 virtual bool Pause();
628 virtual bool Load(const wxString
& fileName
);
629 virtual bool Load(const wxURI
& location
);
631 virtual wxMediaState
GetState();
633 virtual bool SetPosition(wxLongLong where
);
634 virtual wxLongLong
GetPosition();
635 virtual wxLongLong
GetDuration();
637 virtual void Move(int x
, int y
, int w
, int h
);
638 wxSize
GetVideoSize() const;
640 virtual double GetPlaybackRate();
641 virtual bool SetPlaybackRate(double dRate
);
643 virtual double GetVolume();
644 virtual bool SetVolume(double);
646 static LRESULT CALLBACK
NotifyWndProc(HWND hWnd
, UINT nMsg
,
647 WPARAM wParam
, LPARAM lParam
);
649 LRESULT CALLBACK
OnNotifyWndProc(HWND hWnd
, UINT nMsg
,
650 WPARAM wParam
, LPARAM lParam
);
652 MCIDEVICEID m_hDev
; //Our MCI Device ID/Handler
653 wxControl
* m_ctrl
; //Parent control
654 HWND m_hNotifyWnd
; //Window to use for MCI events
655 bool m_bVideo
; //Whether or not we have video
657 DECLARE_DYNAMIC_CLASS(wxMCIMediaBackend
)
660 //---------------------------------------------------------------------------
664 //---------------------------------------------------------------------------
666 //---------------------------------------------------------------------------
668 //---------------------------------------------------------------------------
669 //#include <qtml.h> //Windoze QT include
670 //#include <QuickTimeComponents.h> //Standard QT stuff
671 #include "wx/dynlib.h"
673 //---------------------------------------------------------------------------
675 //---------------------------------------------------------------------------
676 typedef struct MovieRecord
* Movie
;
677 typedef wxInt16 OSErr
;
678 typedef wxInt32 OSStatus
;
681 typedef unsigned char Str255
[256];
682 #define StringPtr unsigned char*
683 #define newMovieActive 1
687 #define OSType unsigned long
688 #define CGrafPtr struct GrafPort *
689 #define TimeScale long
690 #define TimeBase struct TimeBaseRecord *
692 #ifndef URLDataHandlerSubType
693 #if defined(__WATCOMC__) || defined(__MINGW32__)
694 // use magic numbers for compilers which complain about multicharacter integers
695 const OSType URLDataHandlerSubType
= 1970433056;
696 const OSType VisualMediaCharacteristic
= 1702454643;
698 const OSType URLDataHandlerSubType
= 'url ';
699 const OSType VisualMediaCharacteristic
= 'eyes';
706 Str255 name
; /*Str63 on mac, Str255 on msw */
722 wide value
; /* units */
723 TimeScale scale
; /* units per second */
727 //---------------------------------------------------------------------------
729 //---------------------------------------------------------------------------
730 #define wxDL_METHOD_DEFINE( rettype, name, args, shortargs, defret ) \
731 typedef rettype (* name ## Type) args ; \
732 name ## Type pfn_ ## name; \
734 { if (m_ok) return pfn_ ## name shortargs ; return defret; }
736 #define wxDL_VOIDMETHOD_DEFINE( name, args, shortargs ) \
737 typedef void (* name ## Type) args ; \
738 name ## Type pfn_ ## name; \
740 { if (m_ok) pfn_ ## name shortargs ; }
742 #define wxDL_METHOD_LOAD( lib, name, success ) \
743 pfn_ ## name = (name ## Type) lib.GetSymbol( wxT(#name), &success ); \
744 if (!success) return false;
746 //Class that utilizes Robert Roeblings Dynamic Library Macros
747 class WXDLLIMPEXP_MEDIA wxQuickTimeLibrary
750 ~wxQuickTimeLibrary()
757 bool IsOk() const {return m_ok
;}
760 wxDynamicLibrary m_dll
;
764 wxDL_VOIDMETHOD_DEFINE( StartMovie
, (Movie m
), (m
) );
765 wxDL_VOIDMETHOD_DEFINE( StopMovie
, (Movie m
), (m
) );
766 wxDL_METHOD_DEFINE( bool, IsMovieDone
, (Movie m
), (m
), false);
767 wxDL_VOIDMETHOD_DEFINE( GoToBeginningOfMovie
, (Movie m
), (m
) );
768 wxDL_METHOD_DEFINE( OSErr
, GetMoviesError
, (), (), -1);
769 wxDL_METHOD_DEFINE( OSErr
, EnterMovies
, (), (), -1);
770 wxDL_VOIDMETHOD_DEFINE( ExitMovies
, (), () );
771 wxDL_METHOD_DEFINE( OSErr
, InitializeQTML
, (long flags
), (flags
), -1);
772 wxDL_VOIDMETHOD_DEFINE( TerminateQTML
, (), () );
774 wxDL_METHOD_DEFINE( OSErr
, NativePathNameToFSSpec
,
775 (char* inName
, FSSpec
* outFile
, long flags
),
776 (inName
, outFile
, flags
), -1);
778 wxDL_METHOD_DEFINE( OSErr
, OpenMovieFile
,
779 (const FSSpec
* fileSpec
, short * resRefNum
, wxInt8 permission
),
780 (fileSpec
, resRefNum
, permission
), -1 );
782 wxDL_METHOD_DEFINE( OSErr
, CloseMovieFile
,
783 (short resRefNum
), (resRefNum
), -1);
785 wxDL_METHOD_DEFINE( OSErr
, NewMovieFromFile
,
786 (Movie
* theMovie
, short resRefNum
, short * resId
,
787 StringPtr resName
, short newMovieFlags
,
788 bool * dataRefWasChanged
),
789 (theMovie
, resRefNum
, resId
, resName
, newMovieFlags
,
790 dataRefWasChanged
), -1);
792 wxDL_VOIDMETHOD_DEFINE( SetMovieRate
, (Movie m
, Fixed rate
), (m
, rate
) );
793 wxDL_METHOD_DEFINE( Fixed
, GetMovieRate
, (Movie m
), (m
), 0);
794 wxDL_VOIDMETHOD_DEFINE( MoviesTask
, (Movie m
, long maxms
), (m
, maxms
) );
795 wxDL_VOIDMETHOD_DEFINE( BlockMove
,
796 (const char* p1
, const char* p2
, long s
), (p1
,p2
,s
) );
797 wxDL_METHOD_DEFINE( Handle
, NewHandleClear
, (long s
), (s
), NULL
);
799 wxDL_METHOD_DEFINE( OSErr
, NewMovieFromDataRef
,
800 (Movie
* m
, short flags
, short * id
,
801 Handle dataRef
, OSType dataRefType
),
802 (m
,flags
,id
,dataRef
,dataRefType
), -1 );
804 wxDL_VOIDMETHOD_DEFINE( DisposeHandle
, (Handle h
), (h
) );
805 wxDL_VOIDMETHOD_DEFINE( GetMovieNaturalBoundsRect
, (Movie m
, Rect
* r
), (m
,r
) );
806 wxDL_METHOD_DEFINE( void*, GetMovieIndTrackType
,
807 (Movie m
, long index
, OSType type
, long flags
),
808 (m
,index
,type
,flags
), NULL
);
809 wxDL_VOIDMETHOD_DEFINE( CreatePortAssociation
,
810 (void* hWnd
, void* junk
, long morejunk
), (hWnd
, junk
, morejunk
) );
811 wxDL_METHOD_DEFINE(void*, GetNativeWindowPort
, (void* hWnd
), (hWnd
), NULL
);
812 wxDL_VOIDMETHOD_DEFINE(SetMovieGWorld
, (Movie m
, CGrafPtr port
, void* whatever
),
813 (m
, port
, whatever
) );
814 wxDL_VOIDMETHOD_DEFINE(DisposeMovie
, (Movie m
), (m
) );
815 wxDL_VOIDMETHOD_DEFINE(SetMovieBox
, (Movie m
, Rect
* r
), (m
,r
));
816 wxDL_VOIDMETHOD_DEFINE(SetMovieTimeScale
, (Movie m
, long s
), (m
,s
));
817 wxDL_METHOD_DEFINE(long, GetMovieDuration
, (Movie m
), (m
), 0);
818 wxDL_METHOD_DEFINE(TimeBase
, GetMovieTimeBase
, (Movie m
), (m
), 0);
819 wxDL_METHOD_DEFINE(TimeScale
, GetMovieTimeScale
, (Movie m
), (m
), 0);
820 wxDL_METHOD_DEFINE(long, GetMovieTime
, (Movie m
, void* cruft
), (m
,cruft
), 0);
821 wxDL_VOIDMETHOD_DEFINE(SetMovieTime
, (Movie m
, TimeRecord
* tr
), (m
,tr
) );
822 wxDL_METHOD_DEFINE(short, GetMovieVolume
, (Movie m
), (m
), 0);
823 wxDL_VOIDMETHOD_DEFINE(SetMovieVolume
, (Movie m
, short sVolume
), (m
,sVolume
) );
826 bool wxQuickTimeLibrary::Initialize()
830 if(!m_dll
.Load(wxT("qtmlClient.dll")))
835 wxDL_METHOD_LOAD( m_dll
, StartMovie
, bOk
);
836 wxDL_METHOD_LOAD( m_dll
, StopMovie
, bOk
);
837 wxDL_METHOD_LOAD( m_dll
, IsMovieDone
, bOk
);
838 wxDL_METHOD_LOAD( m_dll
, GoToBeginningOfMovie
, bOk
);
839 wxDL_METHOD_LOAD( m_dll
, GetMoviesError
, bOk
);
840 wxDL_METHOD_LOAD( m_dll
, EnterMovies
, bOk
);
841 wxDL_METHOD_LOAD( m_dll
, ExitMovies
, bOk
);
842 wxDL_METHOD_LOAD( m_dll
, InitializeQTML
, bOk
);
843 wxDL_METHOD_LOAD( m_dll
, TerminateQTML
, bOk
);
844 wxDL_METHOD_LOAD( m_dll
, NativePathNameToFSSpec
, bOk
);
845 wxDL_METHOD_LOAD( m_dll
, OpenMovieFile
, bOk
);
846 wxDL_METHOD_LOAD( m_dll
, CloseMovieFile
, bOk
);
847 wxDL_METHOD_LOAD( m_dll
, NewMovieFromFile
, bOk
);
848 wxDL_METHOD_LOAD( m_dll
, GetMovieRate
, bOk
);
849 wxDL_METHOD_LOAD( m_dll
, SetMovieRate
, bOk
);
850 wxDL_METHOD_LOAD( m_dll
, MoviesTask
, bOk
);
851 wxDL_METHOD_LOAD( m_dll
, BlockMove
, bOk
);
852 wxDL_METHOD_LOAD( m_dll
, NewHandleClear
, bOk
);
853 wxDL_METHOD_LOAD( m_dll
, NewMovieFromDataRef
, bOk
);
854 wxDL_METHOD_LOAD( m_dll
, DisposeHandle
, bOk
);
855 wxDL_METHOD_LOAD( m_dll
, GetMovieNaturalBoundsRect
, bOk
);
856 wxDL_METHOD_LOAD( m_dll
, GetMovieIndTrackType
, bOk
);
857 wxDL_METHOD_LOAD( m_dll
, CreatePortAssociation
, bOk
);
858 wxDL_METHOD_LOAD( m_dll
, GetNativeWindowPort
, bOk
);
859 wxDL_METHOD_LOAD( m_dll
, SetMovieGWorld
, bOk
);
860 wxDL_METHOD_LOAD( m_dll
, DisposeMovie
, bOk
);
861 wxDL_METHOD_LOAD( m_dll
, SetMovieBox
, bOk
);
862 wxDL_METHOD_LOAD( m_dll
, SetMovieTimeScale
, bOk
);
863 wxDL_METHOD_LOAD( m_dll
, GetMovieDuration
, bOk
);
864 wxDL_METHOD_LOAD( m_dll
, GetMovieTimeBase
, bOk
);
865 wxDL_METHOD_LOAD( m_dll
, GetMovieTimeScale
, bOk
);
866 wxDL_METHOD_LOAD( m_dll
, GetMovieTime
, bOk
);
867 wxDL_METHOD_LOAD( m_dll
, SetMovieTime
, bOk
);
868 wxDL_METHOD_LOAD( m_dll
, GetMovieVolume
, bOk
);
869 wxDL_METHOD_LOAD( m_dll
, SetMovieVolume
, bOk
);
876 class WXDLLIMPEXP_MEDIA wxQTMediaBackend
: public wxMediaBackend
882 virtual bool CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
887 const wxValidator
& validator
,
888 const wxString
& name
);
891 virtual bool Pause();
894 virtual bool Load(const wxString
& fileName
);
895 virtual bool Load(const wxURI
& location
);
897 virtual wxMediaState
GetState();
899 virtual bool SetPosition(wxLongLong where
);
900 virtual wxLongLong
GetPosition();
901 virtual wxLongLong
GetDuration();
903 virtual void Move(int x
, int y
, int w
, int h
);
904 wxSize
GetVideoSize() const;
906 virtual double GetPlaybackRate();
907 virtual bool SetPlaybackRate(double dRate
);
909 virtual double GetVolume();
910 virtual bool SetVolume(double);
915 wxSize m_bestSize
; //Original movie size
916 Movie m_movie
; //QT Movie handle/instance
917 wxControl
* m_ctrl
; //Parent control
918 bool m_bVideo
; //Whether or not we have video
919 class _wxQTTimer
* m_timer
; //Timer for streaming the movie
920 wxQuickTimeLibrary m_lib
;
922 DECLARE_DYNAMIC_CLASS(wxQTMediaBackend
)
926 //===========================================================================
928 //===========================================================================
930 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
934 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
936 IMPLEMENT_DYNAMIC_CLASS(wxAMMediaBackend
, wxMediaBackend
);
938 //---------------------------------------------------------------------------
939 // Usual debugging macros
940 //---------------------------------------------------------------------------
942 #include "wx/msgdlg.h"
943 #define MAX_ERROR_TEXT_LEN 160
945 // FIXME : Just use wxASSERT_MSG here instead of msgdlg - but
946 // stackwalker still crashes win2k, so do msgdlg for now...
948 #define wxAMVERIFY(x) \
950 HRESULT hrdsv = (x); \
951 if ( FAILED(hrdsv) ) \
953 wxChar szError[MAX_ERROR_TEXT_LEN]; \
954 if( m_lpAMGetErrorText != NULL && \
955 (*m_lpAMGetErrorText)(hrdsv, szError, MAX_ERROR_TEXT_LEN) == 0) \
957 wxMessageBox( wxString::Format(wxT("DirectShow error \"%s\" \n")\
958 wxT("(numeric %i)\n")\
959 wxT("occured at line %i in ") \
960 wxT("mediactrl.cpp"), \
961 (int)hrdsv, szError, __LINE__) ); \
966 wxMessageBox( wxString::Format(wxT("Unknown error (%i) ") \
968 wxT(" line %i in mediactrl.cpp."), \
969 (int)hrdsv, __LINE__) ); \
974 #define wxVERIFY(x) wxASSERT((x))
976 #define wxAMVERIFY(x) (x)
977 #define wxVERIFY(x) (x)
980 //---------------------------------------------------------------------------
981 // Standard macros for ease of use
982 //---------------------------------------------------------------------------
983 #define SAFE_RELEASE(x) { if (x) x->Release(); x = NULL; }
985 //---------------------------------------------------------------------------
986 // wxAMMediaBackend Constructor
988 // Sets m_hNotifyWnd to NULL to signify that we haven't loaded anything yet
989 //---------------------------------------------------------------------------
990 wxAMMediaBackend::wxAMMediaBackend() : m_state(wxMEDIASTATE_STOPPED
),
998 //---------------------------------------------------------------------------
999 // wxAMMediaBackend Destructor
1001 // Cleans up everything
1002 //---------------------------------------------------------------------------
1003 wxAMMediaBackend::~wxAMMediaBackend()
1009 ::FreeLibrary(m_hQuartzDll
);
1013 //---------------------------------------------------------------------------
1014 // wxAMMediaBackend::CreateControl
1016 // 1) Check to see if Active Movie supports windowless controls
1017 // 2) Connect events to the media control and its TLW
1018 //---------------------------------------------------------------------------
1019 bool wxAMMediaBackend::CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
1024 const wxValidator
& validator
,
1025 const wxString
& name
)
1028 m_hQuartzDll
= ::LoadLibrary(wxT("quartz.dll"));
1031 m_lpAMGetErrorText
= (LPAMGETERRORTEXT
) ::GetProcAddress(
1033 wxString::Format(wxT("AMGetErrorText%s"),
1035 #ifdef __WXUNICODE__
1043 ).mb_str(wxConvLocal
)
1049 //Make sure a valid windowless video mixing interface exists
1051 if( CoCreateInstance(CLSID_FilgraphManager
, NULL
,
1052 CLSCTX_INPROC_SERVER
,
1053 IID_IGraphBuilder
, (void**)&pGB
) != 0 )
1056 if( !SetWindowlessMode(pGB
) )
1064 // By default wxWindow(s) is created with a border -
1065 // so we need to get rid of those, and create with
1066 // wxCLIP_CHILDREN, so that if the driver/backend
1067 // is a child window, it refreshes properly
1069 if ( !ctrl
->wxControl::Create(parent
, id
, pos
, size
,
1070 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
| wxCLIP_CHILDREN
,
1079 //TODO: Greg Hazel reports problems with this... but win2k seems fine on mine...
1080 //-------------------------------------------------------------------------------
1081 // My problem with this was only with a previous patch, probably the third rewrite
1082 // fixed it as a side-effect. In fact, the erase background style of drawing not
1083 // only works now, but is much better than paint-based updates (the paint event
1084 // handler flickers if the wxMediaCtrl shares a sizer with another child window,
1085 // or is on a notebook)
1087 m_ctrl
->Connect(m_ctrl
->GetId(), wxEVT_ERASE_BACKGROUND
,
1088 wxEraseEventHandler(wxAMMediaEvtHandler::OnEraseBackground
),
1089 NULL
, (wxEvtHandler
*) this);
1090 //m_ctrl->Connect(m_ctrl->GetId(), wxEVT_PAINT,
1091 // wxPaintEventHandler(wxAMMediaEvtHandler::OnPaint),
1092 // NULL, (wxEvtHandler*) this);
1095 // As noted below, we need to catch the Top Level Window's
1096 // move events because they are not sent to us if the media control
1097 // size remains the same but it actually moves in window coordinates
1099 wxWindow
* pTheTLW
= m_ctrl
->GetParent();
1100 while( pTheTLW
->GetParent() )
1101 pTheTLW
= pTheTLW
->GetParent();
1104 // FIXMEHACKFIXMEHACKFIXME
1105 // This is really nasty... basically the deal is not only above
1106 // but the repainting is messed up when the parent is maximized
1107 // too, so we've got to catch all 4 events!
1109 m_ctrl
->Connect(m_ctrl
->GetId(), wxEVT_MOVE
,
1110 wxMoveEventHandler(wxAMMediaEvtHandler::OnMove
),
1111 NULL
, (wxEvtHandler
*) this);
1112 m_ctrl
->Connect(m_ctrl
->GetId(), wxEVT_SIZE
,
1113 wxSizeEventHandler(wxAMMediaEvtHandler::OnSize
),
1114 NULL
, (wxEvtHandler
*) this);
1116 pTheTLW
->Connect(pTheTLW
->GetId(), wxEVT_MOVE
,
1117 wxMoveEventHandler(wxAMMediaEvtHandler::OnMove
),
1118 NULL
, (wxEvtHandler
*) this);
1119 pTheTLW
->Connect(pTheTLW
->GetId(), wxEVT_SIZE
,
1120 wxSizeEventHandler(wxAMMediaEvtHandler::OnSize
),
1121 NULL
, (wxEvtHandler
*) this);
1129 //---------------------------------------------------------------------------
1130 // wxAMMediaBackend::SetWindowlessMode
1132 // Adds a Video Mixing Renderer to a Filter Graph and obtains the
1133 // windowless control from it
1134 //---------------------------------------------------------------------------
1135 bool wxAMMediaBackend::SetWindowlessMode(IGraphBuilder
* pGB
,
1136 IVMRWindowlessControl
** ppVMC
)
1139 // Create and add a custom Video Mixing Render to the graph
1142 if( CoCreateInstance(CLSID_VideoMixingRenderer
, NULL
, CLSCTX_INPROC_SERVER
,
1143 IID_IBaseFilter
, (void**)&pVMR
) != 0 )
1146 if ( pGB
->AddFilter(pVMR
, L
"Video Mixing Renderer") != 0)
1153 // Set the graph to windowless mode
1155 IVMRFilterConfig
* pConfig
;
1156 if( pVMR
->QueryInterface(IID_IVMRFilterConfig
, (void**)&pConfig
) != 0 )
1162 if( pConfig
->SetRenderingMode(2) != 0) //2 == VMRMode_Windowless
1172 // Obtain the windowless control
1174 IVMRWindowlessControl
* pVMC
;
1175 if( pVMR
->QueryInterface(IID_IVMRWindowlessControl
, (void**)&pVMC
) != 0 )
1193 //---------------------------------------------------------------------------
1194 // wxAMMediaBackend::Load (file version)
1196 // 1) Cleans up previously loaded data
1197 // 2) Creates a filter graph
1198 // 3) Add a video mixer, set the graph to windowless mode and clip
1199 // output to our media control
1200 // 4) Query interfaces to use later
1201 // 5) Get native video size (which becomes our best size)
1202 // 6) Refresh parent's sizers
1203 // 7) Start event/rendering thread
1204 //---------------------------------------------------------------------------
1205 bool wxAMMediaBackend::Load(const wxString
& fileName
)
1207 //if previously loaded cleanup
1211 //Create interfaces - we already checked for success in CreateControl
1212 CoCreateInstance(CLSID_FilgraphManager
, NULL
, CLSCTX_INPROC_SERVER
,
1213 IID_IGraphBuilder
, (void**)&m_pGB
);
1216 // Set and clip output
1217 SetWindowlessMode(m_pGB
, &m_pVMC
);
1218 if( m_pVMC
->SetVideoClippingWindow((HWND
)m_ctrl
->GetHandle()) != 0 )
1220 m_bestSize
.x
= m_bestSize
.y
= 0;
1224 //load the graph & render
1225 if( m_pGB
->RenderFile(fileName
.wc_str(wxConvLocal
), NULL
) != 0 )
1228 //Get the interfaces, all of them
1229 wxAMVERIFY( m_pGB
->QueryInterface(IID_IMediaEvent
, (void**)&m_pME
) );
1230 wxAMVERIFY( m_pGB
->QueryInterface(IID_IMediaControl
, (void**)&m_pMC
) );
1231 wxAMVERIFY( m_pGB
->QueryInterface(IID_IMediaPosition
, (void**)&m_pMS
) );
1232 wxAMVERIFY( m_pGB
->QueryInterface(IID_IBasicAudio
, (void**)&m_pBA
) );
1234 // Get original video size
1235 if( m_pVMC
->GetNativeVideoSize((LONG
*)&m_bestSize
.x
, (LONG
*)&m_bestSize
.y
,
1238 m_bestSize
.x
= m_bestSize
.y
= 0;
1242 if(m_bestSize
.x
== 0 && m_bestSize
.y
== 0)
1248 // Force the parent window of this control to recalculate
1249 // the size of this if sizers are being used
1250 // and render the results immediately
1252 m_ctrl
->InvalidateBestSize();
1253 m_ctrl
->GetParent()->Layout();
1254 m_ctrl
->GetParent()->Refresh();
1255 m_ctrl
->GetParent()->Update();
1256 m_ctrl
->SetSize(m_ctrl
->GetSize());
1258 m_pThread
= new wxAMMediaThread
;
1259 m_pThread
->pThis
= this;
1260 m_pThread
->Create();
1266 //---------------------------------------------------------------------------
1267 // wxAMMediaBackend::Load (URL Version)
1269 // Loads media from a URL. Interestingly enough DirectShow
1270 // appears (?) to escape the URL for us, at least on normal
1272 //---------------------------------------------------------------------------
1273 bool wxAMMediaBackend::Load(const wxURI
& location
)
1275 return Load(location
.BuildUnescapedURI());
1278 //---------------------------------------------------------------------------
1279 // wxAMMediaBackend::Play
1281 // Plays the stream. If it is non-seekable, it will restart it (implicit).
1283 // Note that we use SUCCEEDED here because run/pause/stop tend to be overly
1284 // picky and return warnings on pretty much every call
1285 //---------------------------------------------------------------------------
1286 bool wxAMMediaBackend::Play()
1288 wxCriticalSectionLocker
lock(m_rendercs
);
1290 if( SUCCEEDED(m_pMC
->Run()) )
1292 m_state
= wxMEDIASTATE_PLAYING
;
1293 m_ctrl
->Refresh(); //videoless control finicky about refreshing
1300 //---------------------------------------------------------------------------
1301 // wxAMMediaBackend::Pause
1303 // Pauses the stream.
1304 //---------------------------------------------------------------------------
1305 bool wxAMMediaBackend::Pause()
1307 wxCriticalSectionLocker
lock(m_rendercs
);
1309 if( SUCCEEDED(m_pMC
->Pause()) )
1311 m_state
= wxMEDIASTATE_PAUSED
;
1318 //---------------------------------------------------------------------------
1319 // wxAMMediaBackend::Stop
1321 // Stops the stream.
1322 //---------------------------------------------------------------------------
1323 bool wxAMMediaBackend::Stop()
1325 wxCriticalSectionLocker
lock(m_rendercs
);
1327 if( SUCCEEDED(m_pMC
->Stop()) )
1329 //We don't care if it can't get to the beginning in directshow -
1330 //it could be a non-seeking filter (wince midi) in which case playing
1331 //starts all over again
1332 wxAMMediaBackend::SetPosition(0);
1334 m_state
= wxMEDIASTATE_STOPPED
;
1341 //---------------------------------------------------------------------------
1342 // wxAMMediaBackend::SetPosition
1344 // 1) Translates the current position's time to directshow time,
1345 // which is in a scale of 1 second (in a double)
1346 // 2) Sets the play position of the IMediaSeeking interface -
1347 // passing NULL as the stop position means to keep the old
1349 //---------------------------------------------------------------------------
1350 bool wxAMMediaBackend::SetPosition(wxLongLong where
)
1352 return SUCCEEDED( m_pMS
->put_CurrentPosition(
1353 ((LONGLONG
)where
.GetValue()) / 1000.0
1357 //---------------------------------------------------------------------------
1358 // wxAMMediaBackend::GetPosition
1360 // 1) Obtains the current play and stop positions from IMediaSeeking
1361 // 2) Returns the play position translated to our time base
1362 //---------------------------------------------------------------------------
1363 wxLongLong
wxAMMediaBackend::GetPosition()
1366 wxAMVERIFY( m_pMS
->get_CurrentPosition(&outCur
) );
1368 //h,m,s,milli - outdur is in 1 second (double)
1376 //---------------------------------------------------------------------------
1377 // wxAMMediaBackend::SetVolume
1379 // Sets the volume through the IBasicAudio interface -
1380 // value ranges from 0 (MAX volume) to -10000 (minimum volume).
1381 // -100 per decibel.
1382 //---------------------------------------------------------------------------
1383 bool wxAMMediaBackend::SetVolume(double dVolume
)
1385 return SUCCEEDED(m_pBA
->put_Volume( (long) ((dVolume
-1.0) * 10000.0) ) );
1388 //---------------------------------------------------------------------------
1389 // wxAMMediaBackend::GetVolume
1391 // Gets the volume through the IBasicAudio interface -
1392 // value ranges from 0 (MAX volume) to -10000 (minimum volume).
1393 // -100 per decibel.
1394 //---------------------------------------------------------------------------
1395 double wxAMMediaBackend::GetVolume()
1398 if ( SUCCEEDED( m_pBA
->get_Volume(&lVolume
) ) )
1399 return (((double)(lVolume
+ 10000)) / 10000.0);
1403 //---------------------------------------------------------------------------
1404 // wxAMMediaBackend::GetDuration
1406 // 1) Obtains the duration of the media from IAMMultiMediaStream
1407 // 2) Converts that value to our time base, and returns it
1409 // NB: With VBR MP3 files the default DirectShow MP3 render does not
1410 // read the Xing header correctly, resulting in skewed values for duration
1412 //---------------------------------------------------------------------------
1413 wxLongLong
wxAMMediaBackend::GetDuration()
1416 wxAMVERIFY( m_pMS
->get_Duration(&outDuration
) );
1418 //h,m,s,milli - outdur is in 1 second (double)
1419 outDuration
*= 1000;
1421 ll
.Assign(outDuration
);
1426 //---------------------------------------------------------------------------
1427 // wxAMMediaBackend::GetState
1429 // Returns the cached state
1430 //---------------------------------------------------------------------------
1431 wxMediaState
wxAMMediaBackend::GetState()
1436 //---------------------------------------------------------------------------
1437 // wxAMMediaBackend::GetPlaybackRate
1439 // Pretty simple way of obtaining the playback rate from
1440 // the IMediaSeeking interface
1441 //---------------------------------------------------------------------------
1442 double wxAMMediaBackend::GetPlaybackRate()
1445 wxAMVERIFY( m_pMS
->get_Rate(&dRate
) );
1449 //---------------------------------------------------------------------------
1450 // wxAMMediaBackend::SetPlaybackRate
1452 // Sets the playback rate of the media - DirectShow is pretty good
1453 // about this, actually
1454 //---------------------------------------------------------------------------
1455 bool wxAMMediaBackend::SetPlaybackRate(double dRate
)
1457 return m_pMS
->put_Rate(dRate
) == 0;
1460 //---------------------------------------------------------------------------
1461 // wxAMMediaBackend::Cleanup
1463 // Releases all the directshow interfaces we use
1464 // TODO: Maybe only create one instance of IAMMultiMediaStream and reuse it
1465 // rather than recreating it each time?
1466 //---------------------------------------------------------------------------
1467 void wxAMMediaBackend::Cleanup()
1469 m_pThread
->Delete();
1472 // Release and zero DirectShow interfaces
1473 SAFE_RELEASE(m_pMC
);
1474 SAFE_RELEASE(m_pME
);
1475 SAFE_RELEASE(m_pMS
);
1476 SAFE_RELEASE(m_pBA
);
1477 SAFE_RELEASE(m_pGB
);
1478 SAFE_RELEASE(m_pVMC
);
1482 //---------------------------------------------------------------------------
1483 // wxAMMediaBackend::GetVideoSize
1485 // Obtains the cached original video size
1486 //---------------------------------------------------------------------------
1487 wxSize
wxAMMediaBackend::GetVideoSize() const
1492 //---------------------------------------------------------------------------
1493 // wxAMMediaBackend::Move
1495 // We take care of this in our redrawing
1496 //---------------------------------------------------------------------------
1497 void wxAMMediaBackend::Move(int WXUNUSED(x
), int WXUNUSED(y
),
1500 if(m_pVMC
&& m_bVideo
)
1502 RECT srcRect
, destRect
;
1504 //portion of video to display in window
1505 srcRect
.top
= 0; srcRect
.left
= 0;
1506 srcRect
.bottom
= m_bestSize
.y
; srcRect
.right
= m_bestSize
.x
;
1518 //position in window client coordinates to display and stretch to
1519 destRect
.top
= 0; destRect
.left
= 0;
1520 destRect
.bottom
= h
; destRect
.right
= w
;
1522 //set the windowless control positions
1523 if( m_pVMC
->SetVideoPosition(&srcRect
, &destRect
) != 0 )
1525 wxASSERT_MSG(false, wxT("Could not set video position!"));
1529 //oddly enough, it doesn't redraw the frame after moving...
1530 //TODO: Use wxClientDC?
1531 HDC hdc = ::GetDC((HWND)m_ctrl->GetHandle());
1532 if( m_pVMC->RepaintVideo((HWND)m_ctrl->GetHandle(),
1537 ::ReleaseDC((HWND)m_ctrl->GetHandle(), hdc);
1542 //---------------------------------------------------------------------------
1543 // wxAMMediaEvtHandler::OnMove
1545 // Oddly enough Move isn't called on MSW when the parent moves
1546 // and the child (us) doesn't, so we have to do it twice I guess :(
1547 //---------------------------------------------------------------------------
1548 void wxAMMediaEvtHandler::OnMove(wxMoveEvent
& evt
)
1550 wxAMMediaBackend
* pThis
= (wxAMMediaBackend
*) this;
1551 pThis
->Move(pThis
->m_ctrl
->GetPosition().x
,
1552 pThis
->m_ctrl
->GetPosition().y
,
1553 pThis
->m_ctrl
->GetSize().x
,
1554 pThis
->m_ctrl
->GetSize().y
);
1557 void wxAMMediaEvtHandler::OnSize(wxSizeEvent
& evt
)
1559 wxAMMediaBackend
* pThis
= (wxAMMediaBackend
*) this;
1560 pThis
->Move(pThis
->m_ctrl
->GetPosition().x
,
1561 pThis
->m_ctrl
->GetPosition().y
,
1562 pThis
->m_ctrl
->GetSize().x
,
1563 pThis
->m_ctrl
->GetSize().y
);
1567 //---------------------------------------------------------------------------
1568 // wxAMMediaThread::Entry
1570 // Render the current movie frame
1571 //---------------------------------------------------------------------------
1572 wxThread::ExitCode
wxAMMediaThread::Entry()
1574 while(!TestDestroy())
1581 // DirectShow keeps a list of queued events, and we need
1582 // to go through them one by one, stopping at (Hopefully only one)
1583 // EC_COMPLETE message
1585 while( pThis
->m_pME
->GetEvent(&evCode
, (LONG_PTR
*) &evParam1
,
1586 (LONG_PTR
*) &evParam2
, 0) == 0 )
1588 // Cleanup memory that GetEvent allocated
1589 if( pThis
->m_pME
->FreeEventParams(evCode
, evParam1
, evParam2
) != 0 )
1594 // If this is the end of the clip, notify handler
1595 if(1 == evCode
) //EC_COMPLETE
1608 //---------------------------------------------------------------------------
1609 // wxAMMediaBackend::OnStop
1611 // Handle stopping when the stream ends
1612 //---------------------------------------------------------------------------
1613 void wxAMMediaBackend::OnStop()
1615 //send the event to our child
1616 wxMediaEvent
theEvent(wxEVT_MEDIA_STOP
, m_ctrl
->GetId());
1617 m_ctrl
->ProcessEvent(theEvent
);
1619 //if the user didn't veto it, stop the stream
1620 if (theEvent
.IsAllowed())
1622 //Interestingly enough, DirectShow does not actually stop
1623 //the filters - even when it reaches the end!
1626 //send the event to our child
1627 wxMediaEvent
theEvent(wxEVT_MEDIA_FINISHED
,
1629 m_ctrl
->ProcessEvent(theEvent
);
1633 //---------------------------------------------------------------------------
1634 // wxAMMediaEvtHandler::OnEraseBackground
1636 // Tell WX not to erase the background of our control window
1637 //---------------------------------------------------------------------------
1638 void wxAMMediaEvtHandler::OnEraseBackground(wxEraseEvent
& evt
)
1640 wxAMMediaBackend
* pThis
= (wxAMMediaBackend
*) this;
1641 if(pThis
->m_pVMC
&& pThis
->m_bVideo
)
1643 //TODO: Use wxClientDC?
1644 HDC hdc
= ::GetDC((HWND
)pThis
->m_ctrl
->GetHandle());
1645 if( pThis
->m_pVMC
->RepaintVideo((HWND
)pThis
->m_ctrl
->GetHandle(),
1650 ::ReleaseDC((HWND
)pThis
->m_ctrl
->GetHandle(), hdc
);
1658 //---------------------------------------------------------------------------
1659 // wxAMMediaEvtHandler::OnPaint
1662 //---------------------------------------------------------------------------
1663 void wxAMMediaEvtHandler::OnPaint(wxPaintEvent
& WXUNUSED(evt
))
1665 wxAMMediaBackend
* pThis
= (wxAMMediaBackend
*) this;
1666 wxPaintDC
dc(pThis
->m_ctrl
);
1667 if( pThis
->m_pVMC
&& pThis
->m_bVideo
)
1669 if( pThis
->m_pVMC
->RepaintVideo((HWND
)pThis
->m_ctrl
->GetHandle(),
1670 (HDC
)dc
.GetHDC()) != 0 )
1677 //---------------------------------------------------------------------------
1678 // End of wxAMMediaBackend
1679 //---------------------------------------------------------------------------
1681 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1683 // wxMCIMediaBackend
1685 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1687 IMPLEMENT_DYNAMIC_CLASS(wxMCIMediaBackend
, wxMediaBackend
);
1689 //---------------------------------------------------------------------------
1690 // Usual debugging macros for MCI returns
1691 //---------------------------------------------------------------------------
1694 #define wxMCIVERIFY(arg) \
1697 if ( (nRet = (arg)) != 0) \
1700 mciGetErrorString(nRet, sz, 5000); \
1701 wxFAIL_MSG(wxString::Format(_T("MCI Error:%s"), sz)); \
1705 #define wxMCIVERIFY(arg) (arg);
1708 //---------------------------------------------------------------------------
1709 // Simulation for <digitalv.h>
1711 // Mingw and possibly other compilers don't have the digitalv.h header
1712 // that is needed to have some essential features of mci work with
1713 // windows - so we provide the declarations for the types we use here
1714 //---------------------------------------------------------------------------
1717 DWORD_PTR dwCallback
;
1718 #ifdef MCI_USE_OFFEXT
1724 } MCI_DGV_RECT_PARMS
;
1727 DWORD_PTR dwCallback
;
1737 } MCI_DGV_WINDOW_PARMS
;
1740 DWORD_PTR dwCallback
;
1745 } MCI_DGV_SET_PARMS
;
1748 DWORD_PTR dwCallback
;
1752 wxChar
* lpstrAlgorithm
;
1753 wxChar
* lpstrQuality
;
1754 } MCI_DGV_SETAUDIO_PARMS
;
1756 //---------------------------------------------------------------------------
1757 // wxMCIMediaBackend Constructor
1759 // Here we don't need to do much except say we don't have any video :)
1760 //---------------------------------------------------------------------------
1761 wxMCIMediaBackend::wxMCIMediaBackend() : m_hNotifyWnd(NULL
), m_bVideo(false)
1765 //---------------------------------------------------------------------------
1766 // wxMCIMediaBackend Destructor
1768 // We close the mci device - note that there may not be an mci device here,
1769 // or it may fail - but we don't really care, since we're destructing
1770 //---------------------------------------------------------------------------
1771 wxMCIMediaBackend::~wxMCIMediaBackend()
1775 mciSendCommand(m_hDev
, MCI_CLOSE
, 0, 0);
1776 DestroyWindow(m_hNotifyWnd
);
1777 m_hNotifyWnd
= NULL
;
1781 //---------------------------------------------------------------------------
1782 // wxMCIMediaBackend::Create
1784 // Here we just tell wxMediaCtrl that mci does exist (which it does, on all
1785 // msw systems, at least in some form dating back to win16 days)
1786 //---------------------------------------------------------------------------
1787 bool wxMCIMediaBackend::CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
1792 const wxValidator
& validator
,
1793 const wxString
& name
)
1797 // By default wxWindow(s) is created with a border -
1798 // so we need to get rid of those, and create with
1799 // wxCLIP_CHILDREN, so that if the driver/backend
1800 // is a child window, it refereshes properly
1802 if ( !ctrl
->wxControl::Create(parent
, id
, pos
, size
,
1803 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
| wxCLIP_CHILDREN
,
1811 //---------------------------------------------------------------------------
1812 // wxMCIMediaBackend::Load (file version)
1814 // Here we have MCI load a file and device, set the time format to our
1815 // default (milliseconds), and set the video (if any) to play in the control
1816 //---------------------------------------------------------------------------
1817 bool wxMCIMediaBackend::Load(const wxString
& fileName
)
1820 //if the user already called load close the previous MCI device
1824 mciSendCommand(m_hDev
, MCI_CLOSE
, 0, 0);
1825 DestroyWindow(m_hNotifyWnd
);
1826 m_hNotifyWnd
= NULL
;
1830 //Opens a file and has MCI select a device. Normally you'd put
1831 //MCI_OPEN_TYPE in addition to MCI_OPEN_ELEMENT - however if you
1832 //omit this it tells MCI to select the device instead. This is
1833 //good because we have no reliable way of "enumerating" the devices
1836 MCI_OPEN_PARMS openParms
;
1837 openParms
.lpstrElementName
= (wxChar
*) fileName
.c_str();
1839 if ( mciSendCommand(0, MCI_OPEN
, MCI_OPEN_ELEMENT
,
1840 (DWORD
)(LPVOID
)&openParms
) != 0)
1843 m_hDev
= openParms
.wDeviceID
;
1846 //Now set the time format for the device to milliseconds
1848 MCI_SET_PARMS setParms
;
1849 setParms
.dwCallback
= 0;
1850 setParms
.dwTimeFormat
= MCI_FORMAT_MILLISECONDS
;
1852 if (mciSendCommand(m_hDev
, MCI_SET
, MCI_SET_TIME_FORMAT
,
1853 (DWORD
)(LPVOID
)&setParms
) != 0)
1857 //Now tell the MCI device to display the video in our wxMediaCtrl
1859 MCI_DGV_WINDOW_PARMS windowParms
;
1860 windowParms
.hWnd
= (HWND
)m_ctrl
->GetHandle();
1862 m_bVideo
= (mciSendCommand(m_hDev
, MCI_WINDOW
,
1863 0x00010000L
, //MCI_DGV_WINDOW_HWND
1864 (DWORD
)(LPVOID
)&windowParms
) == 0);
1867 // Create a hidden window and register to handle
1869 // Note that wxCanvasClassName is already registered
1870 // and used by all wxWindows and normal wxControls
1872 m_hNotifyWnd
= ::CreateWindow
1886 wxLogSysError( wxT("Could not create hidden needed for ")
1887 wxT("registering for DirectShow events!") );
1892 wxSetWindowProc(m_hNotifyWnd
, wxMCIMediaBackend::NotifyWndProc
);
1894 ::SetWindowLong(m_hNotifyWnd
, GWL_USERDATA
,
1898 //Here, if the parent of the control has a sizer - we
1899 //tell it to recalculate the size of this control since
1900 //the user opened a separate media file
1902 m_ctrl
->InvalidateBestSize();
1903 m_ctrl
->GetParent()->Layout();
1904 m_ctrl
->GetParent()->Refresh();
1905 m_ctrl
->GetParent()->Update();
1906 m_ctrl
->SetSize(m_ctrl
->GetSize());
1911 //---------------------------------------------------------------------------
1912 // wxMCIMediaBackend::Load (URL version)
1914 // MCI doesn't support URLs directly (?)
1916 // TODO: Use wxURL/wxFileSystem and mmioInstallProc
1917 //---------------------------------------------------------------------------
1918 bool wxMCIMediaBackend::Load(const wxURI
& WXUNUSED(location
))
1923 //---------------------------------------------------------------------------
1924 // wxMCIMediaBackend::Play
1926 // Plays/Resumes the MCI device... a couple notes:
1927 // 1) Certain drivers will crash and burn if we don't pass them an
1928 // MCI_PLAY_PARMS, despite the documentation that says otherwise...
1929 // 2) There is a MCI_RESUME command, but MCI_PLAY does the same thing
1930 // and will resume from a stopped state also, so there's no need to
1931 // call both, for example
1932 //---------------------------------------------------------------------------
1933 bool wxMCIMediaBackend::Play()
1935 MCI_PLAY_PARMS playParms
;
1936 playParms
.dwCallback
= (DWORD
)m_hNotifyWnd
;
1938 bool bOK
= ( mciSendCommand(m_hDev
, MCI_PLAY
, MCI_NOTIFY
,
1939 (DWORD
)(LPVOID
)&playParms
) == 0 );
1942 m_ctrl
->Show(m_bVideo
);
1947 //---------------------------------------------------------------------------
1948 // wxMCIMediaBackend::Pause
1950 // Pauses the MCI device - nothing special
1951 //---------------------------------------------------------------------------
1952 bool wxMCIMediaBackend::Pause()
1954 return (mciSendCommand(m_hDev
, MCI_PAUSE
, MCI_WAIT
, 0) == 0);
1957 //---------------------------------------------------------------------------
1958 // wxMCIMediaBackend::Stop
1960 // Stops the MCI device & seeks to the beginning as wxMediaCtrl docs outline
1961 //---------------------------------------------------------------------------
1962 bool wxMCIMediaBackend::Stop()
1964 return (mciSendCommand(m_hDev
, MCI_STOP
, MCI_WAIT
, 0) == 0) &&
1965 (mciSendCommand(m_hDev
, MCI_SEEK
, MCI_SEEK_TO_START
, 0) == 0);
1968 //---------------------------------------------------------------------------
1969 // wxMCIMediaBackend::GetState
1971 // Here we get the state and convert it to a wxMediaState -
1972 // since we use direct comparisons with MCI_MODE_PLAY and
1973 // MCI_MODE_PAUSE, we don't care if the MCI_STATUS call
1975 //---------------------------------------------------------------------------
1976 wxMediaState
wxMCIMediaBackend::GetState()
1978 MCI_STATUS_PARMS statusParms
;
1979 statusParms
.dwItem
= MCI_STATUS_MODE
;
1981 mciSendCommand(m_hDev
, MCI_STATUS
, MCI_STATUS_ITEM
,
1982 (DWORD
)(LPVOID
)&statusParms
);
1984 if(statusParms
.dwReturn
== MCI_MODE_PAUSE
)
1985 return wxMEDIASTATE_PAUSED
;
1986 else if(statusParms
.dwReturn
== MCI_MODE_PLAY
)
1987 return wxMEDIASTATE_PLAYING
;
1989 return wxMEDIASTATE_STOPPED
;
1992 //---------------------------------------------------------------------------
1993 // wxMCIMediaBackend::SetPosition
1995 // Here we set the position of the device in the stream.
1996 // Note that MCI actually stops the device after you seek it if the
1997 // device is playing/paused, so we need to play the file after
1998 // MCI seeks like normal APIs would
1999 //---------------------------------------------------------------------------
2000 bool wxMCIMediaBackend::SetPosition(wxLongLong where
)
2002 MCI_SEEK_PARMS seekParms
;
2003 seekParms
.dwCallback
= 0;
2004 #if wxUSE_LONGLONG_NATIVE && !wxUSE_LONGLONG_WX
2005 seekParms
.dwTo
= (DWORD
)where
.GetValue();
2006 #else /* wxUSE_LONGLONG_WX */
2007 /* no way to return it in one piece */
2008 wxASSERT( where
.GetHi()==0 );
2009 seekParms
.dwTo
= (DWORD
)where
.GetLo();
2010 #endif /* wxUSE_LONGLONG_* */
2012 //device was playing?
2013 bool bReplay
= GetState() == wxMEDIASTATE_PLAYING
;
2015 if( mciSendCommand(m_hDev
, MCI_SEEK
, MCI_TO
,
2016 (DWORD
)(LPVOID
)&seekParms
) != 0)
2019 //If the device was playing, resume it
2026 //---------------------------------------------------------------------------
2027 // wxMCIMediaBackend::GetPosition
2029 // Gets the position of the device in the stream using the current
2030 // time format... nothing special here...
2031 //---------------------------------------------------------------------------
2032 wxLongLong
wxMCIMediaBackend::GetPosition()
2034 MCI_STATUS_PARMS statusParms
;
2035 statusParms
.dwItem
= MCI_STATUS_POSITION
;
2037 if (mciSendCommand(m_hDev
, MCI_STATUS
, MCI_STATUS_ITEM
,
2038 (DWORD
)(LPSTR
)&statusParms
) != 0)
2041 return statusParms
.dwReturn
;
2044 //---------------------------------------------------------------------------
2045 // wxMCIMediaBackend::GetVolume
2047 // Gets the volume of the current media via the MCI_DGV_STATUS_VOLUME
2048 // message. Value ranges from 0 (minimum) to 1000 (maximum volume).
2049 //---------------------------------------------------------------------------
2050 double wxMCIMediaBackend::GetVolume()
2052 MCI_STATUS_PARMS statusParms
;
2053 statusParms
.dwCallback
= 0;
2054 statusParms
.dwItem
= 0x4019; //MCI_DGV_STATUS_VOLUME
2056 if (mciSendCommand(m_hDev
, MCI_STATUS
, MCI_STATUS_ITEM
,
2057 (DWORD
)(LPSTR
)&statusParms
) != 0)
2060 return ((double)statusParms
.dwReturn
) / 1000.0;
2063 //---------------------------------------------------------------------------
2064 // wxMCIMediaBackend::SetVolume
2066 // Sets the volume of the current media via the MCI_DGV_SETAUDIO_VOLUME
2067 // message. Value ranges from 0 (minimum) to 1000 (maximum volume).
2068 //---------------------------------------------------------------------------
2069 bool wxMCIMediaBackend::SetVolume(double dVolume
)
2071 MCI_DGV_SETAUDIO_PARMS audioParms
;
2072 audioParms
.dwCallback
= 0;
2073 audioParms
.dwItem
= 0x4002; //MCI_DGV_SETAUDIO_VOLUME
2074 audioParms
.dwValue
= (DWORD
) (dVolume
* 1000.0);
2075 audioParms
.dwOver
= 0;
2076 audioParms
.lpstrAlgorithm
= NULL
;
2077 audioParms
.lpstrQuality
= NULL
;
2079 if (mciSendCommand(m_hDev
, 0x0873, //MCI_SETAUDIO
2080 0x00800000L
| 0x01000000L
, //MCI_DGV_SETAUDIO+(_ITEM | _VALUE)
2081 (DWORD
)(LPSTR
)&audioParms
) != 0)
2086 //---------------------------------------------------------------------------
2087 // wxMCIMediaBackend::GetDuration
2089 // Gets the duration of the stream... nothing special
2090 //---------------------------------------------------------------------------
2091 wxLongLong
wxMCIMediaBackend::GetDuration()
2093 MCI_STATUS_PARMS statusParms
;
2094 statusParms
.dwItem
= MCI_STATUS_LENGTH
;
2096 if (mciSendCommand(m_hDev
, MCI_STATUS
, MCI_STATUS_ITEM
,
2097 (DWORD
)(LPSTR
)&statusParms
) != 0)
2100 return statusParms
.dwReturn
;
2103 //---------------------------------------------------------------------------
2104 // wxMCIMediaBackend::Move
2106 // Moves the window to a location
2107 //---------------------------------------------------------------------------
2108 void wxMCIMediaBackend::Move(int WXUNUSED(x
), int WXUNUSED(y
),
2111 if (m_hNotifyWnd
&& m_bVideo
)
2113 MCI_DGV_RECT_PARMS putParms
; //ifdefed MCI_DGV_PUT_PARMS
2114 memset(&putParms
, 0, sizeof(MCI_DGV_RECT_PARMS
));
2115 putParms
.rc
.bottom
= h
;
2116 putParms
.rc
.right
= w
;
2118 //wxStackWalker will crash and burn here on assert
2119 //and mci doesn't like 0 and 0 for some reason (out of range )
2120 //so just don't it in that case
2123 wxMCIVERIFY( mciSendCommand(m_hDev
, MCI_PUT
,
2124 0x00040000L
, //MCI_DGV_PUT_DESTINATION
2125 (DWORD
)(LPSTR
)&putParms
) );
2130 //---------------------------------------------------------------------------
2131 // wxMCIMediaBackend::GetVideoSize
2133 // Gets the original size of the movie for sizers
2134 //---------------------------------------------------------------------------
2135 wxSize
wxMCIMediaBackend::GetVideoSize() const
2139 MCI_DGV_RECT_PARMS whereParms
; //ifdefed MCI_DGV_WHERE_PARMS
2141 wxMCIVERIFY( mciSendCommand(m_hDev
, MCI_WHERE
,
2142 0x00020000L
, //MCI_DGV_WHERE_SOURCE
2143 (DWORD
)(LPSTR
)&whereParms
) );
2145 return wxSize(whereParms
.rc
.right
, whereParms
.rc
.bottom
);
2150 //---------------------------------------------------------------------------
2151 // wxMCIMediaBackend::GetPlaybackRate
2154 //---------------------------------------------------------------------------
2155 double wxMCIMediaBackend::GetPlaybackRate()
2160 //---------------------------------------------------------------------------
2161 // wxMCIMediaBackend::SetPlaybackRate
2164 //---------------------------------------------------------------------------
2165 bool wxMCIMediaBackend::SetPlaybackRate(double WXUNUSED(dRate
))
2168 MCI_WAVE_SET_SAMPLESPERSEC
2169 MCI_DGV_SET_PARMS setParms;
2170 setParms.dwSpeed = (DWORD) (dRate * 1000.0);
2172 return (mciSendCommand(m_hDev, MCI_SET,
2173 0x00020000L, //MCI_DGV_SET_SPEED
2174 (DWORD)(LPSTR)&setParms) == 0);
2179 //---------------------------------------------------------------------------
2180 // [static] wxMCIMediaBackend::MSWWindowProc
2182 // Here we process a message when MCI reaches the stopping point
2184 //---------------------------------------------------------------------------
2185 LRESULT CALLBACK
wxMCIMediaBackend::NotifyWndProc(HWND hWnd
, UINT nMsg
,
2189 wxMCIMediaBackend
* backend
= (wxMCIMediaBackend
*)
2191 ::GetWindowLong(hWnd
, GWL_USERDATA
);
2193 ::GetWindowLongPtr(hWnd
, GWLP_USERDATA
);
2197 return backend
->OnNotifyWndProc(hWnd
, nMsg
, wParam
, lParam
);
2200 LRESULT CALLBACK
wxMCIMediaBackend::OnNotifyWndProc(HWND hWnd
, UINT nMsg
,
2204 if(nMsg
== MM_MCINOTIFY
)
2206 wxASSERT(lParam
== (LPARAM
) m_hDev
);
2207 if(wParam
== MCI_NOTIFY_SUCCESSFUL
&& lParam
== (LPARAM
)m_hDev
)
2209 wxMediaEvent
theEvent(wxEVT_MEDIA_STOP
, m_ctrl
->GetId());
2210 m_ctrl
->ProcessEvent(theEvent
);
2212 if(theEvent
.IsAllowed())
2214 wxMCIVERIFY( mciSendCommand(m_hDev
, MCI_SEEK
,
2215 MCI_SEEK_TO_START
, 0) );
2217 //send the event to our child
2218 wxMediaEvent
theEvent(wxEVT_MEDIA_FINISHED
,
2220 m_ctrl
->ProcessEvent(theEvent
);
2224 return DefWindowProc(hWnd
, nMsg
, wParam
, lParam
);
2226 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2230 // TODO: Use a less cludgy way to pause/get state/set state
2231 // TODO: Dynamically load from qtml.dll
2232 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2234 IMPLEMENT_DYNAMIC_CLASS(wxQTMediaBackend
, wxMediaBackend
);
2236 //Time between timer calls
2237 #define MOVIE_DELAY 100
2239 #include "wx/timer.h"
2241 // --------------------------------------------------------------------------
2242 // wxQTTimer - Handle Asyncronous Playing
2243 // --------------------------------------------------------------------------
2244 class _wxQTTimer
: public wxTimer
2247 _wxQTTimer(Movie movie
, wxQTMediaBackend
* parent
, wxQuickTimeLibrary
* pLib
) :
2248 m_movie(movie
), m_bPaused(false), m_parent(parent
), m_pLib(pLib
)
2256 bool GetPaused() {return m_bPaused
;}
2257 void SetPaused(bool bPaused
) {m_bPaused
= bPaused
;}
2259 //-----------------------------------------------------------------------
2260 // _wxQTTimer::Notify
2262 // 1) Checks to see if the movie is done, and if not continues
2263 // streaming the movie
2264 // 2) Sends the wxEVT_MEDIA_STOP event if we have reached the end of
2266 //-----------------------------------------------------------------------
2271 if(!m_pLib
->IsMovieDone(m_movie
))
2272 m_pLib
->MoviesTask(m_movie
, MOVIE_DELAY
);
2275 wxMediaEvent
theEvent(wxEVT_MEDIA_STOP
,
2276 m_parent
->m_ctrl
->GetId());
2277 m_parent
->m_ctrl
->ProcessEvent(theEvent
);
2279 if(theEvent
.IsAllowed())
2283 wxASSERT(m_pLib
->GetMoviesError() == noErr
);
2285 //send the event to our child
2286 wxMediaEvent
theEvent(wxEVT_MEDIA_FINISHED
,
2287 m_parent
->m_ctrl
->GetId());
2288 m_parent
->m_ctrl
->ProcessEvent(theEvent
);
2295 Movie m_movie
; //Our movie instance
2296 bool m_bPaused
; //Whether we are paused or not
2297 wxQTMediaBackend
* m_parent
; //Backend pointer
2298 wxQuickTimeLibrary
* m_pLib
; //Interfaces
2301 //---------------------------------------------------------------------------
2302 // wxQTMediaBackend Destructor
2304 // Sets m_timer to NULL signifying we havn't loaded anything yet
2305 //---------------------------------------------------------------------------
2306 wxQTMediaBackend::wxQTMediaBackend() : m_timer(NULL
)
2310 //---------------------------------------------------------------------------
2311 // wxQTMediaBackend Destructor
2313 // 1) Cleans up the QuickTime movie instance
2314 // 2) Decrements the QuickTime reference counter - if this reaches
2315 // 0, QuickTime shuts down
2316 // 3) Decrements the QuickTime Windows Media Layer reference counter -
2317 // if this reaches 0, QuickTime shuts down the Windows Media Layer
2318 //---------------------------------------------------------------------------
2319 wxQTMediaBackend::~wxQTMediaBackend()
2326 //Note that ExitMovies() is not necessary, but
2327 //the docs are fuzzy on whether or not TerminateQTML is
2329 m_lib
.TerminateQTML();
2333 //---------------------------------------------------------------------------
2334 // wxQTMediaBackend::CreateControl
2336 // 1) Intializes QuickTime
2337 // 2) Creates the control window
2338 //---------------------------------------------------------------------------
2339 bool wxQTMediaBackend::CreateControl(wxControl
* ctrl
, wxWindow
* parent
,
2344 const wxValidator
& validator
,
2345 const wxString
& name
)
2347 if(!m_lib
.Initialize())
2350 int nError
= m_lib
.InitializeQTML(0);
2351 if (nError
!= noErr
) //-2093 no dll
2353 wxFAIL_MSG(wxString::Format(wxT("Couldn't Initialize Quicktime-%i"), nError
));
2356 m_lib
.EnterMovies();
2360 // By default wxWindow(s) is created with a border -
2361 // so we need to get rid of those
2363 // Since we don't have a child window like most other
2364 // backends, we don't need wxCLIP_CHILDREN
2366 if ( !ctrl
->wxControl::Create(parent
, id
, pos
, size
,
2367 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
,
2375 //---------------------------------------------------------------------------
2376 // wxQTMediaBackend::Load (file version)
2378 // 1) Get an FSSpec from the Windows path name
2379 // 2) Open the movie
2380 // 3) Obtain the movie instance from the movie resource
2382 //---------------------------------------------------------------------------
2383 bool wxQTMediaBackend::Load(const wxString
& fileName
)
2388 short movieResFile
= 0; //= 0 because of annoying VC6 warning
2391 if (m_lib
.NativePathNameToFSSpec ((char*) (const char*) fileName
.mb_str(),
2392 &sfFile
, 0) != noErr
)
2395 if (m_lib
.OpenMovieFile (&sfFile
, &movieResFile
, fsRdPerm
) != noErr
)
2398 short movieResID
= 0;
2401 OSErr err
= m_lib
.NewMovieFromFile (
2410 m_lib
.CloseMovieFile (movieResFile
);
2417 return m_lib
.GetMoviesError() == noErr
;
2420 //---------------------------------------------------------------------------
2421 // wxQTMediaBackend::Move
2424 //---------------------------------------------------------------------------
2425 bool wxQTMediaBackend::Load(const wxURI
& location
)
2430 wxString theURI
= location
.BuildURI();
2432 Handle theHandle
= m_lib
.NewHandleClear(theURI
.length() + 1);
2433 wxASSERT(theHandle
);
2435 m_lib
.BlockMove(theURI
.mb_str(), *theHandle
, theURI
.length() + 1);
2437 //create the movie from the handle that refers to the URI
2438 OSErr err
= m_lib
.NewMovieFromDataRef(&m_movie
, newMovieActive
,
2440 URLDataHandlerSubType
);
2442 m_lib
.DisposeHandle(theHandle
);
2447 //preroll movie for streaming
2452 timeNow = GetMovieTime(m_movie, NULL);
2453 playRate = GetMoviePreferredRate(m_movie);
2454 PrePrerollMovie(m_movie, timeNow, playRate, NULL, NULL);
2455 PrerollMovie(m_movie, timeNow, playRate);
2456 m_lib.SetMovieRate(m_movie, playRate);
2461 return m_lib
.GetMoviesError() == noErr
;
2464 //---------------------------------------------------------------------------
2465 // wxQTMediaBackend::Move
2468 //---------------------------------------------------------------------------
2469 void wxQTMediaBackend::FinishLoad()
2471 m_timer
= new _wxQTTimer(m_movie
, (wxQTMediaBackend
*) this, &m_lib
);
2474 //get the real size of the movie
2476 memset(&outRect
, 0, sizeof(Rect
)); //for annoying VC6 warning
2477 m_lib
.GetMovieNaturalBoundsRect (m_movie
, &outRect
);
2478 wxASSERT(m_lib
.GetMoviesError() == noErr
);
2480 m_bestSize
.x
= outRect
.right
- outRect
.left
;
2481 m_bestSize
.y
= outRect
.bottom
- outRect
.top
;
2483 //reparent movie/*AudioMediaCharacteristic*/
2484 if(m_lib
.GetMovieIndTrackType(m_movie
, 1,
2485 VisualMediaCharacteristic
,
2486 (1 << 1) //movieTrackCharacteristic
2487 | (1 << 2) //movieTrackEnabledOnly
2490 m_lib
.CreatePortAssociation(m_ctrl
->GetHWND(), NULL
, 0L);
2492 m_lib
.SetMovieGWorld(m_movie
,
2493 (CGrafPtr
) m_lib
.GetNativeWindowPort(m_ctrl
->GetHWND()),
2497 //we want millisecond precision
2498 m_lib
.SetMovieTimeScale(m_movie
, 1000);
2499 wxASSERT(m_lib
.GetMoviesError() == noErr
);
2502 //Here, if the parent of the control has a sizer - we
2503 //tell it to recalculate the size of this control since
2504 //the user opened a separate media file
2506 m_ctrl
->InvalidateBestSize();
2507 m_ctrl
->GetParent()->Layout();
2508 m_ctrl
->GetParent()->Refresh();
2509 m_ctrl
->GetParent()->Update();
2512 //---------------------------------------------------------------------------
2513 // wxQTMediaBackend::Move
2516 //---------------------------------------------------------------------------
2517 bool wxQTMediaBackend::Play()
2519 m_lib
.StartMovie(m_movie
);
2520 m_timer
->SetPaused(false);
2521 m_timer
->Start(MOVIE_DELAY
, wxTIMER_CONTINUOUS
);
2522 return m_lib
.GetMoviesError() == noErr
;
2525 //---------------------------------------------------------------------------
2526 // wxQTMediaBackend::Move
2529 //---------------------------------------------------------------------------
2530 bool wxQTMediaBackend::Pause()
2532 m_lib
.StopMovie(m_movie
);
2533 m_timer
->SetPaused(true);
2535 return m_lib
.GetMoviesError() == noErr
;
2538 //---------------------------------------------------------------------------
2539 // wxQTMediaBackend::Move
2542 //---------------------------------------------------------------------------
2543 bool wxQTMediaBackend::Stop()
2545 m_timer
->SetPaused(false);
2548 m_lib
.StopMovie(m_movie
);
2549 if(m_lib
.GetMoviesError() != noErr
)
2552 m_lib
.GoToBeginningOfMovie(m_movie
);
2553 return m_lib
.GetMoviesError() == noErr
;
2556 //---------------------------------------------------------------------------
2557 // wxQTMediaBackend::Move
2560 //---------------------------------------------------------------------------
2561 double wxQTMediaBackend::GetPlaybackRate()
2563 return ( ((double)m_lib
.GetMovieRate(m_movie
)) / 0x10000);
2566 //---------------------------------------------------------------------------
2567 // wxQTMediaBackend::Move
2570 //---------------------------------------------------------------------------
2571 bool wxQTMediaBackend::SetPlaybackRate(double dRate
)
2573 m_lib
.SetMovieRate(m_movie
, (Fixed
) (dRate
* 0x10000));
2574 return m_lib
.GetMoviesError() == noErr
;
2577 //---------------------------------------------------------------------------
2578 // wxQTMediaBackend::Move
2581 //---------------------------------------------------------------------------
2582 bool wxQTMediaBackend::SetPosition(wxLongLong where
)
2584 TimeRecord theTimeRecord
;
2585 memset(&theTimeRecord
, 0, sizeof(TimeRecord
));
2586 theTimeRecord
.value
.lo
= where
.GetLo();
2587 theTimeRecord
.scale
= m_lib
.GetMovieTimeScale(m_movie
);
2588 theTimeRecord
.base
= m_lib
.GetMovieTimeBase(m_movie
);
2589 m_lib
.SetMovieTime(m_movie
, &theTimeRecord
);
2591 if (m_lib
.GetMoviesError() != noErr
)
2597 //---------------------------------------------------------------------------
2598 // wxQTMediaBackend::GetPosition
2600 // 1) Calls GetMovieTime to get the position we are in in the movie
2601 // in milliseconds (we called
2602 //---------------------------------------------------------------------------
2603 wxLongLong
wxQTMediaBackend::GetPosition()
2605 return m_lib
.GetMovieTime(m_movie
, NULL
);
2608 //---------------------------------------------------------------------------
2609 // wxQTMediaBackend::GetVolume
2611 // Gets the volume through GetMovieVolume - which returns a 16 bit short -
2613 // +--------+--------+
2615 // +--------+--------+
2617 // (1) first 8 bits are value before decimal
2618 // (2) second 8 bits are value after decimal
2620 // Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
2621 // 1 (full gain and sound)
2622 //---------------------------------------------------------------------------
2623 double wxQTMediaBackend::GetVolume()
2625 short sVolume
= m_lib
.GetMovieVolume(m_movie
);
2627 if(sVolume
& (128 << 8)) //negative - no sound
2630 return (sVolume
& (127 << 8)) ? 1.0 : ((double)(sVolume
& 255)) / 255.0;
2633 //---------------------------------------------------------------------------
2634 // wxQTMediaBackend::SetVolume
2636 // Sets the volume through SetMovieVolume - which takes a 16 bit short -
2638 // +--------+--------+
2640 // +--------+--------+
2642 // (1) first 8 bits are value before decimal
2643 // (2) second 8 bits are value after decimal
2645 // Volume ranges from -1.0 (gain but no sound), 0 (no sound and no gain) to
2646 // 1 (full gain and sound)
2647 //---------------------------------------------------------------------------
2648 bool wxQTMediaBackend::SetVolume(double dVolume
)
2650 short sVolume
= (short) (dVolume
>= .9999 ? 1 << 8 : (dVolume
* 255) );
2651 m_lib
.SetMovieVolume(m_movie
, sVolume
);
2655 //---------------------------------------------------------------------------
2656 // wxQTMediaBackend::Move
2659 //---------------------------------------------------------------------------
2660 wxLongLong
wxQTMediaBackend::GetDuration()
2662 return m_lib
.GetMovieDuration(m_movie
);
2665 //---------------------------------------------------------------------------
2666 // wxQTMediaBackend::Move
2669 //---------------------------------------------------------------------------
2670 wxMediaState
wxQTMediaBackend::GetState()
2672 if ( !m_timer
|| (m_timer
->IsRunning() == false &&
2673 m_timer
->GetPaused() == false) )
2674 return wxMEDIASTATE_STOPPED
;
2676 if( m_timer
->IsRunning() == true )
2677 return wxMEDIASTATE_PLAYING
;
2679 return wxMEDIASTATE_PAUSED
;
2682 //---------------------------------------------------------------------------
2683 // wxQTMediaBackend::Move
2686 //---------------------------------------------------------------------------
2687 void wxQTMediaBackend::Cleanup()
2692 m_lib
.StopMovie(m_movie
);
2693 m_lib
.DisposeMovie(m_movie
);
2696 //---------------------------------------------------------------------------
2697 // wxQTMediaBackend::Move
2700 //---------------------------------------------------------------------------
2701 wxSize
wxQTMediaBackend::GetVideoSize() const
2706 //---------------------------------------------------------------------------
2707 // wxQTMediaBackend::Move
2710 //---------------------------------------------------------------------------
2711 void wxQTMediaBackend::Move(int WXUNUSED(x
), int WXUNUSED(y
), int w
, int h
)
2715 Rect theRect
= {0, 0, (short)h
, (short)w
};
2717 m_lib
.SetMovieBox(m_movie
, &theRect
);
2718 wxASSERT(m_lib
.GetMoviesError() == noErr
);
2722 //---------------------------------------------------------------------------
2724 //---------------------------------------------------------------------------
2726 //in source file that contains stuff you don't directly use
2727 #include <wx/html/forcelnk.h>
2728 FORCE_LINK_ME(basewxmediabackends
);
2730 //---------------------------------------------------------------------------
2731 // End wxMediaCtrl Compilation Guard and this file
2732 //---------------------------------------------------------------------------
2733 #endif //wxUSE_MEDIACTRL