2004-03-09 02:29:56 +01:00
|
|
|
/*
|
2019-08-30 05:49:27 +02:00
|
|
|
* Multimedia stream object
|
2004-03-09 02:29:56 +01:00
|
|
|
*
|
2012-03-14 21:51:20 +01:00
|
|
|
* Copyright 2004, 2012 Christian Costa
|
2006-06-24 21:08:58 +02:00
|
|
|
* Copyright 2006 Ivan Leo Puoti
|
2004-03-09 02:29:56 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-03-09 02:29:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
2004-10-07 05:06:48 +02:00
|
|
|
#define COBJMACROS
|
|
|
|
|
2004-03-09 02:29:56 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
|
|
|
|
#include "amstream_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(amstream);
|
|
|
|
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream
|
|
|
|
{
|
2010-12-04 22:12:01 +01:00
|
|
|
IAMMultiMediaStream IAMMultiMediaStream_iface;
|
2005-07-11 15:21:17 +02:00
|
|
|
LONG ref;
|
2005-11-07 17:38:48 +01:00
|
|
|
IGraphBuilder* pFilterGraph;
|
2012-03-14 21:51:27 +01:00
|
|
|
IMediaSeeking* media_seeking;
|
|
|
|
IMediaControl* media_control;
|
2019-08-29 03:24:33 +02:00
|
|
|
IMediaStreamFilter *filter;
|
2006-06-24 21:08:58 +02:00
|
|
|
IPin* ipin;
|
2005-11-07 17:38:48 +01:00
|
|
|
STREAM_TYPE StreamType;
|
2012-03-14 21:51:43 +01:00
|
|
|
OAEVENT event;
|
2019-08-30 05:49:28 +02:00
|
|
|
};
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2019-08-30 05:49:28 +02:00
|
|
|
static inline struct multimedia_stream *impl_from_IAMMultiMediaStream(IAMMultiMediaStream *iface)
|
2010-12-04 22:12:01 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct multimedia_stream, IAMMultiMediaStream_iface);
|
2010-12-04 22:12:01 +01:00
|
|
|
}
|
|
|
|
|
2004-03-09 02:29:56 +01:00
|
|
|
/*** IUnknown methods ***/
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_QueryInterface(IAMMultiMediaStream *iface,
|
|
|
|
REFIID riid, void **ppvObject)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
TRACE("(%p/%p)->(%s,%p)\n", iface, This, debugstr_guid(riid), ppvObject);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown) ||
|
2010-04-05 20:30:09 +02:00
|
|
|
IsEqualGUID(riid, &IID_IMultiMediaStream) ||
|
2005-11-01 19:06:03 +01:00
|
|
|
IsEqualGUID(riid, &IID_IAMMultiMediaStream))
|
|
|
|
{
|
2012-08-19 17:11:05 +02:00
|
|
|
IAMMultiMediaStream_AddRef(iface);
|
|
|
|
*ppvObject = iface;
|
2005-11-01 19:06:03 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
ERR("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppvObject);
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static ULONG WINAPI multimedia_stream_AddRef(IAMMultiMediaStream *iface)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2005-11-01 19:06:03 +01:00
|
|
|
|
|
|
|
TRACE("(%p/%p)\n", iface, This);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return InterlockedIncrement(&This->ref);
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static ULONG WINAPI multimedia_stream_Release(IAMMultiMediaStream *iface)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2005-11-01 19:06:03 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
TRACE("(%p/%p)\n", iface, This);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
if (!ref)
|
2012-03-12 19:55:04 +01:00
|
|
|
{
|
|
|
|
if (This->ipin)
|
|
|
|
IPin_Release(This->ipin);
|
2019-08-29 03:24:33 +02:00
|
|
|
IMediaStreamFilter_Release(This->filter);
|
2012-03-14 21:51:27 +01:00
|
|
|
if (This->media_seeking)
|
|
|
|
IMediaSeeking_Release(This->media_seeking);
|
|
|
|
if (This->media_control)
|
|
|
|
IMediaControl_Release(This->media_control);
|
2012-03-12 19:55:04 +01:00
|
|
|
if (This->pFilterGraph)
|
|
|
|
IGraphBuilder_Release(This->pFilterGraph);
|
2005-11-01 19:06:03 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2012-03-12 19:55:04 +01:00
|
|
|
}
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return ref;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** IMultiMediaStream methods ***/
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetInformation(IAMMultiMediaStream *iface,
|
|
|
|
DWORD *pdwFlags, STREAM_TYPE *pStreamType)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
FIXME("(%p/%p)->(%p,%p) stub!\n", This, iface, pdwFlags, pStreamType);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetMediaStream(IAMMultiMediaStream *iface,
|
2019-09-02 02:48:06 +02:00
|
|
|
REFMSPID id, IMediaStream **stream)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-09-02 02:48:06 +02:00
|
|
|
struct multimedia_stream *mmstream = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2019-09-02 02:48:06 +02:00
|
|
|
TRACE("mmstream %p, id %s, stream %p.\n", mmstream, debugstr_guid(id), stream);
|
2005-11-07 17:38:48 +01:00
|
|
|
|
2019-09-02 02:48:06 +02:00
|
|
|
return IMediaStreamFilter_GetMediaStream(mmstream->filter, id, stream);
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_EnumMediaStreams(IAMMultiMediaStream *iface,
|
|
|
|
LONG Index, IMediaStream **ppMediaStream)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2009-03-12 23:04:35 +01:00
|
|
|
FIXME("(%p/%p)->(%d,%p) stub!\n", This, iface, Index, ppMediaStream);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetState(IAMMultiMediaStream *iface, STREAM_STATE *pCurrentState)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
FIXME("(%p/%p)->(%p) stub!\n", This, iface, pCurrentState);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_SetState(IAMMultiMediaStream *iface, STREAM_STATE new_state)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2012-04-03 07:53:50 +02:00
|
|
|
HRESULT hr = E_INVALIDARG;
|
2005-11-01 19:06:03 +01:00
|
|
|
|
2012-04-03 07:53:50 +02:00
|
|
|
TRACE("(%p/%p)->(%u)\n", This, iface, new_state);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2012-04-04 21:18:00 +02:00
|
|
|
if (new_state == STREAMSTATE_RUN)
|
2012-04-03 07:53:50 +02:00
|
|
|
hr = IMediaControl_Run(This->media_control);
|
2012-04-04 21:18:00 +02:00
|
|
|
else if (new_state == STREAMSTATE_STOP)
|
2012-04-03 07:53:50 +02:00
|
|
|
hr = IMediaControl_Stop(This->media_control);
|
|
|
|
|
|
|
|
return hr;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetTime(IAMMultiMediaStream *iface, STREAM_TIME *pCurrentTime)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
FIXME("(%p/%p)->(%p) stub!\n", This, iface, pCurrentTime);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetDuration(IAMMultiMediaStream *iface, STREAM_TIME *pDuration)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
FIXME("(%p/%p)->(%p) stub!\n", This, iface, pDuration);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_Seek(IAMMultiMediaStream *iface, STREAM_TIME seek_time)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2012-04-03 07:53:43 +02:00
|
|
|
TRACE("(%p/%p)->(%s)\n", This, iface, wine_dbgstr_longlong(seek_time));
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2012-04-03 07:53:43 +02:00
|
|
|
return IMediaSeeking_SetPositions(This->media_seeking, &seek_time, AM_SEEKING_AbsolutePositioning, NULL, AM_SEEKING_NoPositioning);
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetEndOfStream(IAMMultiMediaStream *iface, HANDLE *phEOS)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
FIXME("(%p/%p)->(%p) stub!\n", This, iface, phEOS);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** IAMMultiMediaStream methods ***/
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_Initialize(IAMMultiMediaStream *iface,
|
|
|
|
STREAM_TYPE StreamType, DWORD dwFlags, IGraphBuilder *pFilterGraph)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2018-11-30 08:13:58 +01:00
|
|
|
static const WCHAR filternameW[] = {'M','e','d','i','a','S','t','r','e','a','m','F','i','l','t','e','r',0};
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2005-11-07 17:38:48 +01:00
|
|
|
HRESULT hr = S_OK;
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2009-04-13 10:07:47 +02:00
|
|
|
TRACE("(%p/%p)->(%x,%x,%p)\n", This, iface, (DWORD)StreamType, dwFlags, pFilterGraph);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-07 17:38:48 +01:00
|
|
|
if (pFilterGraph)
|
|
|
|
{
|
|
|
|
This->pFilterGraph = pFilterGraph;
|
|
|
|
IGraphBuilder_AddRef(This->pFilterGraph);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hr = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, &IID_IGraphBuilder, (LPVOID*)&This->pFilterGraph);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
This->StreamType = StreamType;
|
2012-03-14 21:51:27 +01:00
|
|
|
hr = IGraphBuilder_QueryInterface(This->pFilterGraph, &IID_IMediaSeeking, (void**)&This->media_seeking);
|
|
|
|
if (SUCCEEDED(hr))
|
2015-05-30 15:30:36 +02:00
|
|
|
hr = IGraphBuilder_QueryInterface(This->pFilterGraph, &IID_IMediaControl, (void**)&This->media_control);
|
2012-03-14 21:51:35 +01:00
|
|
|
if (SUCCEEDED(hr))
|
2019-08-29 03:24:33 +02:00
|
|
|
hr = IGraphBuilder_AddFilter(This->pFilterGraph, (IBaseFilter*)This->filter, filternameW);
|
2012-03-14 21:51:43 +01:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IMediaEventEx* media_event = NULL;
|
|
|
|
hr = IGraphBuilder_QueryInterface(This->pFilterGraph, &IID_IMediaEventEx, (void**)&media_event);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IMediaEventEx_GetEventHandle(media_event, &This->event);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IMediaEventEx_SetNotifyFlags(media_event, AM_MEDIAEVENT_NONOTIFY);
|
|
|
|
if (media_event)
|
|
|
|
IMediaEventEx_Release(media_event);
|
|
|
|
}
|
2012-03-14 21:51:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
if (This->media_seeking)
|
|
|
|
IMediaSeeking_Release(This->media_seeking);
|
|
|
|
This->media_seeking = NULL;
|
|
|
|
if (This->media_control)
|
|
|
|
IMediaControl_Release(This->media_control);
|
|
|
|
This->media_control = NULL;
|
|
|
|
if (This->pFilterGraph)
|
|
|
|
IGraphBuilder_Release(This->pFilterGraph);
|
|
|
|
This->pFilterGraph = NULL;
|
2005-11-07 17:38:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetFilterGraph(IAMMultiMediaStream *iface,
|
|
|
|
IGraphBuilder **ppGraphBuilder)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2009-03-25 22:55:03 +01:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppGraphBuilder);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2009-03-25 22:55:03 +01:00
|
|
|
if (!ppGraphBuilder)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
if (This->pFilterGraph)
|
2012-08-19 17:11:05 +02:00
|
|
|
return IGraphBuilder_QueryInterface(This->pFilterGraph, &IID_IGraphBuilder, (void**)ppGraphBuilder);
|
2009-03-25 22:55:03 +01:00
|
|
|
else
|
|
|
|
*ppGraphBuilder = NULL;
|
|
|
|
|
|
|
|
return S_OK;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_GetFilter(IAMMultiMediaStream *iface,
|
|
|
|
IMediaStreamFilter **filter)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *mmstream = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2019-08-29 03:24:33 +02:00
|
|
|
TRACE("mmstream %p, filter %p.\n", mmstream, filter);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2019-08-29 03:24:33 +02:00
|
|
|
if (!filter)
|
2012-03-26 10:10:13 +02:00
|
|
|
return E_POINTER;
|
|
|
|
|
2019-08-29 03:24:33 +02:00
|
|
|
IMediaStreamFilter_AddRef(*filter = mmstream->filter);
|
2012-03-26 10:10:13 +02:00
|
|
|
|
2015-06-20 22:34:58 +02:00
|
|
|
return S_OK;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_AddMediaStream(IAMMultiMediaStream *iface,
|
2019-09-02 02:48:07 +02:00
|
|
|
IUnknown *stream_object, const MSPID *PurposeId, DWORD dwFlags, IMediaStream **ret_stream)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2005-11-07 17:38:48 +01:00
|
|
|
HRESULT hr;
|
2015-06-20 22:34:58 +02:00
|
|
|
IAMMediaStream* pStream;
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2019-09-02 02:48:07 +02:00
|
|
|
TRACE("mmstream %p, stream_object %p, id %s, flags %#x, ret_stream %p.\n",
|
|
|
|
This, stream_object, debugstr_guid(PurposeId), dwFlags, ret_stream);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2012-03-26 10:09:49 +02:00
|
|
|
if (!IsEqualGUID(PurposeId, &MSPID_PrimaryVideo) && !IsEqualGUID(PurposeId, &MSPID_PrimaryAudio))
|
|
|
|
return MS_E_PURPOSEID;
|
|
|
|
|
2012-03-26 10:10:05 +02:00
|
|
|
if (dwFlags & AMMSF_ADDDEFAULTRENDERER)
|
|
|
|
{
|
|
|
|
if (IsEqualGUID(PurposeId, &MSPID_PrimaryVideo))
|
|
|
|
{
|
|
|
|
/* Default renderer not supported by video stream */
|
|
|
|
return MS_E_PURPOSEID;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IBaseFilter* dsoundrender_filter;
|
|
|
|
|
|
|
|
/* Create the default renderer for audio */
|
|
|
|
hr = CoCreateInstance(&CLSID_DSoundRender, NULL, CLSCTX_INPROC_SERVER, &IID_IBaseFilter, (LPVOID*)&dsoundrender_filter);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IGraphBuilder_AddFilter(This->pFilterGraph, dsoundrender_filter, NULL);
|
|
|
|
IBaseFilter_Release(dsoundrender_filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No media stream created when the default renderer is used */
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
}
|
2012-03-26 10:09:57 +02:00
|
|
|
|
2012-04-23 21:44:19 +02:00
|
|
|
if (IsEqualGUID(PurposeId, &MSPID_PrimaryVideo))
|
2018-08-09 13:33:33 +02:00
|
|
|
hr = ddrawmediastream_create((IMultiMediaStream*)iface, PurposeId, stream_object, This->StreamType, &pStream);
|
2012-04-23 21:44:19 +02:00
|
|
|
else
|
2018-08-09 13:33:33 +02:00
|
|
|
hr = audiomediastream_create((IMultiMediaStream*)iface, PurposeId, stream_object, This->StreamType, &pStream);
|
2005-11-07 17:38:48 +01:00
|
|
|
|
2012-03-27 23:46:03 +02:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
/* Add stream to the media stream filter */
|
2019-08-29 03:24:33 +02:00
|
|
|
IMediaStreamFilter_AddMediaStream(This->filter, pStream);
|
2019-09-02 02:48:07 +02:00
|
|
|
if (ret_stream)
|
|
|
|
*ret_stream = (IMediaStream *)pStream;
|
|
|
|
else
|
|
|
|
IAMMediaStream_Release(pStream);
|
2012-03-27 23:46:03 +02:00
|
|
|
}
|
|
|
|
|
2005-11-07 17:38:48 +01:00
|
|
|
return hr;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_OpenFile(IAMMultiMediaStream *iface,
|
|
|
|
const WCHAR *filename, DWORD flags)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2018-11-30 08:13:58 +01:00
|
|
|
static const WCHAR sourceW[] = {'S','o','u','r','c','e',0};
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2012-03-14 21:50:56 +01:00
|
|
|
HRESULT ret = S_OK;
|
|
|
|
IBaseFilter *BaseFilter = NULL;
|
|
|
|
IEnumPins *EnumPins = NULL;
|
2006-06-24 21:08:58 +02:00
|
|
|
IPin *ipin;
|
|
|
|
PIN_DIRECTION pin_direction;
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2012-10-12 07:15:58 +02:00
|
|
|
TRACE("(%p/%p)->(%s,%x)\n", This, iface, debugstr_w(filename), flags);
|
|
|
|
|
|
|
|
if (!filename)
|
|
|
|
return E_POINTER;
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2012-03-12 19:54:39 +01:00
|
|
|
/* If Initialize was not called before, we do it here */
|
|
|
|
if (!This->pFilterGraph)
|
|
|
|
ret = IAMMultiMediaStream_Initialize(iface, STREAMTYPE_READ, 0, NULL);
|
|
|
|
|
2012-03-14 21:50:56 +01:00
|
|
|
if (SUCCEEDED(ret))
|
2012-10-12 07:15:58 +02:00
|
|
|
ret = IGraphBuilder_AddSourceFilter(This->pFilterGraph, filename, sourceW, &BaseFilter);
|
2012-03-12 19:54:56 +01:00
|
|
|
|
2012-03-14 21:50:56 +01:00
|
|
|
if (SUCCEEDED(ret))
|
|
|
|
ret = IBaseFilter_EnumPins(BaseFilter, &EnumPins);
|
|
|
|
|
|
|
|
if (SUCCEEDED(ret))
|
|
|
|
ret = IEnumPins_Next(EnumPins, 1, &ipin, NULL);
|
2006-06-24 21:08:58 +02:00
|
|
|
|
2012-03-14 21:50:56 +01:00
|
|
|
if (SUCCEEDED(ret))
|
2006-06-24 21:08:58 +02:00
|
|
|
{
|
|
|
|
ret = IPin_QueryDirection(ipin, &pin_direction);
|
2012-03-12 19:54:56 +01:00
|
|
|
if (ret == S_OK && pin_direction == PINDIR_OUTPUT)
|
2006-06-24 21:08:58 +02:00
|
|
|
This->ipin = ipin;
|
|
|
|
}
|
|
|
|
|
2012-10-12 07:16:06 +02:00
|
|
|
if (SUCCEEDED(ret) && !(flags & AMMSF_NORENDER))
|
|
|
|
ret = IGraphBuilder_Render(This->pFilterGraph, This->ipin);
|
|
|
|
|
2012-03-14 21:50:56 +01:00
|
|
|
if (EnumPins)
|
|
|
|
IEnumPins_Release(EnumPins);
|
|
|
|
if (BaseFilter)
|
|
|
|
IBaseFilter_Release(BaseFilter);
|
2006-06-24 21:08:58 +02:00
|
|
|
return ret;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_OpenMoniker(IAMMultiMediaStream *iface,
|
|
|
|
IBindCtx *pCtx, IMoniker *pMoniker, DWORD dwFlags)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2006-10-06 23:01:52 +02:00
|
|
|
FIXME("(%p/%p)->(%p,%p,%x) stub!\n", This, iface, pCtx, pMoniker, dwFlags);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2005-11-01 19:06:03 +01:00
|
|
|
return E_NOTIMPL;
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static HRESULT WINAPI multimedia_stream_Render(IAMMultiMediaStream *iface, DWORD dwFlags)
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-08-30 05:49:28 +02:00
|
|
|
struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2008-12-14 19:07:32 +01:00
|
|
|
FIXME("(%p/%p)->(%x) partial stub!\n", This, iface, dwFlags);
|
2004-03-09 02:29:56 +01:00
|
|
|
|
2006-06-24 21:08:58 +02:00
|
|
|
if(dwFlags != AMMSF_NOCLOCK)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2012-03-12 19:54:48 +01:00
|
|
|
return IGraphBuilder_Render(This->pFilterGraph, This->ipin);
|
2004-03-09 02:29:56 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 02:48:04 +02:00
|
|
|
static const IAMMultiMediaStreamVtbl multimedia_stream_vtbl =
|
2004-03-09 02:29:56 +01:00
|
|
|
{
|
2019-09-02 02:48:04 +02:00
|
|
|
multimedia_stream_QueryInterface,
|
|
|
|
multimedia_stream_AddRef,
|
|
|
|
multimedia_stream_Release,
|
|
|
|
multimedia_stream_GetInformation,
|
|
|
|
multimedia_stream_GetMediaStream,
|
|
|
|
multimedia_stream_EnumMediaStreams,
|
|
|
|
multimedia_stream_GetState,
|
|
|
|
multimedia_stream_SetState,
|
|
|
|
multimedia_stream_GetTime,
|
|
|
|
multimedia_stream_GetDuration,
|
|
|
|
multimedia_stream_Seek,
|
|
|
|
multimedia_stream_GetEndOfStream,
|
|
|
|
multimedia_stream_Initialize,
|
|
|
|
multimedia_stream_GetFilterGraph,
|
|
|
|
multimedia_stream_GetFilter,
|
|
|
|
multimedia_stream_AddMediaStream,
|
|
|
|
multimedia_stream_OpenFile,
|
|
|
|
multimedia_stream_OpenMoniker,
|
|
|
|
multimedia_stream_Render
|
2004-03-09 02:29:56 +01:00
|
|
|
};
|
2019-09-02 02:48:05 +02:00
|
|
|
|
|
|
|
HRESULT multimedia_stream_create(IUnknown *outer, void **out)
|
|
|
|
{
|
|
|
|
struct multimedia_stream *object;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (outer)
|
|
|
|
return CLASS_E_NOAGGREGATION;
|
|
|
|
|
|
|
|
if (!(object = heap_alloc_zero(sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
object->IAMMultiMediaStream_iface.lpVtbl = &multimedia_stream_vtbl;
|
|
|
|
object->ref = 1;
|
|
|
|
|
|
|
|
if (FAILED(hr = CoCreateInstance(&CLSID_MediaStreamFilter, NULL,
|
|
|
|
CLSCTX_INPROC_SERVER, &IID_IMediaStreamFilter, (void **)&object->filter)))
|
|
|
|
{
|
|
|
|
ERR("Failed to create stream filter, hr %#x.\n", hr);
|
|
|
|
heap_free(object);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created multimedia stream %p.\n", object);
|
|
|
|
*out = &object->IAMMultiMediaStream_iface;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|