summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/ogg.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/Tremor/ogg.h')
-rw-r--r--apps/codecs/Tremor/ogg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/Tremor/ogg.h b/apps/codecs/Tremor/ogg.h
index e6c78da95e..5f85eb420f 100644
--- a/apps/codecs/Tremor/ogg.h
+++ b/apps/codecs/Tremor/ogg.h
@@ -191,7 +191,7 @@ static inline long oggpack_look(oggpack_buffer *b, int bits){
191 if(bits+b->headbit < b->headend<<3){ 191 if(bits+b->headbit < b->headend<<3){
192 extern const unsigned long oggpack_mask[]; 192 extern const unsigned long oggpack_mask[];
193 unsigned long m=oggpack_mask[bits]; 193 unsigned long m=oggpack_mask[bits];
194 unsigned long ret=0; 194 unsigned long ret=-1;
195 195
196 bits+=b->headbit; 196 bits+=b->headbit;
197 ret=b->headptr[0]>>b->headbit; 197 ret=b->headptr[0]>>b->headbit;