This commit is contained in:
Attila Uygun 2023-06-11 01:48:17 +02:00
parent 325b07d844
commit ab4c0c7e57
1 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@ class TaskRunner;
namespace eng { namespace eng {
class AudioSink;
class AudioBus; class AudioBus;
// Mix and render audio with low overhead. A platform specific AudioSink // Mix and render audio with low overhead. A platform specific AudioSink
@ -91,7 +90,7 @@ class AudioMixer : public AudioSink::Delegate {
bool audio_enabled_ = true; bool audio_enabled_ = true;
// AudioSink::Delegate implementation // AudioSink::Delegate interface
int GetChannelCount() final { return kChannelCount; } int GetChannelCount() final { return kChannelCount; }
void RenderAudio(float* output_buffer, size_t num_frames) final; void RenderAudio(float* output_buffer, size_t num_frames) final;