Commit dfbb2fc9 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

qedit: Add a stub for IMediaDet_get_StreamLength.

To get this working by querying the filters for IMediaSeeking and calling GetDuration, we need a little better support from quartz. For now a stub is better than nothing.
parent 95360025
......@@ -252,8 +252,8 @@ static HRESULT WINAPI MediaDet_get_StreamTypeB(IMediaDet* iface, BSTR *pVal)
static HRESULT WINAPI MediaDet_get_StreamLength(IMediaDet* iface, double *pVal)
{
MediaDetImpl *This = (MediaDetImpl *)iface;
FIXME("(%p)->(%p): not implemented!\n", This, pVal);
return E_NOTIMPL;
FIXME("(%p): stub!\n", This);
return VFW_E_INVALIDMEDIATYPE;
}
static HRESULT WINAPI MediaDet_get_Filename(IMediaDet* iface, BSTR *pVal)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment