diff options
| author | Dave Chapman <dave@dchapman.com> | 2005-11-03 15:32:40 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2005-11-03 15:32:40 +0000 |
| commit | 6f7f921ebee5589c7bc9e1196392c0ae7f28f96c (patch) | |
| tree | 3f978a40e9537b33555984cc5bc4153f3b3a9d6a /apps/codecs/libffmpegFLAC/bitstream.h | |
| parent | c43822d1027db7a12f37c822d77e6fe644fab0de (diff) | |
| download | rockbox-6f7f921ebee5589c7bc9e1196392c0ae7f28f96c.zip rockbox-6f7f921ebee5589c7bc9e1196392c0ae7f28f96c.tar.gz rockbox-6f7f921ebee5589c7bc9e1196392c0ae7f28f96c.tar.bz2 rockbox-6f7f921ebee5589c7bc9e1196392c0ae7f28f96c.tar.xz | |
Move all code into IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7740 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libffmpegFLAC/bitstream.h')
| -rw-r--r-- | apps/codecs/libffmpegFLAC/bitstream.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libffmpegFLAC/bitstream.h b/apps/codecs/libffmpegFLAC/bitstream.h index 62e98c0..668e23a 100644 --- a/apps/codecs/libffmpegFLAC/bitstream.h +++ b/apps/codecs/libffmpegFLAC/bitstream.h @@ -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 */ |