Akihiro Sagawa : winmm: Get rid of TIME_MS format support in waveOutGetPosition().

Alexandre Julliard julliard at winehq.org
Mon Jun 7 15:02:04 CDT 2021


Module: wine
Branch: stable
Commit: e6819b0f4339ba98e14f60f71bf4a48e0a5934b7
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e6819b0f4339ba98e14f60f71bf4a48e0a5934b7

Author: Akihiro Sagawa <sagawa.aki at gmail.com>
Date:   Wed Jan 20 22:23:42 2021 +0900

winmm: Get rid of TIME_MS format support in waveOutGetPosition().

SofTalk (Japanese text-to-speech software) depends on this.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50515
Signed-off-by: Akihiro Sagawa <sagawa.aki at gmail.com>
Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 37f3a078314423da4e291ccc8b09c6aab8aeb99f)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/winmm/tests/wave.c | 2 +-
 dlls/winmm/waveform.c   | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/dlls/winmm/tests/wave.c b/dlls/winmm/tests/wave.c
index 079a497dd0b..cb18f3e0fa4 100644
--- a/dlls/winmm/tests/wave.c
+++ b/dlls/winmm/tests/wave.c
@@ -519,7 +519,7 @@ static void check_position(int device, HWAVEOUT wout, DWORD bytes,
     rc=waveOutGetPosition(wout, &mmtime, sizeof(mmtime));
     ok(rc==MMSYSERR_NOERROR,
        "waveOutGetPosition(%s): rc=%s\n",dev_name(device),wave_out_error(rc));
-    todo_wine ok(mmtime.wType == TIME_BYTES, "(waveOutGetPosition(%s): returned %s\n",
+    ok(mmtime.wType == TIME_BYTES, "(waveOutGetPosition(%s): returned %s\n",
        dev_name(device), wave_time_format(mmtime.wType));
     returned = time_to_bytes(&mmtime, pwfx);
     ok(returned == bytes, "waveOutGetPosition(%s): TIME_MS test failed\n",
diff --git a/dlls/winmm/waveform.c b/dlls/winmm/waveform.c
index 9d58b78c779..876b9d3d91d 100644
--- a/dlls/winmm/waveform.c
+++ b/dlls/winmm/waveform.c
@@ -2038,9 +2038,6 @@ static MMRESULT WINMM_FramesToMMTime(MMTIME *time, UINT32 played_frames,
     case TIME_SAMPLES:
         time->u.sample = played_frames;
         return MMSYSERR_NOERROR;
-    case TIME_MS:
-        time->u.ms = (UINT64)played_frames * 1000 / sample_rate;
-        return MMSYSERR_NOERROR;
     case TIME_SMPTE:
         time->u.smpte.fps = 30;
         played_frames += sample_rate / time->u.smpte.fps - 1; /* round up */




More information about the wine-cvs mailing list