quartz: Fix return value of GetMediaTime.

This commit is contained in:
Maarten Lankhorst 2010-11-07 15:02:45 +01:00 committed by Alexandre Julliard
parent 5024a05780
commit 8af5c1b729
1 changed files with 1 additions and 1 deletions

View File

@ -703,7 +703,7 @@ static HRESULT WINAPI StdMediaSample2_GetMediaTime(IMediaSample2 * iface, LONGLO
*pStart = This->tMediaStart;
*pEnd = This->tMediaEnd;
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI StdMediaSample2_SetMediaTime(IMediaSample2 * iface, LONGLONG * pStart, LONGLONG * pEnd)