| 148 | } |
| 149 | |
| 150 | bool SoundReactivePlugin::hasTopicChanged(const String& topic) |
| 151 | { |
| 152 | MutexGuard<MutexRecursive> guard(m_mutex); |
| 153 | bool hasTopicChanged = m_hasTopicChanged; |
| 154 | |
| 155 | /* Only a single topic, therefore its not necessary to check. */ |
| 156 | PLUGIN_NOT_USED(topic); |
| 157 | |
| 158 | m_hasTopicChanged = false; |
| 159 | |
| 160 | return hasTopicChanged; |
| 161 | } |
| 162 | |
| 163 | void SoundReactivePlugin::start(uint16_t width, uint16_t height) |
| 164 | { |
nothing calls this directly
no outgoing calls
no test coverage detected