diff options
Diffstat (limited to '')
-rw-r--r-- | src/outputBuffer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/outputBuffer.h b/src/outputBuffer.h index 70fff1d08..ac2ffac3f 100644 --- a/src/outputBuffer.h +++ b/src/outputBuffer.h @@ -46,6 +46,8 @@ typedef struct _OutputBufferChunk { typedef struct _OutputBuffer { OutputBufferChunk *chunks; + unsigned int size; + /** the index of the first decoded chunk */ mpd_uint16 volatile begin; @@ -58,7 +60,7 @@ typedef struct _OutputBuffer { ConvState convState; } OutputBuffer; -void initOutputBuffer(OutputBuffer * cb); +void initOutputBuffer(OutputBuffer * cb, unsigned int size); void clearOutputBuffer(OutputBuffer * cb); |