| 357 | } |
| 358 | |
| 359 | bool EffectStage::Release() |
| 360 | { |
| 361 | // Progress toward termination (Remaining() == 0), |
| 362 | // if mLastProduced + mLastZeroes > 0, |
| 363 | // which is what Acquire() last returned |
| 364 | mDelayRemaining -= mLastZeroes; |
| 365 | assert(mDelayRemaining >= 0); |
| 366 | mLastProduced = mLastZeroes = 0; |
| 367 | return true; |
| 368 | } |
| 369 | |
| 370 | unsigned MakeChannelMap(int nChannels, int channel, ChannelName map[3]) |
| 371 | { |
no outgoing calls
no test coverage detected