Home | History | Annotate | Download | only in decoder

Lines Matching refs:overlap

70 /* Inserts a new overlap area value to the list of overlaps of a block */
73 int overlap)
76 if (overlap <= 0)
78 /* Find and assign to the next empty overlap node in the list of overlaps.
85 overlaps[i].overlap = overlap;
91 /* Calculates the overlap area between two 4x4 squares, where the first
94 * properly handle squares which do not overlap.
108 /* Calculates the overlap area for all blocks in a macroblock at position
120 * overlapped by bmi and calculate and assign overlap for each of those
162 const int overlap = block_overlap(new_row, new_col,
167 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
216 /* Don't calculate overlap for MBs we don't overlap */
261 col_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.col;
262 row_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.row;
263 overlap_sum += overlaps[i].overlap;