mirror of https://github.com/mpv-player/mpv
ao_wasapi: remove useless buffer_block_size
this was only ever used for a verbose message
This commit is contained in:
parent
cbc951d491
commit
099fdde7a4
|
@ -103,7 +103,6 @@ typedef struct wasapi_state {
|
|||
|
||||
/* format info */
|
||||
WAVEFORMATEXTENSIBLE format;
|
||||
size_t buffer_block_size; /* Size of each block in bytes */
|
||||
UINT32 bufferFrameCount; /* wasapi buffer block size, number of frames, frame size at format.nBlockAlign */
|
||||
|
||||
change_notify change;
|
||||
|
|
|
@ -694,9 +694,6 @@ reinit:
|
|||
EXIT_ON_ERROR(hr);
|
||||
|
||||
ao->device_buffer = state->bufferFrameCount;
|
||||
state->buffer_block_size = state->format.Format.nChannels *
|
||||
state->format.Format.wBitsPerSample / 8 *
|
||||
state->bufferFrameCount;
|
||||
bufferDuration =
|
||||
(REFERENCE_TIME) ((10000.0 * 1000 / state->format.Format.nSamplesPerSec *
|
||||
state->bufferFrameCount) + 0.5);
|
||||
|
@ -715,9 +712,6 @@ reinit:
|
|||
mp_LastError_to_str());
|
||||
}
|
||||
|
||||
MP_VERBOSE(state, "Format fixed. Using %lld byte buffer block size\n",
|
||||
(long long) state->buffer_block_size);
|
||||
|
||||
return S_OK;
|
||||
exit_label:
|
||||
MP_ERR(state, "Error initializing device: %s\n", mp_HRESULT_to_str(hr));
|
||||
|
|
Loading…
Reference in New Issue