mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-01-28 22:04:43 -08:00
Added mfplat-MFCreateSample patchset
This commit is contained in:
parent
965002dc53
commit
ab69e65646
@ -0,0 +1,376 @@
|
||||
From 196f84dc6312d65fb3f5c2eeb3c7683eb295234e Mon Sep 17 00:00:00 2001
|
||||
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||||
Date: Thu, 23 Aug 2018 12:22:07 +1000
|
||||
Subject: [PATCH 1/3] mfplat: Forward IMFMediaType to IMFAttributes
|
||||
|
||||
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||||
---
|
||||
dlls/mfplat/main.c | 165 +++++++++++++----------------------------------------
|
||||
1 file changed, 41 insertions(+), 124 deletions(-)
|
||||
|
||||
diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c
|
||||
index df61f3c..daae13c 100644
|
||||
--- a/dlls/mfplat/main.c
|
||||
+++ b/dlls/mfplat/main.c
|
||||
@@ -31,7 +31,7 @@
|
||||
#include "mfapi.h"
|
||||
#include "mfidl.h"
|
||||
#include "mferror.h"
|
||||
-
|
||||
+#include "wine/heap.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
@@ -890,6 +890,12 @@ static const IMFAttributesVtbl mfattributes_vtbl =
|
||||
mfattributes_CopyAllItems
|
||||
};
|
||||
|
||||
+static void init_attribute_object(mfattributes *object, UINT32 size)
|
||||
+{
|
||||
+ object->ref = 1;
|
||||
+ object->IMFAttributes_iface.lpVtbl = &mfattributes_vtbl;
|
||||
+}
|
||||
+
|
||||
/***********************************************************************
|
||||
* MFCreateAttributes (mfplat.@)
|
||||
*/
|
||||
@@ -903,10 +909,8 @@ HRESULT WINAPI MFCreateAttributes(IMFAttributes **attributes, UINT32 size)
|
||||
if(!object)
|
||||
return E_OUTOFMEMORY;
|
||||
|
||||
- object->ref = 1;
|
||||
- object->IMFAttributes_iface.lpVtbl = &mfattributes_vtbl;
|
||||
+ init_attribute_object(object, size);
|
||||
|
||||
- *attributes = &object->IMFAttributes_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@@ -1077,6 +1081,7 @@ HRESULT WINAPI MFCreateSourceResolver(IMFSourceResolver **resolver)
|
||||
|
||||
typedef struct _mfmediatype
|
||||
{
|
||||
+ mfattributes attributes;
|
||||
IMFMediaType IMFMediaType_iface;
|
||||
LONG ref;
|
||||
} mfmediatype;
|
||||
@@ -1137,269 +1142,179 @@ static ULONG WINAPI mediatype_Release(IMFMediaType *iface)
|
||||
static HRESULT WINAPI mediatype_GetItem(IMFMediaType *iface, REFGUID key, PROPVARIANT *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetItem(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetItemType(IMFMediaType *iface, REFGUID key, MF_ATTRIBUTE_TYPE *type)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), type);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetItemType(&This->attributes.IMFAttributes_iface, key, type);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_CompareItem(IMFMediaType *iface, REFGUID key, REFPROPVARIANT value, BOOL *result)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %p\n", This, debugstr_guid(key), value, result);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_CompareItem(&This->attributes.IMFAttributes_iface, key, value, result);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_Compare(IMFMediaType *iface, IMFAttributes *attrs, MF_ATTRIBUTES_MATCH_TYPE type,
|
||||
BOOL *result)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %p, %d, %p\n", This, attrs, type, result);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_Compare(&This->attributes.IMFAttributes_iface, attrs, type, result);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetUINT32(IMFMediaType *iface, REFGUID key, UINT32 *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetUINT32(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetUINT64(IMFMediaType *iface, REFGUID key, UINT64 *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetUINT64(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetDouble(IMFMediaType *iface, REFGUID key, double *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetDouble(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetGUID(IMFMediaType *iface, REFGUID key, GUID *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetGUID(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetStringLength(IMFMediaType *iface, REFGUID key, UINT32 *length)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), length);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetStringLength(&This->attributes.IMFAttributes_iface, key, length);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetString(IMFMediaType *iface, REFGUID key, WCHAR *value,
|
||||
UINT32 size, UINT32 *length)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %d, %p\n", This, debugstr_guid(key), value, size, length);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetString(&This->attributes.IMFAttributes_iface, key, value, size, length);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetAllocatedString(IMFMediaType *iface, REFGUID key,
|
||||
WCHAR **value, UINT32 *length)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %p\n", This, debugstr_guid(key), value, length);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetAllocatedString(&This->attributes.IMFAttributes_iface, key, value, length);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetBlobSize(IMFMediaType *iface, REFGUID key, UINT32 *size)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), size);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetBlobSize(&This->attributes.IMFAttributes_iface, key, size);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetBlob(IMFMediaType *iface, REFGUID key, UINT8 *buf,
|
||||
UINT32 bufsize, UINT32 *blobsize)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %d, %p\n", This, debugstr_guid(key), buf, bufsize, blobsize);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetBlob(&This->attributes.IMFAttributes_iface, key, buf, bufsize, blobsize);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetAllocatedBlob(IMFMediaType *iface, REFGUID key, UINT8 **buf, UINT32 *size)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %p\n", This, debugstr_guid(key), buf, size);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetAllocatedBlob(&This->attributes.IMFAttributes_iface, key, buf, size);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetUnknown(IMFMediaType *iface, REFGUID key, REFIID riid, void **ppv)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s, %p\n", This, debugstr_guid(key), debugstr_guid(riid), ppv);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetUnknown(&This->attributes.IMFAttributes_iface, key, riid, ppv);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetItem(IMFMediaType *iface, REFGUID key, REFPROPVARIANT value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetItem(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_DeleteItem(IMFMediaType *iface, REFGUID key)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s\n", This, debugstr_guid(key));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_DeleteItem(&This->attributes.IMFAttributes_iface, key);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_DeleteAllItems(IMFMediaType *iface)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p\n", This);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_DeleteAllItems(&This->attributes.IMFAttributes_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetUINT32(IMFMediaType *iface, REFGUID key, UINT32 value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %d\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetUINT32(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetUINT64(IMFMediaType *iface, REFGUID key, UINT64 value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s\n", This, debugstr_guid(key), wine_dbgstr_longlong(value));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetUINT64(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetDouble(IMFMediaType *iface, REFGUID key, double value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %f\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetDouble(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetGUID(IMFMediaType *iface, REFGUID key, REFGUID value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s\n", This, debugstr_guid(key), debugstr_guid(value));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetGUID(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetString(IMFMediaType *iface, REFGUID key, const WCHAR *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s\n", This, debugstr_guid(key), debugstr_w(value));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetString(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetBlob(IMFMediaType *iface, REFGUID key, const UINT8 *buf, UINT32 size)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %d\n", This, debugstr_guid(key), buf, size);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetBlob(&This->attributes.IMFAttributes_iface, key, buf, size);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_SetUnknown(IMFMediaType *iface, REFGUID key, IUnknown *unknown)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), unknown);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetUnknown(&This->attributes.IMFAttributes_iface, key, unknown);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_LockStore(IMFMediaType *iface)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p\n", This);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_LockStore(&This->attributes.IMFAttributes_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_UnlockStore(IMFMediaType *iface)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p\n", This);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_UnlockStore(&This->attributes.IMFAttributes_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetCount(IMFMediaType *iface, UINT32 *items)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %p\n", This, items);
|
||||
-
|
||||
- if(items)
|
||||
- *items = 0;
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetCount(&This->attributes.IMFAttributes_iface, items);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_GetItemByIndex(IMFMediaType *iface, UINT32 index, GUID *key, PROPVARIANT *value)
|
||||
{
|
||||
mfmediatype *This = impl_from_IMFMediaType(iface);
|
||||
-
|
||||
- FIXME("%p, %d, %p, %p\n", This, index, key, value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetItemByIndex(&This->attributes.IMFAttributes_iface, index, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mediatype_CopyAllItems(IMFMediaType *iface, IMFAttributes *dest)
|
||||
@@ -1510,14 +1425,16 @@ HRESULT WINAPI MFCreateMediaType(IMFMediaType **type)
|
||||
if(!type)
|
||||
return E_INVALIDARG;
|
||||
|
||||
- object = HeapAlloc( GetProcessHeap(), 0, sizeof(*object) );
|
||||
+ object = heap_alloc( sizeof(*object) );
|
||||
if(!object)
|
||||
return E_OUTOFMEMORY;
|
||||
|
||||
object->ref = 1;
|
||||
object->IMFMediaType_iface.lpVtbl = &mediatype_vtbl;
|
||||
+ init_attribute_object(&object->attributes, 0);
|
||||
|
||||
*type = &object->IMFMediaType_iface;
|
||||
+
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
--
|
||||
1.9.1
|
||||
|
@ -0,0 +1,335 @@
|
||||
From e6a5f46310c08c6d5ce5e59c0589c55b8b26acc7 Mon Sep 17 00:00:00 2001
|
||||
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||||
Date: Fri, 24 Aug 2018 09:48:43 +1000
|
||||
Subject: [PATCH 2/3] mfplat: Forward IMFStreamDescriptor to IMFAttributes
|
||||
|
||||
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
||||
---
|
||||
dlls/mfplat/main.c | 154 ++++++++++++-----------------------------------------
|
||||
1 file changed, 33 insertions(+), 121 deletions(-)
|
||||
|
||||
diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c
|
||||
index daae13c..a8ff335 100644
|
||||
--- a/dlls/mfplat/main.c
|
||||
+++ b/dlls/mfplat/main.c
|
||||
@@ -1598,6 +1598,7 @@ HRESULT WINAPI MFCreateEventQueue(IMFMediaEventQueue **queue)
|
||||
|
||||
typedef struct _mfdescriptor
|
||||
{
|
||||
+ mfattributes attributes;
|
||||
IMFStreamDescriptor IMFStreamDescriptor_iface;
|
||||
LONG ref;
|
||||
} mfdescriptor;
|
||||
@@ -1658,269 +1659,179 @@ static ULONG WINAPI mfdescriptor_Release(IMFStreamDescriptor *iface)
|
||||
static HRESULT WINAPI mfdescriptor_GetItem(IMFStreamDescriptor *iface, REFGUID key, PROPVARIANT *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetItem(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetItemType(IMFStreamDescriptor *iface, REFGUID key, MF_ATTRIBUTE_TYPE *type)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), type);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetItemType(&This->attributes.IMFAttributes_iface, key, type);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_CompareItem(IMFStreamDescriptor *iface, REFGUID key, REFPROPVARIANT value, BOOL *result)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %p\n", This, debugstr_guid(key), value, result);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_CompareItem(&This->attributes.IMFAttributes_iface, key, value, result);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_Compare(IMFStreamDescriptor *iface, IMFAttributes *theirs, MF_ATTRIBUTES_MATCH_TYPE type,
|
||||
BOOL *result)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %p, %d, %p\n", This, theirs, type, result);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_Compare(&This->attributes.IMFAttributes_iface, theirs, type, result);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetUINT32(IMFStreamDescriptor *iface, REFGUID key, UINT32 *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetUINT32(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetUINT64(IMFStreamDescriptor *iface, REFGUID key, UINT64 *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetUINT64(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetDouble(IMFStreamDescriptor *iface, REFGUID key, double *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetDouble(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetGUID(IMFStreamDescriptor *iface, REFGUID key, GUID *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetGUID(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetStringLength(IMFStreamDescriptor *iface, REFGUID key, UINT32 *length)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), length);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetStringLength(&This->attributes.IMFAttributes_iface, key, length);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetString(IMFStreamDescriptor *iface, REFGUID key, WCHAR *value,
|
||||
UINT32 size, UINT32 *length)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %d, %p\n", This, debugstr_guid(key), value, size, length);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetString(&This->attributes.IMFAttributes_iface, key, value, size, length);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetAllocatedString(IMFStreamDescriptor *iface, REFGUID key,
|
||||
WCHAR **value, UINT32 *length)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %p\n", This, debugstr_guid(key), value, length);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetAllocatedString(&This->attributes.IMFAttributes_iface, key, value, length);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetBlobSize(IMFStreamDescriptor *iface, REFGUID key, UINT32 *size)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), size);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetBlobSize(&This->attributes.IMFAttributes_iface, key, size);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetBlob(IMFStreamDescriptor *iface, REFGUID key, UINT8 *buf,
|
||||
UINT32 bufsize, UINT32 *blobsize)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %d, %p\n", This, debugstr_guid(key), buf, bufsize, blobsize);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetBlob(&This->attributes.IMFAttributes_iface, key, buf, bufsize, blobsize);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetAllocatedBlob(IMFStreamDescriptor *iface, REFGUID key, UINT8 **buf, UINT32 *size)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %p\n", This, debugstr_guid(key), buf, size);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetAllocatedBlob(&This->attributes.IMFAttributes_iface, key, buf, size);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetUnknown(IMFStreamDescriptor *iface, REFGUID key, REFIID riid, void **ppv)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s, %p\n", This, debugstr_guid(key), debugstr_guid(riid), ppv);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetUnknown(&This->attributes.IMFAttributes_iface, key, riid, ppv);
|
||||
}
|
||||
|
||||
-static HRESULT WINAPI mfdescriptor_SetItem(IMFStreamDescriptor *iface, REFGUID key, REFPROPVARIANT Value)
|
||||
+static HRESULT WINAPI mfdescriptor_SetItem(IMFStreamDescriptor *iface, REFGUID key, REFPROPVARIANT value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), Value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetItem(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_DeleteItem(IMFStreamDescriptor *iface, REFGUID key)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s\n", This, debugstr_guid(key));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_DeleteItem(&This->attributes.IMFAttributes_iface, key);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_DeleteAllItems(IMFStreamDescriptor *iface)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p\n", This);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_DeleteAllItems(&This->attributes.IMFAttributes_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetUINT32(IMFStreamDescriptor *iface, REFGUID key, UINT32 value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %d\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetUINT32(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetUINT64(IMFStreamDescriptor *iface, REFGUID key, UINT64 value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s\n", This, debugstr_guid(key), wine_dbgstr_longlong(value));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetUINT64(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetDouble(IMFStreamDescriptor *iface, REFGUID key, double value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %f\n", This, debugstr_guid(key), value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetDouble(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetGUID(IMFStreamDescriptor *iface, REFGUID key, REFGUID value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s\n", This, debugstr_guid(key), debugstr_guid(value));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetGUID(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetString(IMFStreamDescriptor *iface, REFGUID key, const WCHAR *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %s\n", This, debugstr_guid(key), debugstr_w(value));
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetString(&This->attributes.IMFAttributes_iface, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetBlob(IMFStreamDescriptor *iface, REFGUID key, const UINT8 *buf, UINT32 size)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p, %d\n", This, debugstr_guid(key), buf, size);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetBlob(&This->attributes.IMFAttributes_iface, key, buf, size);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_SetUnknown(IMFStreamDescriptor *iface, REFGUID key, IUnknown *unknown)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %s, %p\n", This, debugstr_guid(key), unknown);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_SetUnknown(&This->attributes.IMFAttributes_iface, key, unknown);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_LockStore(IMFStreamDescriptor *iface)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p\n", This);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_LockStore(&This->attributes.IMFAttributes_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_UnlockStore(IMFStreamDescriptor *iface)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p\n", This);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_UnlockStore(&This->attributes.IMFAttributes_iface);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetCount(IMFStreamDescriptor *iface, UINT32 *items)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %p\n", This, items);
|
||||
-
|
||||
- if(items)
|
||||
- *items = 0;
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetCount(&This->attributes.IMFAttributes_iface, items);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_GetItemByIndex(IMFStreamDescriptor *iface, UINT32 index, GUID *key, PROPVARIANT *value)
|
||||
{
|
||||
mfdescriptor *This = impl_from_IMFStreamDescriptor(iface);
|
||||
-
|
||||
- FIXME("%p, %d, %p, %p\n", This, index, key, value);
|
||||
-
|
||||
- return E_NOTIMPL;
|
||||
+ return IMFAttributes_GetItemByIndex(&This->attributes.IMFAttributes_iface, index, key, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfdescriptor_CopyAllItems(IMFStreamDescriptor *iface, IMFAttributes *dest)
|
||||
@@ -2002,7 +1913,8 @@ HRESULT WINAPI MFCreateStreamDescriptor(DWORD identifier, DWORD count,
|
||||
|
||||
object->ref = 1;
|
||||
object->IMFStreamDescriptor_iface.lpVtbl = &mfdescriptor_vtbl;
|
||||
-
|
||||
+ init_attribute_object(&object->attributes, 0);
|
||||
*descriptor = &object->IMFStreamDescriptor_iface;
|
||||
+
|
||||
return S_OK;
|
||||
}
|
||||
--
|
||||
1.9.1
|
||||
|
File diff suppressed because it is too large
Load Diff
1
patches/mfplat-MFCreateSample/definition
Normal file
1
patches/mfplat-MFCreateSample/definition
Normal file
@ -0,0 +1 @@
|
||||
Fixes: [45617] Implement MFCreateSample
|
@ -184,6 +184,7 @@ patch_enable_all ()
|
||||
enable_libs_Unicode_Collation="$1"
|
||||
enable_loader_OSX_Preloader="$1"
|
||||
enable_mfplat_MFCreateMFByteStreamOnStream="$1"
|
||||
enable_mfplat_MFCreateSample="$1"
|
||||
enable_mfplat_MFTRegisterLocal="$1"
|
||||
enable_mmsystem_dll16_MIDIHDR_Refcount="$1"
|
||||
enable_mountmgr_DosDevices="$1"
|
||||
@ -728,6 +729,9 @@ patch_enable ()
|
||||
mfplat-MFCreateMFByteStreamOnStream)
|
||||
enable_mfplat_MFCreateMFByteStreamOnStream="$2"
|
||||
;;
|
||||
mfplat-MFCreateSample)
|
||||
enable_mfplat_MFCreateSample="$2"
|
||||
;;
|
||||
mfplat-MFTRegisterLocal)
|
||||
enable_mfplat_MFTRegisterLocal="$2"
|
||||
;;
|
||||
@ -4394,6 +4398,25 @@ if test "$enable_mfplat_MFCreateMFByteStreamOnStream" -eq 1; then
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset mfplat-MFCreateSample
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#45617] Implement MFCreateSample
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * dlls/mfplat/main.c, dlls/mfplat/mfplat.spec, dlls/mfplat/tests/mfplat.c, include/mfapi.h
|
||||
# |
|
||||
if test "$enable_mfplat_MFCreateSample" -eq 1; then
|
||||
patch_apply mfplat-MFCreateSample/0001-mfplat-Forward-IMFMediaType-to-IMFAttributes.patch
|
||||
patch_apply mfplat-MFCreateSample/0002-mfplat-Forward-IMFStreamDescriptor-to-IMFAttributes.patch
|
||||
patch_apply mfplat-MFCreateSample/0003-mfplat-Implement-MFCreateSample.patch
|
||||
(
|
||||
printf '%s\n' '+ { "Alistair Leslie-Hughes", "mfplat: Forward IMFMediaType to IMFAttributes.", 1 },';
|
||||
printf '%s\n' '+ { "Alistair Leslie-Hughes", "mfplat: Forward IMFStreamDescriptor to IMFAttributes.", 1 },';
|
||||
printf '%s\n' '+ { "Alistair Leslie-Hughes", "mfplat: Implement MFCreateSample.", 1 },';
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset mfplat-MFTRegisterLocal
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
|
Loading…
x
Reference in New Issue
Block a user