|
|
@ -1807,10 +1807,10 @@ static int encode_q_branch(SnowContext *s, int level, int x, int y){ |
|
|
|
c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp); |
|
|
|
c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp); |
|
|
|
c->current_mv_penalty= c->mv_penalty[s->m.f_code=1] + MAX_MV; |
|
|
|
c->current_mv_penalty= c->mv_penalty[s->m.f_code=1] + MAX_MV; |
|
|
|
|
|
|
|
|
|
|
|
c->xmin = - x*block_w - 16+2; |
|
|
|
c->xmin = - x*block_w - 16+3; |
|
|
|
c->ymin = - y*block_w - 16+2; |
|
|
|
c->ymin = - y*block_w - 16+3; |
|
|
|
c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-2; |
|
|
|
c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3; |
|
|
|
c->ymax = - (y+1)*block_w + (h<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-2; |
|
|
|
c->ymax = - (y+1)*block_w + (h<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3; |
|
|
|
|
|
|
|
|
|
|
|
if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift); |
|
|
|
if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift); |
|
|
|
if(P_LEFT[1] > (c->ymax<<shift)) P_LEFT[1] = (c->ymax<<shift); |
|
|
|
if(P_LEFT[1] > (c->ymax<<shift)) P_LEFT[1] = (c->ymax<<shift); |
|
|
|