Commit 58c2182d authored by Michael Niedermayer's avatar Michael Niedermayer

fixing alignment, 2nd try

Originally committed as revision 2940 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 96d8b5a6
......@@ -2996,8 +2996,8 @@ void ff_mpeg4_init_partitions(MpegEncContext *s)
uint8_t *start= pbBufPtr(&s->pb);
uint8_t *end= s->pb.buf_end;
int size= end - start;
int pb_size = (size/3)&(~1);
int tex_size= size - 2*pb_size;
int pb_size = (((int)start + size/3)&(~3)) - (int)start;
int tex_size= (size - 2*pb_size)&(~3);
set_put_bits_buffer_size(&s->pb, pb_size);
init_put_bits(&s->tex_pb, start + pb_size , tex_size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment