mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Alignment fixes, caused problems on SPARC.
patch by "David S. Miller" davem <<at>> davemloft <<dot>> net Originally committed as revision 5130 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
267b0e5754
commit
bf4665eeec
@ -4296,8 +4296,8 @@ static int decode_slice_header(H264Context *h){
|
||||
s->mb_width= h->sps.mb_width;
|
||||
s->mb_height= h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
|
||||
|
||||
h->b_stride= s->mb_width*4 + 1;
|
||||
h->b8_stride= s->mb_width*2 + 1;
|
||||
h->b_stride= s->mb_width*4;
|
||||
h->b8_stride= s->mb_width*2;
|
||||
|
||||
s->width = 16*s->mb_width - 2*(h->sps.crop_left + h->sps.crop_right );
|
||||
if(h->sps.frame_mbs_only_flag)
|
||||
|
Loading…
Reference in New Issue
Block a user