This PR prevents waiting on the check framesAvailableToWrite >= kRingBufferChunkSize to pass before requesting a ring buffer reset.
Waiting for the check to pass requires the ring buffer to render at least kRingBufferChunkSize audio frames before the seek is processed, which results in an audible artifact.
This PR prevents waiting on the check
framesAvailableToWrite >= kRingBufferChunkSize
to pass before requesting a ring buffer reset.Waiting for the check to pass requires the ring buffer to render at least
kRingBufferChunkSize
audio frames before the seek is processed, which results in an audible artifact.