Commit d623f004 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

winmm: Remove variables duration and samples which are not really used from check_position.

parent 0351f56e
...@@ -54,14 +54,9 @@ static void check_position(int device, HWAVEIN win, DWORD bytes, ...@@ -54,14 +54,9 @@ static void check_position(int device, HWAVEIN win, DWORD bytes,
LPWAVEFORMATEX pwfx ) LPWAVEFORMATEX pwfx )
{ {
MMTIME mmtime; MMTIME mmtime;
DWORD samples;
double duration;
MMRESULT rc; MMRESULT rc;
DWORD returned; DWORD returned;
samples=bytes/(pwfx->wBitsPerSample/8*pwfx->nChannels);
duration=((double)samples)/pwfx->nSamplesPerSec;
mmtime.wType = TIME_BYTES; mmtime.wType = TIME_BYTES;
rc=waveInGetPosition(win, &mmtime, sizeof(mmtime)); rc=waveInGetPosition(win, &mmtime, sizeof(mmtime));
ok(rc==MMSYSERR_NOERROR, ok(rc==MMSYSERR_NOERROR,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment