mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
refactor(pulseaudio): remove wait timeout, fix indents
This commit is contained in:
parent
6e8b9dea29
commit
1792090d66
3 changed files with 10 additions and 12 deletions
|
@ -33,7 +33,7 @@ class pulseaudio {
|
|||
|
||||
const string& get_name();
|
||||
|
||||
bool wait(int timeout = -1);
|
||||
bool wait();
|
||||
int process_events();
|
||||
|
||||
int get_volume();
|
||||
|
|
|
@ -94,11 +94,9 @@ const string& pulseaudio::get_name() {
|
|||
}
|
||||
|
||||
/**
|
||||
* Wait for events (timeout in ms)
|
||||
* Wait for events
|
||||
*/
|
||||
bool pulseaudio::wait(int timeout) {
|
||||
// TODO wait for specified timeout
|
||||
(void) timeout;
|
||||
bool pulseaudio::wait() {
|
||||
return m_events.size() > 0;
|
||||
}
|
||||
|
||||
|
@ -122,7 +120,7 @@ int pulseaudio::process_events() {
|
|||
break;
|
||||
// get volume
|
||||
case evtype::CHANGE:
|
||||
// doesn't do anything
|
||||
// doesn't do anything
|
||||
o = pa_context_get_sink_info_by_index(m_context, m_index, get_sink_volume_callback, this);
|
||||
wait_loop(o, m_mainloop);
|
||||
break;
|
||||
|
@ -252,7 +250,7 @@ void pulseaudio::subscribe_callback(pa_context *, pa_subscription_event_type_t t
|
|||
switch(t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) {
|
||||
case PA_SUBSCRIPTION_EVENT_NEW:
|
||||
This->m_events.emplace(evtype::NEW);
|
||||
break;
|
||||
break;
|
||||
case PA_SUBSCRIPTION_EVENT_CHANGE:
|
||||
if (idx == This->m_index)
|
||||
This->m_events.emplace(evtype::CHANGE);
|
||||
|
|
|
@ -49,7 +49,7 @@ namespace modules {
|
|||
bool pulseaudio_module::has_event() {
|
||||
// Poll for mixer and control events
|
||||
try {
|
||||
if (m_pulseaudio->wait(25))
|
||||
if (m_pulseaudio->wait())
|
||||
return true;
|
||||
} catch (const pulseaudio_error& e) {
|
||||
m_log.err("%s: %s", name(), e.what());
|
||||
|
@ -146,7 +146,7 @@ namespace modules {
|
|||
} else {
|
||||
return false;
|
||||
}
|
||||
if (m_pulseaudio->wait(0)) {
|
||||
if (m_pulseaudio->wait()) {
|
||||
m_pulseaudio->process_events();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue