Mercurial > libavcodec.hg
changeset 1885:6588eda7d107 libavcodec
alignment fix
author | michael |
---|---|
date | Sun, 14 Mar 2004 17:55:50 +0000 |
parents | de6a0d995ca7 |
children | fbcf02596520 |
files | mpegvideo.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mpegvideo.c Sun Mar 14 17:33:48 2004 +0000 +++ b/mpegvideo.c Sun Mar 14 17:55:50 2004 +0000 @@ -340,15 +340,15 @@ pic->mb_type= pic->mb_type_base + s->mb_stride+1; if(s->out_format == FMT_H264){ for(i=0; i<2; i++){ - CHECKED_ALLOCZ(pic->motion_val_base[i], 2 * (b4_array_size+1) * sizeof(int16_t)) - pic->motion_val[i]= pic->motion_val_base[i]+1; + CHECKED_ALLOCZ(pic->motion_val_base[i], 2 * (b4_array_size+2) * sizeof(int16_t)) + pic->motion_val[i]= pic->motion_val_base[i]+2; CHECKED_ALLOCZ(pic->ref_index[i] , b8_array_size * sizeof(uint8_t)) } pic->motion_subsample_log2= 2; }else if(s->out_format == FMT_H263 || s->encoding || (s->avctx->debug&FF_DEBUG_MV) || (s->avctx->debug_mv)){ for(i=0; i<2; i++){ - CHECKED_ALLOCZ(pic->motion_val_base[i], 2 * (b8_array_size+1) * sizeof(int16_t)*2) //FIXME - pic->motion_val[i]= pic->motion_val_base[i]+1; + CHECKED_ALLOCZ(pic->motion_val_base[i], 2 * (b8_array_size+2) * sizeof(int16_t)*2) //FIXME + pic->motion_val[i]= pic->motion_val_base[i]+2; } pic->motion_subsample_log2= 3; }