xaudio2: IXAPO::Process out parameter should not be const.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
dac7441b4e
commit
53cd694e6a
|
@ -175,7 +175,7 @@ static void WINAPI XAPOFX_UnlockForProcess(IXAPO *iface)
|
||||||
static void WINAPI XAPOFX_Process(IXAPO *iface, UINT32 in_params_count,
|
static void WINAPI XAPOFX_Process(IXAPO *iface, UINT32 in_params_count,
|
||||||
const XAPO_PROCESS_BUFFER_PARAMETERS *in_params,
|
const XAPO_PROCESS_BUFFER_PARAMETERS *in_params,
|
||||||
UINT32 out_params_count,
|
UINT32 out_params_count,
|
||||||
const XAPO_PROCESS_BUFFER_PARAMETERS *out_params, BOOL enabled)
|
XAPO_PROCESS_BUFFER_PARAMETERS *out_params, BOOL enabled)
|
||||||
{
|
{
|
||||||
XA2XAPOFXImpl *This = impl_from_IXAPO(iface);
|
XA2XAPOFXImpl *This = impl_from_IXAPO(iface);
|
||||||
TRACE("%p, %u, %p, %u, %p, %u\n", This, in_params_count, in_params,
|
TRACE("%p, %u, %p, %u, %p, %u\n", This, in_params_count, in_params,
|
||||||
|
|
|
@ -118,7 +118,7 @@ interface IXAPO : IUnknown
|
||||||
void UnlockForProcess(void);
|
void UnlockForProcess(void);
|
||||||
|
|
||||||
void Process(UINT32 in_params_count, const XAPO_PROCESS_BUFFER_PARAMETERS *in_params,
|
void Process(UINT32 in_params_count, const XAPO_PROCESS_BUFFER_PARAMETERS *in_params,
|
||||||
UINT32 out_params_count, const XAPO_PROCESS_BUFFER_PARAMETERS *out_params,
|
UINT32 out_params_count, XAPO_PROCESS_BUFFER_PARAMETERS *out_params,
|
||||||
BOOL enabled);
|
BOOL enabled);
|
||||||
|
|
||||||
UINT32 CalcInputFrames(UINT32 output_frames);
|
UINT32 CalcInputFrames(UINT32 output_frames);
|
||||||
|
|
Loading…
Reference in New Issue