Skip to content
Snippets Groups Projects
Unverified Commit af9336df authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1958 from lioncash/audio

audio_core: Convert LOG_CRITICAL + UNREACHABLE over to UNIMPLEMENTED/UNIMPLEMENTED_MSG
parents 19bfbb28 a73c7c73
No related branches found
No related tags found
No related merge requests found
...@@ -22,8 +22,7 @@ static Stream::Format ChannelsToStreamFormat(u32 num_channels) { ...@@ -22,8 +22,7 @@ static Stream::Format ChannelsToStreamFormat(u32 num_channels) {
return Stream::Format::Multi51Channel16; return Stream::Format::Multi51Channel16;
} }
LOG_CRITICAL(Audio, "Unimplemented num_channels={}", num_channels); UNIMPLEMENTED_MSG("Unimplemented num_channels={}", num_channels);
UNREACHABLE();
return {}; return {};
} }
......
...@@ -260,8 +260,7 @@ void AudioRenderer::VoiceState::RefreshBuffer() { ...@@ -260,8 +260,7 @@ void AudioRenderer::VoiceState::RefreshBuffer() {
break; break;
} }
default: default:
LOG_CRITICAL(Audio, "Unimplemented sample_format={}", info.sample_format); UNIMPLEMENTED_MSG("Unimplemented sample_format={}", info.sample_format);
UNREACHABLE();
break; break;
} }
...@@ -280,8 +279,7 @@ void AudioRenderer::VoiceState::RefreshBuffer() { ...@@ -280,8 +279,7 @@ void AudioRenderer::VoiceState::RefreshBuffer() {
break; break;
} }
default: default:
LOG_CRITICAL(Audio, "Unimplemented channel_count={}", info.channel_count); UNIMPLEMENTED_MSG("Unimplemented channel_count={}", info.channel_count);
UNREACHABLE();
break; break;
} }
......
...@@ -28,8 +28,7 @@ u32 Stream::GetNumChannels() const { ...@@ -28,8 +28,7 @@ u32 Stream::GetNumChannels() const {
case Format::Multi51Channel16: case Format::Multi51Channel16:
return 6; return 6;
} }
LOG_CRITICAL(Audio, "Unimplemented format={}", static_cast<u32>(format)); UNIMPLEMENTED_MSG("Unimplemented format={}", static_cast<u32>(format));
UNREACHABLE();
return {}; return {};
} }
...@@ -49,7 +48,7 @@ void Stream::Play() { ...@@ -49,7 +48,7 @@ void Stream::Play() {
void Stream::Stop() { void Stream::Stop() {
state = State::Stopped; state = State::Stopped;
ASSERT_MSG(false, "Unimplemented"); UNIMPLEMENTED();
} }
Stream::State Stream::GetState() const { Stream::State Stream::GetState() const {
...@@ -120,7 +119,7 @@ bool Stream::QueueBuffer(BufferPtr&& buffer) { ...@@ -120,7 +119,7 @@ bool Stream::QueueBuffer(BufferPtr&& buffer) {
} }
bool Stream::ContainsBuffer(Buffer::Tag tag) const { bool Stream::ContainsBuffer(Buffer::Tag tag) const {
ASSERT_MSG(false, "Unimplemented"); UNIMPLEMENTED();
return {}; return {};
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment