2 * Filter Seeking and Control Interfaces
4 * Copyright 2003 Robert Shearman
5 * Copyright 2010 Aric Stewart, CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "strmbase_private.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
26 static inline SourceSeeking
*impl_from_IMediaSeeking(IMediaSeeking
*iface
)
28 return CONTAINING_RECORD(iface
, SourceSeeking
, IMediaSeeking_iface
);
31 HRESULT
strmbase_seeking_init(SourceSeeking
*pSeeking
, const IMediaSeekingVtbl
*Vtbl
,
32 SourceSeeking_ChangeStop fnChangeStop
, SourceSeeking_ChangeStart fnChangeStart
,
33 SourceSeeking_ChangeRate fnChangeRate
)
35 assert(fnChangeStop
&& fnChangeStart
&& fnChangeRate
);
37 pSeeking
->IMediaSeeking_iface
.lpVtbl
= Vtbl
;
38 pSeeking
->refCount
= 1;
39 pSeeking
->fnChangeRate
= fnChangeRate
;
40 pSeeking
->fnChangeStop
= fnChangeStop
;
41 pSeeking
->fnChangeStart
= fnChangeStart
;
42 pSeeking
->dwCapabilities
= AM_SEEKING_CanSeekForwards
|
43 AM_SEEKING_CanSeekBackwards
|
44 AM_SEEKING_CanSeekAbsolute
|
45 AM_SEEKING_CanGetStopPos
|
46 AM_SEEKING_CanGetDuration
;
47 pSeeking
->llCurrent
= 0;
48 pSeeking
->llStop
= ((ULONGLONG
)0x80000000) << 32;
49 pSeeking
->llDuration
= pSeeking
->llStop
;
50 pSeeking
->dRate
= 1.0;
51 pSeeking
->timeformat
= TIME_FORMAT_MEDIA_TIME
;
52 InitializeCriticalSection(&pSeeking
->cs
);
53 pSeeking
->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": SourceSeeking.cs");
57 void strmbase_seeking_cleanup(SourceSeeking
*seeking
)
59 DeleteCriticalSection(&seeking
->cs
);
62 HRESULT WINAPI
SourceSeekingImpl_GetCapabilities(IMediaSeeking
* iface
, DWORD
* pCapabilities
)
64 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
66 TRACE("(%p)\n", pCapabilities
);
68 *pCapabilities
= This
->dwCapabilities
;
73 HRESULT WINAPI
SourceSeekingImpl_CheckCapabilities(IMediaSeeking
* iface
, DWORD
* pCapabilities
)
75 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
79 TRACE("(%p)\n", pCapabilities
);
84 dwCommonCaps
= *pCapabilities
& This
->dwCapabilities
;
89 hr
= (*pCapabilities
== dwCommonCaps
) ? S_OK
: S_FALSE
;
90 *pCapabilities
= dwCommonCaps
;
94 HRESULT WINAPI
SourceSeekingImpl_IsFormatSupported(IMediaSeeking
* iface
, const GUID
* pFormat
)
96 TRACE("(%s)\n", debugstr_guid(pFormat
));
98 return (IsEqualIID(pFormat
, &TIME_FORMAT_MEDIA_TIME
) ? S_OK
: S_FALSE
);
101 HRESULT WINAPI
SourceSeekingImpl_QueryPreferredFormat(IMediaSeeking
* iface
, GUID
* pFormat
)
103 TRACE("(%s)\n", debugstr_guid(pFormat
));
105 *pFormat
= TIME_FORMAT_MEDIA_TIME
;
109 HRESULT WINAPI
SourceSeekingImpl_GetTimeFormat(IMediaSeeking
* iface
, GUID
* pFormat
)
111 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
112 TRACE("(%s)\n", debugstr_guid(pFormat
));
114 EnterCriticalSection(&This
->cs
);
115 *pFormat
= This
->timeformat
;
116 LeaveCriticalSection(&This
->cs
);
121 HRESULT WINAPI
SourceSeekingImpl_IsUsingTimeFormat(IMediaSeeking
* iface
, const GUID
* pFormat
)
123 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
126 TRACE("(%s)\n", debugstr_guid(pFormat
));
128 EnterCriticalSection(&This
->cs
);
129 if (!IsEqualIID(pFormat
, &This
->timeformat
))
131 LeaveCriticalSection(&This
->cs
);
136 HRESULT WINAPI
SourceSeekingImpl_SetTimeFormat(IMediaSeeking
* iface
, const GUID
* pFormat
)
138 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
139 TRACE("%p %s\n", This
, debugstr_guid(pFormat
));
140 return (IsEqualIID(pFormat
, &TIME_FORMAT_MEDIA_TIME
) ? S_OK
: E_INVALIDARG
);
144 HRESULT WINAPI
SourceSeekingImpl_GetDuration(IMediaSeeking
* iface
, LONGLONG
* pDuration
)
146 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
148 TRACE("(%p)\n", pDuration
);
150 EnterCriticalSection(&This
->cs
);
151 *pDuration
= This
->llDuration
;
152 LeaveCriticalSection(&This
->cs
);
157 HRESULT WINAPI
SourceSeekingImpl_GetStopPosition(IMediaSeeking
* iface
, LONGLONG
* pStop
)
159 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
161 TRACE("(%p)\n", pStop
);
163 EnterCriticalSection(&This
->cs
);
164 *pStop
= This
->llStop
;
165 LeaveCriticalSection(&This
->cs
);
170 /* FIXME: Make use of the info the filter should expose */
171 HRESULT WINAPI
SourceSeekingImpl_GetCurrentPosition(IMediaSeeking
* iface
, LONGLONG
* pCurrent
)
173 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
175 TRACE("(%p)\n", pCurrent
);
177 EnterCriticalSection(&This
->cs
);
178 *pCurrent
= This
->llCurrent
;
179 LeaveCriticalSection(&This
->cs
);
184 HRESULT WINAPI
SourceSeekingImpl_ConvertTimeFormat(IMediaSeeking
* iface
, LONGLONG
* pTarget
, const GUID
* pTargetFormat
, LONGLONG Source
, const GUID
* pSourceFormat
)
186 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
188 pTargetFormat
= &This
->timeformat
;
190 pSourceFormat
= &This
->timeformat
;
191 if (IsEqualIID(pTargetFormat
, &TIME_FORMAT_MEDIA_TIME
) && IsEqualIID(pSourceFormat
, &TIME_FORMAT_MEDIA_TIME
))
196 /* FIXME: clear pTarget? */
200 static inline LONGLONG
Adjust(LONGLONG value
, const LONGLONG
* pModifier
, DWORD dwFlags
)
202 switch (dwFlags
& AM_SEEKING_PositioningBitsMask
)
204 case AM_SEEKING_NoPositioning
:
206 case AM_SEEKING_AbsolutePositioning
:
208 case AM_SEEKING_RelativePositioning
:
209 case AM_SEEKING_IncrementalPositioning
:
210 return value
+ *pModifier
;
217 HRESULT WINAPI
SourceSeekingImpl_SetPositions(IMediaSeeking
* iface
, LONGLONG
* pCurrent
, DWORD dwCurrentFlags
, LONGLONG
* pStop
, DWORD dwStopFlags
)
219 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
220 BOOL bChangeCurrent
= FALSE
, bChangeStop
= FALSE
;
221 LONGLONG llNewCurrent
, llNewStop
;
223 TRACE("iface %p, current %s, current_flags %#lx, stop %s, stop_flags %#lx.\n", iface
,
224 pCurrent
? debugstr_time(*pCurrent
) : "<null>", dwCurrentFlags
,
225 pStop
? debugstr_time(*pStop
): "<null>", dwStopFlags
);
227 EnterCriticalSection(&This
->cs
);
229 llNewCurrent
= Adjust(This
->llCurrent
, pCurrent
, dwCurrentFlags
);
230 llNewStop
= Adjust(This
->llStop
, pStop
, dwStopFlags
);
233 bChangeCurrent
= TRUE
;
234 if (llNewStop
!= This
->llStop
)
237 TRACE("Seeking from %s to %s.\n", debugstr_time(This
->llCurrent
), debugstr_time(llNewCurrent
));
239 This
->llCurrent
= llNewCurrent
;
240 This
->llStop
= llNewStop
;
242 if (pCurrent
&& (dwCurrentFlags
& AM_SEEKING_ReturnTime
))
243 *pCurrent
= llNewCurrent
;
244 if (pStop
&& (dwStopFlags
& AM_SEEKING_ReturnTime
))
246 LeaveCriticalSection(&This
->cs
);
249 This
->fnChangeStart(iface
);
251 This
->fnChangeStop(iface
);
256 HRESULT WINAPI
SourceSeekingImpl_GetPositions(IMediaSeeking
* iface
, LONGLONG
* pCurrent
, LONGLONG
* pStop
)
258 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
260 TRACE("(%p, %p)\n", pCurrent
, pStop
);
262 EnterCriticalSection(&This
->cs
);
263 IMediaSeeking_GetCurrentPosition(iface
, pCurrent
);
264 IMediaSeeking_GetStopPosition(iface
, pStop
);
265 LeaveCriticalSection(&This
->cs
);
270 HRESULT WINAPI
SourceSeekingImpl_GetAvailable(IMediaSeeking
* iface
, LONGLONG
* pEarliest
, LONGLONG
* pLatest
)
272 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
274 TRACE("(%p, %p)\n", pEarliest
, pLatest
);
276 EnterCriticalSection(&This
->cs
);
278 *pLatest
= This
->llDuration
;
279 LeaveCriticalSection(&This
->cs
);
284 HRESULT WINAPI
SourceSeekingImpl_SetRate(IMediaSeeking
* iface
, double dRate
)
286 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
287 BOOL bChangeRate
= (dRate
!= This
->dRate
);
290 TRACE("(%e)\n", dRate
);
292 if (dRate
> 100 || dRate
< .001)
294 FIXME("Excessive rate %e, ignoring\n", dRate
);
295 return VFW_E_UNSUPPORTED_AUDIO
;
298 EnterCriticalSection(&This
->cs
);
301 hr
= This
->fnChangeRate(iface
);
302 LeaveCriticalSection(&This
->cs
);
307 HRESULT WINAPI
SourceSeekingImpl_GetRate(IMediaSeeking
* iface
, double * dRate
)
309 SourceSeeking
*This
= impl_from_IMediaSeeking(iface
);
311 TRACE("(%p)\n", dRate
);
313 EnterCriticalSection(&This
->cs
);
315 *dRate
= This
->dRate
;
316 LeaveCriticalSection(&This
->cs
);
321 HRESULT WINAPI
SourceSeekingImpl_GetPreroll(IMediaSeeking
* iface
, LONGLONG
* pPreroll
)
323 TRACE("(%p)\n", pPreroll
);