Updated dmime_segment_getaudiopath patchset

Remove testing tracing.
This commit is contained in:
Alistair Leslie-Hughes 2024-11-09 07:55:52 +11:00
parent 1bc2bc0404
commit da7652e29c

View File

@ -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 <leslie_alistair@hotmail.com>
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