| 128 | } |
| 129 | |
| 130 | int DummyLoad::writeSamples(short *buf, int len, bool *wUnderrun, |
| 131 | unsigned long long timestamp, |
| 132 | bool isControl) |
| 133 | { |
| 134 | updateTime(); |
| 135 | underrunLock.lock(); |
| 136 | underrun |= (currstamp+len < timestamp); |
| 137 | underrunLock.unlock(); |
| 138 | return len; |
| 139 | } |
| 140 | |
| 141 | bool DummyLoad::updateAlignment(TIMESTAMP timestamp) |
| 142 | { |
no outgoing calls
no test coverage detected