| 29 | |
| 30 | |
| 31 | int AudioRecordQueue::available(void) |
| 32 | { |
| 33 | uint32_t h, t; |
| 34 | |
| 35 | h = head; |
| 36 | t = tail; |
| 37 | if (h >= t) return h - t; |
| 38 | return 53 + h - t; |
| 39 | } |
| 40 | |
| 41 | void AudioRecordQueue::clear(void) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected