:%s/check_block_2p/check_block_inter/g

Originally committed as revision 4794 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
François Revol 2005-12-30 22:41:32 +00:00
parent 52137f2f43
commit 003cd80df9
1 changed files with 12 additions and 12 deletions

View File

@ -3137,7 +3137,7 @@ static always_inline int check_block(SnowContext *s, int mb_x, int mb_y, int p[3
}
/* special case for int[2] args we discard afterward, fixes compilation prob with gcc 2.95 */
static always_inline int check_block_2p(SnowContext *s, int mb_x, int mb_y, int p0, int p1, int intra, int *best_rd){
static always_inline int check_block_inter(SnowContext *s, int mb_x, int mb_y, int p0, int p1, int intra, int *best_rd){
int p[2] = {p0, p1};
return check_block(s, mb_x, mb_y, p, intra, best_rd);
}
@ -3179,12 +3179,12 @@ static void iterative_me(SnowContext *s){
s->me_cache_generation += 1<<22;
// get previous score (cant be cached due to OBMC)
check_block_2p(s, mb_x, mb_y, block->mx, block->my, 0, &best_rd);
check_block_2p(s, mb_x, mb_y, 0, 0, 0, &best_rd);
check_block_2p(s, mb_x, mb_y, tb->mx, tb->my, 0, &best_rd);
check_block_2p(s, mb_x, mb_y, lb->mx, lb->my, 0, &best_rd);
check_block_2p(s, mb_x, mb_y, rb->mx, rb->my, 0, &best_rd);
check_block_2p(s, mb_x, mb_y, bb->mx, bb->my, 0, &best_rd);
check_block_inter(s, mb_x, mb_y, block->mx, block->my, 0, &best_rd);
check_block_inter(s, mb_x, mb_y, 0, 0, 0, &best_rd);
check_block_inter(s, mb_x, mb_y, tb->mx, tb->my, 0, &best_rd);
check_block_inter(s, mb_x, mb_y, lb->mx, lb->my, 0, &best_rd);
check_block_inter(s, mb_x, mb_y, rb->mx, rb->my, 0, &best_rd);
check_block_inter(s, mb_x, mb_y, bb->mx, bb->my, 0, &best_rd);
/* fullpel ME */
//FIXME avoid subpel interpol / round to nearest integer
@ -3192,10 +3192,10 @@ static void iterative_me(SnowContext *s){
dia_change=0;
for(i=0; i<FFMAX(s->avctx->dia_size, 1); i++){
for(j=0; j<i; j++){
dia_change |= check_block_2p(s, mb_x, mb_y, block->mx+4*(i-j), block->my+(4*j), 0, &best_rd);
dia_change |= check_block_2p(s, mb_x, mb_y, block->mx-4*(i-j), block->my-(4*j), 0, &best_rd);
dia_change |= check_block_2p(s, mb_x, mb_y, block->mx+4*(i-j), block->my-(4*j), 0, &best_rd);
dia_change |= check_block_2p(s, mb_x, mb_y, block->mx-4*(i-j), block->my+(4*j), 0, &best_rd);
dia_change |= check_block_inter(s, mb_x, mb_y, block->mx+4*(i-j), block->my+(4*j), 0, &best_rd);
dia_change |= check_block_inter(s, mb_x, mb_y, block->mx-4*(i-j), block->my-(4*j), 0, &best_rd);
dia_change |= check_block_inter(s, mb_x, mb_y, block->mx+4*(i-j), block->my-(4*j), 0, &best_rd);
dia_change |= check_block_inter(s, mb_x, mb_y, block->mx-4*(i-j), block->my+(4*j), 0, &best_rd);
}
}
}while(dia_change);
@ -3204,7 +3204,7 @@ static void iterative_me(SnowContext *s){
static const int square[8][2]= {{+1, 0},{-1, 0},{ 0,+1},{ 0,-1},{+1,+1},{-1,-1},{+1,-1},{-1,+1},};
dia_change=0;
for(i=0; i<8; i++)
dia_change |= check_block_2p(s, mb_x, mb_y, block->mx+square[i][0], block->my+square[i][1], 0, &best_rd);
dia_change |= check_block_inter(s, mb_x, mb_y, block->mx+square[i][0], block->my+square[i][1], 0, &best_rd);
}while(dia_change);
//FIXME or try the standard 2 pass qpel or similar
#if 1