mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-21 07:13:59 +00:00
Fix a couple compiler warnings
This commit is contained in:
parent
953858b0e7
commit
fe6a1244ed
2 changed files with 2 additions and 2 deletions
|
@ -237,7 +237,7 @@ void Session::arDecodeAndPlaySample(char* sampleData, int sampleLength)
|
||||||
|
|
||||||
// Update desiredSize with the number of bytes actually populated by the decoding operation
|
// Update desiredSize with the number of bytes actually populated by the decoding operation
|
||||||
if (samplesDecoded > 0) {
|
if (samplesDecoded > 0) {
|
||||||
SDL_assert(desiredSize >= sizeof(short) * samplesDecoded * s_ActiveSession->m_AudioConfig.channelCount);
|
SDL_assert(desiredSize >= (int)(sizeof(short) * samplesDecoded * s_ActiveSession->m_AudioConfig.channelCount));
|
||||||
desiredSize = sizeof(short) * samplesDecoded * s_ActiveSession->m_AudioConfig.channelCount;
|
desiredSize = sizeof(short) * samplesDecoded * s_ActiveSession->m_AudioConfig.channelCount;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -81,7 +81,7 @@ bool SdlAudioRenderer::prepareForPlayback(const OPUS_MULTISTREAM_CONFIGURATION*
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
|
||||||
"Desired audio buffer: %u samples (%lu bytes)",
|
"Desired audio buffer: %u samples (%zu bytes)",
|
||||||
want.samples,
|
want.samples,
|
||||||
want.samples * sizeof(short) * want.channels);
|
want.samples * sizeof(short) * want.channels);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue