diff options
Diffstat (limited to 'src/outputBuffer.c')
-rw-r--r-- | src/outputBuffer.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/outputBuffer.c b/src/outputBuffer.c index aadd5e379..157e36374 100644 --- a/src/outputBuffer.c +++ b/src/outputBuffer.c @@ -92,6 +92,13 @@ int outputBufferAbsolute(const OutputBuffer * cb, unsigned relative) return (int)i; } +char * outputBufferChunkData(const OutputBuffer * cb, unsigned i) +{ + assert(i < buffered_chunks); + + return cb->chunks + i * CHUNK_SIZE; +} + /** * Return the tail chunk has room for additional data. If there is no * room in the queue, this function blocks until the player thread has |