summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/bitwise.c
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-11-09 21:59:27 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-11-09 21:59:27 +0000
commit5c54ba49d5c05e394a31f3827f7c4a75e28d9999 (patch)
tree096c978d3e4d259cc6cf08ee5ccdd4414d06c013 /apps/codecs/Tremor/bitwise.c
parent2e383a430de025378bf17942a1cf5ea86860f700 (diff)
downloadrockbox-5c54ba49d5c05e394a31f3827f7c4a75e28d9999.tar.gz
rockbox-5c54ba49d5c05e394a31f3827f7c4a75e28d9999.zip
Added macros controlling what goes to IRAM on different targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11483 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Tremor/bitwise.c')
-rw-r--r--apps/codecs/Tremor/bitwise.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/Tremor/bitwise.c b/apps/codecs/Tremor/bitwise.c
index 3e967b9d42..55d3712708 100644
--- a/apps/codecs/Tremor/bitwise.c
+++ b/apps/codecs/Tremor/bitwise.c
@@ -49,7 +49,7 @@ void oggpack_readinit(oggpack_buffer *b,ogg_reference *r){
49 } 49 }
50 50
51/* Read in bits without advancing the bitptr; bits <= 32 */ 51/* Read in bits without advancing the bitptr; bits <= 32 */
52long oggpack_look_full(oggpack_buffer *b,int bits) ICODE_ATTR; 52long oggpack_look_full(oggpack_buffer *b,int bits) ICODE_ATTR_TREMOR_NOT_MDCT;
53long oggpack_look_full(oggpack_buffer *b,int bits){ 53long oggpack_look_full(oggpack_buffer *b,int bits){
54 unsigned long m=oggpack_mask[bits]; 54 unsigned long m=oggpack_mask[bits];
55 unsigned long ret=-1; 55 unsigned long ret=-1;
@@ -136,7 +136,7 @@ int oggpack_eop(oggpack_buffer *b){
136} 136}
137 137
138/* bits <= 32 */ 138/* bits <= 32 */
139long oggpack_read(oggpack_buffer *b,int bits) ICODE_ATTR; 139long oggpack_read(oggpack_buffer *b,int bits) ICODE_ATTR_TREMOR_NOT_MDCT;
140long oggpack_read(oggpack_buffer *b,int bits){ 140long oggpack_read(oggpack_buffer *b,int bits){
141 unsigned long m=oggpack_mask[bits]; 141 unsigned long m=oggpack_mask[bits];
142 ogg_uint32_t ret=-1; 142 ogg_uint32_t ret=-1;