summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/bitwise.c
diff options
context:
space:
mode:
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;