2015-03-28 13:17:21 -07:00
|
|
|
From 601e237d1321fcdea3a678c31fd9eac62b89cfb4 Mon Sep 17 00:00:00 2001
|
2015-03-27 14:24:40 -07:00
|
|
|
From: Mark Harmstone <mark@harmstone.com>
|
|
|
|
Date: Sun, 22 Mar 2015 13:58:53 +0000
|
2015-03-28 13:17:21 -07:00
|
|
|
Subject: dsound: Add EAX propset stubs.
|
2015-03-27 14:24:40 -07:00
|
|
|
|
|
|
|
---
|
|
|
|
dlls/dsound/Makefile.in | 1 +
|
|
|
|
dlls/dsound/buffer.c | 6 +++++
|
|
|
|
dlls/dsound/dsound_private.h | 8 +++++++
|
|
|
|
dlls/dsound/eax.c | 54 ++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
4 files changed, 69 insertions(+)
|
|
|
|
create mode 100644 dlls/dsound/eax.c
|
|
|
|
|
|
|
|
diff --git a/dlls/dsound/Makefile.in b/dlls/dsound/Makefile.in
|
|
|
|
index 6cb653f..1c04bf3 100644
|
|
|
|
--- a/dlls/dsound/Makefile.in
|
|
|
|
+++ b/dlls/dsound/Makefile.in
|
|
|
|
@@ -9,6 +9,7 @@ C_SRCS = \
|
|
|
|
dsound_convert.c \
|
|
|
|
dsound_main.c \
|
|
|
|
duplex.c \
|
|
|
|
+ eax.c \
|
|
|
|
mixer.c \
|
|
|
|
primary.c \
|
|
|
|
propset.c \
|
|
|
|
diff --git a/dlls/dsound/buffer.c b/dlls/dsound/buffer.c
|
2015-03-28 13:17:21 -07:00
|
|
|
index 9eff140..0596ce3 100644
|
2015-03-27 14:24:40 -07:00
|
|
|
--- a/dlls/dsound/buffer.c
|
|
|
|
+++ b/dlls/dsound/buffer.c
|
2015-03-28 13:17:21 -07:00
|
|
|
@@ -1298,6 +1298,9 @@ static HRESULT WINAPI IKsPropertySetImpl_Get(IKsPropertySet *iface, REFGUID guid
|
2015-03-27 14:24:40 -07:00
|
|
|
TRACE("(iface=%p,guidPropSet=%s,dwPropID=%d,pInstanceData=%p,cbInstanceData=%d,pPropData=%p,cbPropData=%d,pcbReturned=%p)\n",
|
|
|
|
This,debugstr_guid(guidPropSet),dwPropID,pInstanceData,cbInstanceData,pPropData,cbPropData,pcbReturned);
|
|
|
|
|
|
|
|
+ if (IsEqualGUID(&DSPROPSETID_EAX_ReverbProperties, guidPropSet) || IsEqualGUID(&DSPROPSETID_EAXBUFFER_ReverbProperties, guidPropSet))
|
|
|
|
+ return EAX_Get(This, guidPropSet, dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData, pcbReturned);
|
|
|
|
+
|
|
|
|
return E_PROP_ID_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2015-03-28 13:17:21 -07:00
|
|
|
@@ -1309,6 +1312,9 @@ static HRESULT WINAPI IKsPropertySetImpl_Set(IKsPropertySet *iface, REFGUID guid
|
2015-03-27 14:24:40 -07:00
|
|
|
|
|
|
|
TRACE("(%p,%s,%d,%p,%d,%p,%d)\n",This,debugstr_guid(guidPropSet),dwPropID,pInstanceData,cbInstanceData,pPropData,cbPropData);
|
|
|
|
|
|
|
|
+ if (IsEqualGUID(&DSPROPSETID_EAX_ReverbProperties, guidPropSet) || IsEqualGUID(&DSPROPSETID_EAXBUFFER_ReverbProperties, guidPropSet))
|
|
|
|
+ return EAX_Set(This, guidPropSet, dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData);
|
|
|
|
+
|
|
|
|
return E_PROP_ID_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/dlls/dsound/dsound_private.h b/dlls/dsound/dsound_private.h
|
2015-03-28 13:17:21 -07:00
|
|
|
index 3c7dc7a..e4495b2 100644
|
2015-03-27 14:24:40 -07:00
|
|
|
--- a/dlls/dsound/dsound_private.h
|
|
|
|
+++ b/dlls/dsound/dsound_private.h
|
2015-03-28 13:17:21 -07:00
|
|
|
@@ -229,6 +229,14 @@ LONG capped_refcount_dec(LONG *ref) DECLSPEC_HIDDEN;
|
2015-03-27 14:24:40 -07:00
|
|
|
|
|
|
|
HRESULT DSOUND_FullDuplexCreate(REFIID riid, void **ppv) DECLSPEC_HIDDEN;
|
|
|
|
|
|
|
|
+/* eax.c */
|
|
|
|
+HRESULT WINAPI EAX_Get(IDirectSoundBufferImpl *buf, REFGUID guidPropSet,
|
|
|
|
+ ULONG dwPropID, void *pInstanceData, ULONG cbInstanceData, void *pPropData,
|
|
|
|
+ ULONG cbPropData, ULONG *pcbReturned) DECLSPEC_HIDDEN;
|
|
|
|
+HRESULT WINAPI EAX_Set(IDirectSoundBufferImpl *buf, REFGUID guidPropSet,
|
|
|
|
+ ULONG dwPropID, void *pInstanceData, ULONG cbInstanceData, void *pPropData,
|
|
|
|
+ ULONG cbPropData) DECLSPEC_HIDDEN;
|
|
|
|
+
|
|
|
|
/* mixer.c */
|
|
|
|
void DSOUND_CheckEvent(const IDirectSoundBufferImpl *dsb, DWORD playpos, int len) DECLSPEC_HIDDEN;
|
|
|
|
void DSOUND_RecalcVolPan(PDSVOLUMEPAN volpan) DECLSPEC_HIDDEN;
|
|
|
|
diff --git a/dlls/dsound/eax.c b/dlls/dsound/eax.c
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000..c30c7e1
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/dlls/dsound/eax.c
|
|
|
|
@@ -0,0 +1,54 @@
|
|
|
|
+/*
|
|
|
|
+ * Copyright (c) 2015 Mark Harmstone
|
|
|
|
+ *
|
|
|
|
+ * 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
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+#include <stdarg.h>
|
|
|
|
+#include <math.h>
|
|
|
|
+
|
|
|
|
+#include "windef.h"
|
|
|
|
+#include "winbase.h"
|
|
|
|
+#include "winuser.h"
|
|
|
|
+#include "mmsystem.h"
|
|
|
|
+#include "winternl.h"
|
|
|
|
+#include "vfwmsgs.h"
|
|
|
|
+#include "wine/debug.h"
|
|
|
|
+#include "dsound.h"
|
|
|
|
+#include "dsound_private.h"
|
|
|
|
+
|
|
|
|
+WINE_DEFAULT_DEBUG_CHANNEL(eax);
|
|
|
|
+
|
|
|
|
+HRESULT WINAPI EAX_Get(IDirectSoundBufferImpl *buf, REFGUID guidPropSet,
|
|
|
|
+ ULONG dwPropID, void *pInstanceData, ULONG cbInstanceData, void *pPropData,
|
|
|
|
+ ULONG cbPropData, ULONG *pcbReturned)
|
|
|
|
+{
|
|
|
|
+ TRACE("(buf=%p,guidPropSet=%s,dwPropID=%d,pInstanceData=%p,cbInstanceData=%d,pPropData=%p,cbPropData=%d,pcbReturned=%p)\n",
|
|
|
|
+ buf, debugstr_guid(guidPropSet), dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData, pcbReturned);
|
|
|
|
+
|
|
|
|
+ *pcbReturned = 0;
|
|
|
|
+
|
|
|
|
+ return E_PROP_ID_UNSUPPORTED;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+HRESULT WINAPI EAX_Set(IDirectSoundBufferImpl *buf, REFGUID guidPropSet,
|
|
|
|
+ ULONG dwPropID, void *pInstanceData, ULONG cbInstanceData, void *pPropData,
|
|
|
|
+ ULONG cbPropData)
|
|
|
|
+{
|
|
|
|
+ TRACE("(%p,%s,%d,%p,%d,%p,%d)\n",
|
|
|
|
+ buf, debugstr_guid(guidPropSet), dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData);
|
|
|
|
+
|
|
|
|
+ return E_PROP_ID_UNSUPPORTED;
|
|
|
|
+}
|
2015-03-28 13:17:21 -07:00
|
|
|
--
|
|
|
|
2.3.3
|
2015-03-27 14:24:40 -07:00
|
|
|
|