diff options
Diffstat (limited to 'src/outputBuffer.h')
-rw-r--r-- | src/outputBuffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/outputBuffer.h b/src/outputBuffer.h index 28bb743b3..6ca073836 100644 --- a/src/outputBuffer.h +++ b/src/outputBuffer.h @@ -49,12 +49,12 @@ typedef struct _OutputBuffer { unsigned int size; /** the index of the first decoded chunk */ - mpd_uint16 volatile begin; + unsigned int volatile begin; /** the index after the last decoded chunk */ - mpd_uint16 volatile end; + unsigned int volatile end; - mpd_sint16 currentChunk; + int currentChunk; AudioFormat audioFormat; ConvState convState; |