diff options
Diffstat (limited to 'src/ogg_decode.c')
-rw-r--r-- | src/ogg_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ogg_decode.c b/src/ogg_decode.c index 249b3490c..158428beb 100644 --- a/src/ogg_decode.c +++ b/src/ogg_decode.c @@ -97,7 +97,7 @@ int ogg_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) } cb->bitRate[cb->end] = bitRate; cb->end++; - if(cb->end>=BUFFERED_CHUNKS) { + if(cb->end>=buffered_chunks) { cb->end = 0; cb->wrap = 1; } |