summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs')
-rw-r--r--lib/rbcodec/codecs/liba52/bitstream.c2
-rw-r--r--lib/rbcodec/codecs/libtremor/codebook.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/rbcodec/codecs/liba52/bitstream.c b/lib/rbcodec/codecs/liba52/bitstream.c
index 155368f1ed..69dd1dc5b7 100644
--- a/lib/rbcodec/codecs/liba52/bitstream.c
+++ b/lib/rbcodec/codecs/liba52/bitstream.c
@@ -35,7 +35,7 @@ void a52_bitstream_set_ptr (a52_state_t * state, uint8_t * buf)
35{ 35{
36 int align; 36 int align;
37 37
38 align = (long)buf & 3; 38 align = (intptr_t)buf & 3;
39 state->buffer_start = (uint32_t *) (buf - align); 39 state->buffer_start = (uint32_t *) (buf - align);
40 state->bits_left = 0; 40 state->bits_left = 0;
41 state->current_word = 0; 41 state->current_word = 0;
diff --git a/lib/rbcodec/codecs/libtremor/codebook.c b/lib/rbcodec/codecs/libtremor/codebook.c
index 7087f0a323..f3ac5a2b7e 100644
--- a/lib/rbcodec/codecs/libtremor/codebook.c
+++ b/lib/rbcodec/codecs/libtremor/codebook.c
@@ -293,7 +293,7 @@ static long decode_packed_block(codebook *book, oggpack_buffer *b,
293 if(b->endbyte < b->storage - 8) { 293 if(b->endbyte < b->storage - 8) {
294 ogg_uint32_t *ptr; 294 ogg_uint32_t *ptr;
295 unsigned long bit, bitend; 295 unsigned long bit, bitend;
296 unsigned long adr; 296 intptr_t adr;
297 ogg_uint32_t cache = 0; 297 ogg_uint32_t cache = 0;
298 int cachesize = 0; 298 int cachesize = 0;
299 const unsigned int cachemask = (1<<book->dec_firsttablen)-1; 299 const unsigned int cachemask = (1<<book->dec_firsttablen)-1;
@@ -303,7 +303,7 @@ static long decode_packed_block(codebook *book, oggpack_buffer *b,
303 const ogg_uint32_t *book_codelist = book->codelist; 303 const ogg_uint32_t *book_codelist = book->codelist;
304 const char *book_dec_codelengths = book->dec_codelengths; 304 const char *book_dec_codelengths = book->dec_codelengths;
305 305
306 adr = (unsigned long)b->ptr; 306 adr = (intptr_t)b->ptr;
307 bit = (adr&3)*8+b->endbit; 307 bit = (adr&3)*8+b->endbit;
308 ptr = (ogg_uint32_t*)(adr&~3); 308 ptr = (ogg_uint32_t*)(adr&~3);
309 bitend = ((adr&3)+(b->storage-b->endbyte))*8; 309 bitend = ((adr&3)+(b->storage-b->endbyte))*8;
@@ -334,7 +334,7 @@ static long decode_packed_block(codebook *book, oggpack_buffer *b,
334 cache >>= l; 334 cache >>= l;
335 } 335 }
336 336
337 adr=(unsigned long)b->ptr; 337 adr=(intptr_t)b->ptr;
338 bit-=(adr&3)*8+cachesize; 338 bit-=(adr&3)*8+cachesize;
339 b->endbyte+=bit/8; 339 b->endbyte+=bit/8;
340 b->ptr+=bit/8; 340 b->ptr+=bit/8;