A few minor changes to match upstream svn.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10890 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2006-09-05 16:33:30 +00:00
parent d770cfa65f
commit 9eba0d7173
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ void oggpack_readinit(oggpack_buffer *b,ogg_reference *r){
long oggpack_look_full(oggpack_buffer *b,int bits) ICODE_ATTR;
long oggpack_look_full(oggpack_buffer *b,int bits){
unsigned long m=oggpack_mask[bits];
unsigned long ret=0;
unsigned long ret=-1;
bits+=b->headbit;
@ -139,7 +139,7 @@ int oggpack_eop(oggpack_buffer *b){
long oggpack_read(oggpack_buffer *b,int bits) ICODE_ATTR;
long oggpack_read(oggpack_buffer *b,int bits){
unsigned long m=oggpack_mask[bits];
ogg_uint32_t ret=0;
ogg_uint32_t ret=-1;
bits+=b->headbit;

View file

@ -191,7 +191,7 @@ static inline long oggpack_look(oggpack_buffer *b, int bits){
if(bits+b->headbit < b->headend<<3){
extern const unsigned long oggpack_mask[];
unsigned long m=oggpack_mask[bits];
unsigned long ret=0;
unsigned long ret=-1;
bits+=b->headbit;
ret=b->headptr[0]>>b->headbit;