Make audio backend "file" configurable

This commit is contained in:
badaix 2020-10-05 22:42:56 +02:00
parent db5482b0fb
commit 541d803452
14 changed files with 112 additions and 15 deletions

View file

@ -153,7 +153,7 @@ const PcmStreamPtr StreamManager::getDefaultStream()
if (streams_.empty())
return nullptr;
for (const auto stream: streams_)
for (const auto stream : streams_)
{
if (stream->getCodec() != "null")
return stream;