1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 00:05:07 +00:00
serenity/Userland/Services/AudioServer/AudioClient.ipc
Elyse c78a8b94c5 Everywhere: Refactor 'muted' to 'main_mix_muted' in all AudioConnections
The 'muted' methods referred to the 'main mix muted' but it wasn't
really clear from the name. This change will be useful because in the
next commit, a 'self muted' state will be added to each audio client
connection.
2021-12-24 00:19:01 -08:00

9 lines
247 B
Text

#include <LibCore/AnonymousBuffer.h>
endpoint AudioClient
{
finished_playing_buffer(i32 buffer_id) =|
main_mix_muted_state_changed(bool muted) =|
main_mix_volume_changed(double volume) =|
client_volume_changed(double volume) =|
}