| 92 | |
| 93 | |
| 94 | bool AudioPort::processEffects() |
| 95 | { |
| 96 | if( m_effects ) |
| 97 | { |
| 98 | bool more = m_effects->processAudioBuffer( m_portBuffer, Engine::mixer()->framesPerPeriod(), m_bufferUsage ); |
| 99 | return more; |
| 100 | } |
| 101 | return false; |
| 102 | } |
| 103 | |
| 104 | |
| 105 | void AudioPort::doProcessing() |
nothing calls this directly
no test coverage detected