Searched refs:BLOCK_INTRA (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | snow.h | 60 #define BLOCK_INTRA 1 ///< Intra block, inter otherwise macro 274 if((a->type&BLOCK_INTRA) && (b->type&BLOCK_INTRA)){ in same_block() 277 return !((a->mx - b->mx) | (a->my - b->my) | (a->ref - b->ref) | ((a->type ^ b->type)&BLOCK_INTRA)); in same_block()
|
H A D | snowenc.c | 267 set_blocks(s, level, x, y, pl, pcb, pcr, 0, 0, 0, BLOCK_INTRA); in encode_q_branch() 440 set_blocks(s, level, x, y, l, cb, cr, pmx, pmy, 0, BLOCK_INTRA); in encode_q_branch() 474 set_blocks(s, level, x, y, pl, pcb, pcr, 0, 0, 0, BLOCK_INTRA); in encode_q_branch2() 490 if(b->type & BLOCK_INTRA){ in encode_q_branch2() 498 set_blocks(s, level, x, y, b->color[0], b->color[1], b->color[2], pmx, pmy, 0, BLOCK_INTRA); in encode_q_branch2() 532 b->type|= BLOCK_INTRA; in get_dc() 592 if(b->type & BLOCK_INTRA){ in get_block_bits() 917 block->type |= BLOCK_INTRA; in check_block() 927 block->type &= ~BLOCK_INTRA; in check_block() 977 block->type &= ~BLOCK_INTRA; in check_4block_inter() [all...] |
H A D | snowdec.c | 168 set_blocks(s, level, x, y, null_block.color[0], null_block.color[1], null_block.color[2], null_block.mx, null_block.my, null_block.ref, BLOCK_INTRA); in decode_q_branch() 182 type= get_rac(&s->c, &s->block_state[1 + left->type + top->type]) ? BLOCK_INTRA : 0; in decode_q_branch()
|
H A D | snow.c | 323 if(block->type & BLOCK_INTRA){ in ff_snow_pred_block()
|
Completed in 8 milliseconds