| 160 | } |
| 161 | |
| 162 | static int ring_drain(RingBuffer *ring, int offset) |
| 163 | { |
| 164 | av_assert2(offset >= -ring_size_of_read_back(ring)); |
| 165 | av_assert2(offset <= ring_size(ring)); |
| 166 | ring->read_pos += offset; |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | static int async_check_interrupt(void *arg) |
| 171 | { |
no test coverage detected