- libarmbox: some manual code nicenings

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-11-07 00:57:01 +01:00
committed by Thilo Graf
parent adb876646f
commit c4d691348f
9 changed files with 514 additions and 619 deletions

View File

@@ -96,18 +96,9 @@ class hdmi_cec : public OpenThreads::Thread
void vol_up();
void vol_down();
void toggle_mute();
int GetVolume()
{
return volume;
};
bool isMuted()
{
return muted;
};
int GetAudioDestination()
{
return (int)audio_destination;
}
int GetVolume() { return volume; };
bool isMuted() { return muted; };
int GetAudioDestination() { return (int)audio_destination; }
void SetAudioDestination(int audio_dest);
};