2019-06-01 19:03:15 +00:00
|
|
|
//
|
|
|
|
// DeferredAudio.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 01/06/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef DeferredAudio_h
|
|
|
|
#define DeferredAudio_h
|
|
|
|
|
|
|
|
#include "Audio.hpp"
|
|
|
|
#include "../../../Outputs/Speaker/Implementation/LowpassSpeaker.hpp"
|
|
|
|
|
|
|
|
namespace Apple {
|
|
|
|
namespace Macintosh {
|
|
|
|
|
|
|
|
struct DeferredAudio {
|
|
|
|
Concurrency::DeferringAsyncTaskQueue queue;
|
|
|
|
Audio audio;
|
|
|
|
Outputs::Speaker::LowpassSpeaker<Audio> speaker;
|
|
|
|
HalfCycles time_since_update;
|
|
|
|
|
|
|
|
DeferredAudio() : audio(queue), speaker(audio) {}
|
|
|
|
|
|
|
|
void flush() {
|
2019-07-29 01:49:54 +00:00
|
|
|
speaker.run_for(queue, time_since_update.flush<Cycles>());
|
2019-06-01 19:03:15 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DeferredAudio_h */
|