2018-07-27 01:01:37 +01:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "audio_core/audio_out.h"
|
2018-07-28 18:44:50 +01:00
|
|
|
#include "audio_core/sink.h"
|
|
|
|
#include "audio_core/sink_details.h"
|
2018-07-27 01:01:37 +01:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
|
|
|
|
namespace AudioCore {
|
|
|
|
|
|
|
|
/// Returns the stream format from the specified number of channels
|
2018-07-28 18:35:22 +01:00
|
|
|
static Stream::Format ChannelsToStreamFormat(u32 num_channels) {
|
2018-07-27 01:01:37 +01:00
|
|
|
switch (num_channels) {
|
|
|
|
case 1:
|
|
|
|
return Stream::Format::Mono16;
|
|
|
|
case 2:
|
|
|
|
return Stream::Format::Stereo16;
|
|
|
|
case 6:
|
|
|
|
return Stream::Format::Multi51Channel16;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_CRITICAL(Audio, "Unimplemented num_channels={}", num_channels);
|
|
|
|
UNREACHABLE();
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-07-28 18:35:22 +01:00
|
|
|
StreamPtr AudioOut::OpenStream(u32 sample_rate, u32 num_channels,
|
2018-07-27 01:01:37 +01:00
|
|
|
Stream::ReleaseCallback&& release_callback) {
|
2018-07-28 18:44:50 +01:00
|
|
|
if (!sink) {
|
|
|
|
const SinkDetails& sink_details = GetSinkDetails("auto");
|
|
|
|
sink = sink_details.factory("");
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_shared<Stream>(sample_rate, ChannelsToStreamFormat(num_channels),
|
|
|
|
std::move(release_callback),
|
|
|
|
sink->AcquireSinkStream(sample_rate, num_channels));
|
2018-07-27 01:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<u64> AudioOut::GetTagsAndReleaseBuffers(StreamPtr stream, size_t max_count) {
|
|
|
|
return stream->GetTagsAndReleaseBuffers(max_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioOut::StartStream(StreamPtr stream) {
|
|
|
|
stream->Play();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioOut::StopStream(StreamPtr stream) {
|
|
|
|
stream->Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioOut::QueueBuffer(StreamPtr stream, Buffer::Tag tag, std::vector<u8>&& data) {
|
|
|
|
return stream->QueueBuffer(std::make_shared<Buffer>(tag, std::move(data)));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace AudioCore
|