From da7652e29c7ad2f2a3f09bb1351c4629ce16dbf3 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Sat, 9 Nov 2024 07:55:52 +1100 Subject: [PATCH] Updated dmime_segment_getaudiopath patchset Remove testing tracing. --- ...ment-IDirectMusicSegment-GetAudioPat.patch | 27 +++---------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/patches/dmime_segment_getaudiopath/0001-dmime-Semi-implement-IDirectMusicSegment-GetAudioPat.patch b/patches/dmime_segment_getaudiopath/0001-dmime-Semi-implement-IDirectMusicSegment-GetAudioPat.patch index 45bef9d3..860d53b8 100644 --- a/patches/dmime_segment_getaudiopath/0001-dmime-Semi-implement-IDirectMusicSegment-GetAudioPat.patch +++ b/patches/dmime_segment_getaudiopath/0001-dmime-Semi-implement-IDirectMusicSegment-GetAudioPat.patch @@ -1,14 +1,13 @@ -From 77236eab74a9c09a54feec3985ffd732faf52120 Mon Sep 17 00:00:00 2001 +From 79617ce168284934b09313f454e911394ec5eed8 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Fri, 1 Nov 2024 17:59:51 +1100 Subject: [PATCH] dmime: Semi implement IDirectMusicSegment::GetAudioPathConfig. --- - dlls/dmime/audiopath.c | 97 ++++++++++++++++++++++------------------ - dlls/dmime/performance.c | 4 +- - dlls/dmime/segment.c | 6 +++ - 3 files changed, 61 insertions(+), 46 deletions(-) + dlls/dmime/audiopath.c | 97 +++++++++++++++++++++++------------------- + dlls/dmime/segment.c | 6 +++ + 2 files changed, 59 insertions(+), 44 deletions(-) diff --git a/dlls/dmime/audiopath.c b/dlls/dmime/audiopath.c index 3389f965b8f..501eecf234c 100644 @@ -137,24 +136,6 @@ index 3389f965b8f..501eecf234c 100644 } return S_OK; } -diff --git a/dlls/dmime/performance.c b/dlls/dmime/performance.c -index 500bc8b536f..cc83d96872a 100644 ---- a/dlls/dmime/performance.c -+++ b/dlls/dmime/performance.c -@@ -1678,11 +1678,11 @@ static HRESULT WINAPI performance_CreateAudioPath(IDirectMusicPerformance8 *ifac - ERR("Unexpected object class %s for source config.\n", debugstr_dmguid(&objDesc.guidClass)); - return E_INVALIDARG; - } -- -+FIXME("4\n"); - hr = path_config_get_audio_path_params(pSourceConfig, &format, &desc, &port_params); - if (FAILED(hr)) - return hr; -- -+FIXME("5\n"); - hr = perf_dmport_create(This, &port_params); - if (FAILED(hr)) - return hr; diff --git a/dlls/dmime/segment.c b/dlls/dmime/segment.c index b96f0e2e401..36860b7c762 100644 --- a/dlls/dmime/segment.c