# HG changeset patch # User michael # Date 1156592253 0 # Node ID 25ceb2cc950d73a5c57d8ad792d619e756f3b483 # Parent 40f753fc46a4f9f4d147b0946daee5bbd71900fe make A32 reader align its ptr during init no matter what missaligned mess is given to it diff -r 40f753fc46a4 -r 25ceb2cc950d bitstream.h --- a/bitstream.h Sat Aug 26 11:26:54 2006 +0000 +++ b/bitstream.h Sat Aug 26 11:37:33 2006 +0000 @@ -719,20 +719,16 @@ s->bit_count = 16; s->cache = 0; } -#elif defined A32_BITSTREAM_READER - s->buffer_ptr = (uint32_t*)buffer; - s->bit_count = 32; - s->cache0 = 0; - s->cache1 = 0; -#endif { OPEN_READER(re, s) UPDATE_CACHE(re, s) UPDATE_CACHE(re, s) CLOSE_READER(re, s) } -#ifdef A32_BITSTREAM_READER - s->cache1 = 0; +#elif defined A32_BITSTREAM_READER + s->buffer_ptr = (uint32_t*)((intptr_t)buffer&(~3)); + s->bit_count = 32 + 8*((intptr_t)buffer&3); + skip_bits_long(s, 0); #endif }