cellAudio: silence cellAudioSendAck and add pseudo code for it

This commit is contained in:
Megamouse 2023-03-05 23:33:35 +01:00
parent 69ecf8aea7
commit 55d6ee65ae
2 changed files with 42 additions and 4 deletions

View file

@ -390,12 +390,14 @@ public:
u32 key_count = 0;
u8 event_period = 0;
std::array<u64, MAX_AUDIO_EVENT_QUEUES> event_sources{};
std::array<u64, MAX_AUDIO_EVENT_QUEUES> event_data3{};
struct key_info
{
u8 start_period = 0; // Starting event_period
u32 flags = 0; // iFlags
u64 source = 0; // Event source
u64 ack_timestamp = 0; // timestamp of last call of cellAudioSendAck
std::shared_ptr<lv2_event_queue> port{}; // Underlying event port
};