Merge branch 'v0.22.x' into master

This commit is contained in:
Max Kellermann 2020-10-15 20:14:36 +02:00
commit 0ecc3394c3
3 changed files with 7 additions and 5 deletions

View File

@ -32,6 +32,8 @@
#include "Watch.hxx"
#include <cassert>
namespace ODBus {
WatchManager::Watch::Watch(EventLoop &event_loop,

View File

@ -34,8 +34,7 @@
#include "util/StringView.hxx"
#include <cassert>
#include <string.h>
#include <cstring>
#ifdef HAVE_UN
#include <sys/un.h>

View File

@ -203,7 +203,7 @@ OSXOutput::GetVolume()
const auto vol = AudioObjectGetPropertyDataT<Float32>(dev_id,
aopa);
return static_cast<int>(vol * 100.0);
return static_cast<int>(vol * 100.0f);
}
void
@ -420,10 +420,11 @@ osx_output_set_device_format(AudioDeviceID dev_id,
float score = osx_output_score_format(format_desc, target_format);
// print all (linear pcm) formats and their rating
if (score > 0.0)
if (score > 0.0f)
FormatDebug(osx_output_domain,
"Format: %s rated %f",
StreamDescriptionToString(format_desc).c_str(), score);
StreamDescriptionToString(format_desc).c_str(),
(double)score);
if (score > output_score) {
output_score = score;