2008-12-14 19:08:17 +01:00
|
|
|
/*
|
|
|
|
* Implementation of MediaStream Filter
|
|
|
|
*
|
2012-05-01 10:21:28 +02:00
|
|
|
* Copyright 2008, 2012 Christian Costa
|
2008-12-14 19:08:17 +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
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#include "amstream_private.h"
|
2019-05-17 07:31:06 +02:00
|
|
|
#include "wine/debug.h"
|
2008-12-14 19:08:17 +01:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(amstream);
|
|
|
|
|
2019-05-17 07:31:05 +02:00
|
|
|
struct enum_pins
|
|
|
|
{
|
|
|
|
IEnumPins IEnumPins_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
IPin **pins;
|
|
|
|
unsigned int count, index;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const IEnumPinsVtbl enum_pins_vtbl;
|
|
|
|
|
|
|
|
static struct enum_pins *impl_from_IEnumPins(IEnumPins *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct enum_pins, IEnumPins_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI enum_pins_QueryInterface(IEnumPins *iface, REFIID iid, void **out)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, iid %s, out %p.\n", iface, debugstr_guid(iid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) || IsEqualGUID(iid, &IID_IEnumPins))
|
|
|
|
{
|
|
|
|
IEnumPins_AddRef(iface);
|
|
|
|
*out = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI enum_pins_AddRef(IEnumPins *iface)
|
|
|
|
{
|
|
|
|
struct enum_pins *enum_pins = impl_from_IEnumPins(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&enum_pins->refcount);
|
|
|
|
TRACE("%p increasing refcount to %u.\n", enum_pins, refcount);
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI enum_pins_Release(IEnumPins *iface)
|
|
|
|
{
|
|
|
|
struct enum_pins *enum_pins = impl_from_IEnumPins(iface);
|
|
|
|
ULONG refcount = InterlockedDecrement(&enum_pins->refcount);
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", enum_pins, refcount);
|
|
|
|
if (!refcount)
|
|
|
|
{
|
|
|
|
for (i = 0; i < enum_pins->count; ++i)
|
|
|
|
IPin_Release(enum_pins->pins[i]);
|
|
|
|
heap_free(enum_pins->pins);
|
|
|
|
heap_free(enum_pins);
|
|
|
|
}
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI enum_pins_Next(IEnumPins *iface, ULONG count, IPin **pins, ULONG *ret_count)
|
|
|
|
{
|
|
|
|
struct enum_pins *enum_pins = impl_from_IEnumPins(iface);
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("iface %p, count %u, pins %p, ret_count %p.\n", iface, count, pins, ret_count);
|
|
|
|
|
|
|
|
if (!pins || (count > 1 && !ret_count))
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
for (i = 0; i < count && enum_pins->index < enum_pins->count; ++i)
|
|
|
|
{
|
|
|
|
IPin_AddRef(pins[i] = enum_pins->pins[i]);
|
|
|
|
enum_pins->index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret_count) *ret_count = i;
|
|
|
|
return i == count ? S_OK : S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI enum_pins_Skip(IEnumPins *iface, ULONG count)
|
|
|
|
{
|
|
|
|
struct enum_pins *enum_pins = impl_from_IEnumPins(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, count %u.\n", iface, count);
|
|
|
|
|
|
|
|
enum_pins->index += count;
|
|
|
|
|
|
|
|
return enum_pins->index >= enum_pins->count ? S_FALSE : S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI enum_pins_Reset(IEnumPins *iface)
|
|
|
|
{
|
|
|
|
struct enum_pins *enum_pins = impl_from_IEnumPins(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
enum_pins->index = 0;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI enum_pins_Clone(IEnumPins *iface, IEnumPins **out)
|
|
|
|
{
|
|
|
|
struct enum_pins *enum_pins = impl_from_IEnumPins(iface);
|
|
|
|
struct enum_pins *object;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("iface %p, out %p.\n", iface, out);
|
|
|
|
|
|
|
|
if (!(object = heap_alloc(sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
object->IEnumPins_iface.lpVtbl = &enum_pins_vtbl;
|
|
|
|
object->refcount = 1;
|
|
|
|
object->count = enum_pins->count;
|
|
|
|
object->index = enum_pins->index;
|
|
|
|
if (!(object->pins = heap_alloc(enum_pins->count * sizeof(*object->pins))))
|
|
|
|
{
|
|
|
|
heap_free(object);
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
for (i = 0; i < enum_pins->count; ++i)
|
|
|
|
IPin_AddRef(object->pins[i] = enum_pins->pins[i]);
|
|
|
|
|
|
|
|
*out = &object->IEnumPins_iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IEnumPinsVtbl enum_pins_vtbl =
|
|
|
|
{
|
|
|
|
enum_pins_QueryInterface,
|
|
|
|
enum_pins_AddRef,
|
|
|
|
enum_pins_Release,
|
|
|
|
enum_pins_Next,
|
|
|
|
enum_pins_Skip,
|
|
|
|
enum_pins_Reset,
|
|
|
|
enum_pins_Clone,
|
|
|
|
};
|
|
|
|
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter
|
|
|
|
{
|
2019-05-17 07:31:06 +02:00
|
|
|
IMediaStreamFilter IMediaStreamFilter_iface;
|
|
|
|
LONG refcount;
|
|
|
|
CRITICAL_SECTION cs;
|
|
|
|
|
|
|
|
IReferenceClock *clock;
|
|
|
|
WCHAR name[128];
|
|
|
|
IFilterGraph *graph;
|
2012-03-27 23:45:55 +02:00
|
|
|
ULONG nb_streams;
|
2019-08-29 03:24:31 +02:00
|
|
|
IAMMediaStream **streams;
|
2020-03-27 17:54:30 +01:00
|
|
|
FILTER_STATE state;
|
2019-08-29 03:24:31 +02:00
|
|
|
};
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2019-08-29 03:24:31 +02:00
|
|
|
static inline struct filter *impl_from_IMediaStreamFilter(IMediaStreamFilter *iface)
|
2011-08-11 00:13:17 +02:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct filter, IMediaStreamFilter_iface);
|
2011-08-11 00:13:17 +02:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_QueryInterface(IMediaStreamFilter *iface, REFIID riid, void **ret_iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2012-10-12 23:07:15 +02:00
|
|
|
TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), ret_iface);
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2012-10-12 23:07:15 +02:00
|
|
|
*ret_iface = NULL;
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2012-10-12 23:07:15 +02:00
|
|
|
if (IsEqualIID(riid, &IID_IUnknown) ||
|
|
|
|
IsEqualIID(riid, &IID_IPersist) ||
|
|
|
|
IsEqualIID(riid, &IID_IMediaFilter) ||
|
|
|
|
IsEqualIID(riid, &IID_IBaseFilter) ||
|
|
|
|
IsEqualIID(riid, &IID_IMediaStreamFilter))
|
|
|
|
*ret_iface = iface;
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2012-10-12 23:07:15 +02:00
|
|
|
if (*ret_iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2012-10-12 23:07:15 +02:00
|
|
|
IMediaStreamFilter_AddRef(*ret_iface);
|
2008-12-14 19:08:17 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static ULONG WINAPI filter_AddRef(IMediaStreamFilter *iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
ULONG refcount = InterlockedIncrement(&filter->refcount);
|
2012-10-12 07:15:50 +02:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, refcount);
|
2012-10-12 07:15:50 +02:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
return refcount;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static ULONG WINAPI filter_Release(IMediaStreamFilter *iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
ULONG refcount = InterlockedDecrement(&filter->refcount);
|
|
|
|
unsigned int i;
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
if (!refcount)
|
2012-03-27 23:45:55 +02:00
|
|
|
{
|
2019-05-17 07:31:06 +02:00
|
|
|
for (i = 0; i < filter->nb_streams; ++i)
|
2012-05-01 10:21:28 +02:00
|
|
|
{
|
2019-05-17 07:31:06 +02:00
|
|
|
IAMMediaStream_JoinFilter(filter->streams[i], NULL);
|
|
|
|
IAMMediaStream_Release(filter->streams[i]);
|
2012-05-01 10:21:28 +02:00
|
|
|
}
|
2019-05-17 07:31:06 +02:00
|
|
|
heap_free(filter->streams);
|
|
|
|
if (filter->clock)
|
|
|
|
IReferenceClock_Release(filter->clock);
|
|
|
|
DeleteCriticalSection(&filter->cs);
|
|
|
|
heap_free(filter);
|
2012-03-27 23:45:55 +02:00
|
|
|
}
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
return refcount;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_GetClassID(IMediaStreamFilter *iface, CLSID *clsid)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-05-17 07:31:06 +02:00
|
|
|
*clsid = CLSID_MediaStreamFilter;
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2020-03-27 17:54:32 +01:00
|
|
|
static void set_state(struct filter *filter, FILTER_STATE state)
|
|
|
|
{
|
|
|
|
if (filter->state != state)
|
|
|
|
{
|
|
|
|
ULONG i;
|
|
|
|
|
|
|
|
for (i = 0; i < filter->nb_streams; ++i)
|
|
|
|
IAMMediaStream_SetState(filter->streams[i], state);
|
|
|
|
filter->state = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_Stop(IMediaStreamFilter *iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2020-03-27 17:54:32 +01:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2020-03-27 17:54:32 +01:00
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
set_state(filter, State_Stopped);
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_Pause(IMediaStreamFilter *iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2020-03-27 17:54:32 +01:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2020-03-27 17:54:32 +01:00
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
set_state(filter, State_Paused);
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_Run(IMediaStreamFilter *iface, REFERENCE_TIME start)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2020-03-27 17:54:32 +01:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, start %s.\n", iface, wine_dbgstr_longlong(start));
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2020-03-27 17:54:32 +01:00
|
|
|
set_state(filter, State_Running);
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_GetState(IMediaStreamFilter *iface, DWORD timeout, FILTER_STATE *state)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2020-03-27 17:54:30 +01:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, timeout %u, state %p.\n", iface, timeout, state);
|
|
|
|
|
|
|
|
if (!state)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
*state = filter->state;
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
2019-05-17 07:31:06 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_SetSyncSource(IMediaStreamFilter *iface, IReferenceClock *clock)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, clock %p.\n", iface, clock);
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
if (clock)
|
|
|
|
IReferenceClock_AddRef(clock);
|
|
|
|
if (filter->clock)
|
|
|
|
IReferenceClock_Release(filter->clock);
|
|
|
|
filter->clock = clock;
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_GetSyncSource(IMediaStreamFilter *iface, IReferenceClock **clock)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, clock %p.\n", iface, clock);
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
if (filter->clock)
|
|
|
|
IReferenceClock_AddRef(filter->clock);
|
|
|
|
*clock = filter->clock;
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_EnumPins(IMediaStreamFilter *iface, IEnumPins **enum_pins)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:05 +02:00
|
|
|
struct enum_pins *object;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("iface %p, enum_pins %p.\n", iface, enum_pins);
|
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
2019-05-17 07:31:05 +02:00
|
|
|
if (!enum_pins)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
if (!(object = heap_alloc(sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
object->IEnumPins_iface.lpVtbl = &enum_pins_vtbl;
|
|
|
|
object->refcount = 1;
|
|
|
|
object->count = filter->nb_streams;
|
|
|
|
object->index = 0;
|
|
|
|
if (!(object->pins = heap_alloc(filter->nb_streams * sizeof(*object->pins))))
|
|
|
|
{
|
|
|
|
heap_free(object);
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
for (i = 0; i < filter->nb_streams; ++i)
|
|
|
|
{
|
|
|
|
if (FAILED(IAMMediaStream_QueryInterface(filter->streams[i], &IID_IPin, (void **)&object->pins[i])))
|
|
|
|
WARN("Stream %p does not support IPin.\n", filter->streams[i]);
|
|
|
|
}
|
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
2019-05-17 07:31:05 +02:00
|
|
|
*enum_pins = &object->IEnumPins_iface;
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_FindPin(IMediaStreamFilter *iface, const WCHAR *id, IPin **out)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
unsigned int i;
|
|
|
|
WCHAR *ret_id;
|
|
|
|
IPin *pin;
|
|
|
|
|
|
|
|
TRACE("iface %p, id %s, out %p.\n", iface, debugstr_w(id), out);
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
for (i = 0; i < filter->nb_streams; ++i)
|
|
|
|
{
|
|
|
|
if (FAILED(IAMMediaStream_QueryInterface(filter->streams[i], &IID_IPin, (void **)&pin)))
|
|
|
|
{
|
|
|
|
WARN("Stream %p does not support IPin.\n", filter->streams[i]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(IPin_QueryId(pin, &ret_id)))
|
|
|
|
{
|
2020-01-16 03:30:29 +01:00
|
|
|
if (!wcscmp(id, ret_id))
|
2019-05-17 07:31:06 +02:00
|
|
|
{
|
|
|
|
CoTaskMemFree(ret_id);
|
|
|
|
*out = pin;
|
2019-05-27 00:49:20 +02:00
|
|
|
LeaveCriticalSection(&filter->cs);
|
2019-05-17 07:31:06 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
CoTaskMemFree(ret_id);
|
|
|
|
}
|
|
|
|
IPin_Release(pin);
|
|
|
|
}
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return VFW_E_NOT_FOUND;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_QueryFilterInfo(IMediaStreamFilter *iface, FILTER_INFO *info)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, info %p.\n", iface, info);
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
2020-01-16 03:30:29 +01:00
|
|
|
wcscpy(info->achName, filter->name);
|
2019-05-17 07:31:06 +02:00
|
|
|
if (filter->graph)
|
|
|
|
IFilterGraph_AddRef(filter->graph);
|
|
|
|
info->pGraph = filter->graph;
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_JoinFilterGraph(IMediaStreamFilter *iface,
|
2019-05-17 07:31:06 +02:00
|
|
|
IFilterGraph *graph, const WCHAR *name)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2019-05-17 07:31:06 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, graph %p, name.%s.\n", iface, graph, debugstr_w(name));
|
|
|
|
|
|
|
|
EnterCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
if (name)
|
2020-01-16 03:30:29 +01:00
|
|
|
wcsncpy(filter->name, name, ARRAY_SIZE(filter->name));
|
2019-05-17 07:31:06 +02:00
|
|
|
else
|
|
|
|
filter->name[0] = 0;
|
|
|
|
filter->graph = graph;
|
|
|
|
|
|
|
|
LeaveCriticalSection(&filter->cs);
|
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_QueryVendorInfo(IMediaStreamFilter *iface, LPWSTR *vendor_info)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-05-17 07:31:06 +02:00
|
|
|
WARN("iface %p, vendor_info %p, stub!\n", iface, vendor_info);
|
|
|
|
return E_NOTIMPL;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** IMediaStreamFilter methods ***/
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_AddMediaStream(IMediaStreamFilter *iface, IAMMediaStream *pAMMediaStream)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *This = impl_from_IMediaStreamFilter(iface);
|
2018-02-16 17:43:42 +01:00
|
|
|
IAMMediaStream** streams;
|
2012-05-01 10:21:28 +02:00
|
|
|
HRESULT hr;
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2012-03-27 23:45:55 +02:00
|
|
|
TRACE("(%p)->(%p)\n", iface, pAMMediaStream);
|
|
|
|
|
2018-02-16 17:43:42 +01:00
|
|
|
streams = CoTaskMemRealloc(This->streams, (This->nb_streams + 1) * sizeof(IAMMediaStream*));
|
2012-03-27 23:45:55 +02:00
|
|
|
if (!streams)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
This->streams = streams;
|
2018-02-16 17:43:43 +01:00
|
|
|
|
|
|
|
hr = IAMMediaStream_JoinFilter(pAMMediaStream, iface);
|
2012-05-01 10:21:28 +02:00
|
|
|
if (FAILED(hr))
|
|
|
|
return hr;
|
|
|
|
|
2018-02-16 17:43:42 +01:00
|
|
|
This->streams[This->nb_streams] = pAMMediaStream;
|
2012-03-27 23:45:55 +02:00
|
|
|
This->nb_streams++;
|
|
|
|
|
2016-09-01 02:06:48 +02:00
|
|
|
IAMMediaStream_AddRef(pAMMediaStream);
|
2012-03-27 23:45:55 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_GetMediaStream(IMediaStreamFilter *iface, REFMSPID idPurpose, IMediaStream **ppMediaStream)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *This = impl_from_IMediaStreamFilter(iface);
|
2012-03-27 23:45:55 +02:00
|
|
|
MSPID purpose_id;
|
|
|
|
unsigned int i;
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2012-03-27 23:45:55 +02:00
|
|
|
TRACE("(%p)->(%s,%p)\n", iface, debugstr_guid(idPurpose), ppMediaStream);
|
|
|
|
|
|
|
|
for (i = 0; i < This->nb_streams; i++)
|
|
|
|
{
|
2018-02-16 17:43:42 +01:00
|
|
|
IAMMediaStream_GetInformation(This->streams[i], &purpose_id, NULL);
|
2012-03-27 23:45:55 +02:00
|
|
|
if (IsEqualIID(&purpose_id, idPurpose))
|
|
|
|
{
|
2018-02-16 17:43:42 +01:00
|
|
|
*ppMediaStream = (IMediaStream *)This->streams[i];
|
2012-03-27 23:45:55 +02:00
|
|
|
IMediaStream_AddRef(*ppMediaStream);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return MS_E_NOSTREAM;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2020-03-04 00:19:14 +01:00
|
|
|
static HRESULT WINAPI filter_EnumMediaStreams(IMediaStreamFilter *iface, LONG index, IMediaStream **stream)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
2020-03-04 00:19:14 +01:00
|
|
|
struct filter *filter = impl_from_IMediaStreamFilter(iface);
|
2008-12-14 19:08:17 +01:00
|
|
|
|
2020-03-04 00:19:14 +01:00
|
|
|
TRACE("filter %p, index %d, stream %p.\n", filter, index, stream);
|
|
|
|
|
|
|
|
if (index >= filter->nb_streams)
|
|
|
|
return S_FALSE;
|
|
|
|
|
|
|
|
if (!stream)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
IMediaStream_AddRef(*stream = (IMediaStream *)filter->streams[index]);
|
|
|
|
return S_OK;
|
2008-12-14 19:08:17 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_SupportSeeking(IMediaStreamFilter *iface, BOOL bRenderer)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
|
|
|
FIXME("(%p)->(%d): Stub!\n", iface, bRenderer);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_ReferenceTimeToStreamTime(IMediaStreamFilter *iface, REFERENCE_TIME *pTime)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
|
|
|
FIXME("(%p)->(%p): Stub!\n", iface, pTime);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_GetCurrentStreamTime(IMediaStreamFilter *iface, REFERENCE_TIME *pCurrentStreamTime)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
|
|
|
FIXME("(%p)->(%p): Stub!\n", iface, pCurrentStreamTime);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_WaitUntil(IMediaStreamFilter *iface, REFERENCE_TIME WaitStreamTime)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
|
|
|
FIXME("(%p)->(%s): Stub!\n", iface, wine_dbgstr_longlong(WaitStreamTime));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_Flush(IMediaStreamFilter *iface, BOOL bCancelEOS)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
|
|
|
FIXME("(%p)->(%d): Stub!\n", iface, bCancelEOS);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static HRESULT WINAPI filter_EndOfStream(IMediaStreamFilter *iface)
|
2008-12-14 19:08:17 +01:00
|
|
|
{
|
|
|
|
FIXME("(%p)->(): Stub!\n", iface);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
static const IMediaStreamFilterVtbl filter_vtbl =
|
|
|
|
{
|
|
|
|
filter_QueryInterface,
|
|
|
|
filter_AddRef,
|
|
|
|
filter_Release,
|
|
|
|
filter_GetClassID,
|
|
|
|
filter_Stop,
|
|
|
|
filter_Pause,
|
|
|
|
filter_Run,
|
|
|
|
filter_GetState,
|
|
|
|
filter_SetSyncSource,
|
|
|
|
filter_GetSyncSource,
|
|
|
|
filter_EnumPins,
|
|
|
|
filter_FindPin,
|
|
|
|
filter_QueryFilterInfo,
|
|
|
|
filter_JoinFilterGraph,
|
|
|
|
filter_QueryVendorInfo,
|
|
|
|
filter_AddMediaStream,
|
|
|
|
filter_GetMediaStream,
|
|
|
|
filter_EnumMediaStreams,
|
|
|
|
filter_SupportSeeking,
|
|
|
|
filter_ReferenceTimeToStreamTime,
|
|
|
|
filter_GetCurrentStreamTime,
|
|
|
|
filter_WaitUntil,
|
|
|
|
filter_Flush,
|
|
|
|
filter_EndOfStream
|
2008-12-14 19:08:17 +01:00
|
|
|
};
|
2011-08-11 00:14:30 +02:00
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
HRESULT filter_create(IUnknown *outer, void **out)
|
2012-01-18 14:49:45 +01:00
|
|
|
{
|
2019-08-29 03:24:31 +02:00
|
|
|
struct filter *object;
|
2012-05-01 10:21:28 +02:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
TRACE("outer %p, out %p.\n", outer, out);
|
2012-01-18 14:49:45 +01:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
if (outer)
|
2011-08-11 00:14:30 +02:00
|
|
|
return CLASS_E_NOAGGREGATION;
|
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
if (!(object = heap_alloc_zero(sizeof(*object))))
|
2011-08-11 00:14:30 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2019-08-29 03:24:32 +02:00
|
|
|
object->IMediaStreamFilter_iface.lpVtbl = &filter_vtbl;
|
2019-05-17 07:31:06 +02:00
|
|
|
object->refcount = 1;
|
|
|
|
InitializeCriticalSection(&object->cs);
|
|
|
|
object->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": MediaStreamFilter.cs");
|
2011-08-11 00:14:30 +02:00
|
|
|
|
2019-05-17 07:31:06 +02:00
|
|
|
TRACE("Created media stream filter %p.\n", object);
|
|
|
|
*out = &object->IMediaStreamFilter_iface;
|
2011-08-11 00:14:30 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|