1
0
Fork 0
forked from len0rd/rockbox

Move all code into IRAM

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7740 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-11-03 15:32:40 +00:00
parent c43822d102
commit 6f7f921ebe
4 changed files with 16 additions and 6 deletions

View file

@ -252,7 +252,7 @@ static inline unsigned int get_bits(GetBitContext *s, int n){
return tmp;
}
unsigned int get_bits_long(GetBitContext *s, int n);
unsigned int get_bits_long(GetBitContext *s, int n) ICODE_ATTR;
/**
* shows 0-17 bits.
@ -267,7 +267,7 @@ static inline unsigned int show_bits(GetBitContext *s, int n){
return tmp;
}
unsigned int show_bits_long(GetBitContext *s, int n);
unsigned int show_bits_long(GetBitContext *s, int n) ICODE_ATTR;
static inline void skip_bits(GetBitContext *s, int n){
//Note gcc seems to optimize this to s->index+=n for the ALT_READER :))
@ -328,6 +328,6 @@ static inline void init_get_bits(GetBitContext *s,
}
}
void align_get_bits(GetBitContext *s);
void align_get_bits(GetBitContext *s) ICODE_ATTR;
#endif /* BITSTREAM_H */