HomeSort by relevance Sort by last modified time
    Searched refs:mib_size (Results 1 - 13 of 13) sorted by null

  /external/libaom/libaom/av1/encoder/
aq_complexity.c 138 const int denom = cm->seq_params.mib_size * cm->seq_params.mib_size;
aq_cyclicrefresh.c 298 (cm->mi_cols + cm->seq_params.mib_size - 1) / cm->seq_params.mib_size;
300 (cm->mi_rows + cm->seq_params.mib_size - 1) / cm->seq_params.mib_size;
316 int mi_row = sb_row_index * cm->seq_params.mib_size;
317 int mi_col = sb_col_index * cm->seq_params.mib_size;
326 xmis = AOMMIN(cm->mi_cols - mi_col, cm->seq_params.mib_size);
327 ymis = AOMMIN(cm->mi_rows - mi_row, cm->seq_params.mib_size);
segmentation.c 192 mi_row += cm->seq_params.mib_size,
193 mi_ptr += cm->seq_params.mib_size * cm->mi_stride) {
196 mi_col += cm->seq_params.mib_size, mi += cm->seq_params.mib_size) {
ethread.c 35 const int mib_size = cm->seq_params.mib_size; local
43 mi_row += mib_size) {
47 mi_col < tile_info->mi_col_end; mi_col += mib_size) {
217 row_mt_info->current_mi_row += cm->seq_params.mib_size;
encodeframe.c 4345 const int mib_size = cm->seq_params.mib_size; local
4661 const int mib_size = cm->seq_params.mib_size; local
    [all...]
bitstream.c     [all...]
rdopt.c     [all...]
  /external/libaom/libaom/av1/common/
mvref_common.h 272 int mib_size, int mi_row, int mi_col) {
274 if (mi_row - mib_size < tile->mi_row_start) {
276 ref_dv->as_mv.col = -MI_SIZE * mib_size - INTRABC_DELAY_PIXELS;
278 ref_dv->as_mv.row = -MI_SIZE * mib_size;
tile_common.c 208 const int tile_w = tile_width_sb * cm->seq_params.mib_size;
216 const int tile_h = tile_height_sb * cm->seq_params.mib_size;
onyxc_int.h 232 int mib_size; // Size of the superblock in units of MI blocks member in struct:SequenceHeader
    [all...]
av1_loopfilter.c     [all...]
  /external/libaom/libaom/av1/decoder/
decodemv.c 48 if (!(mi_col & (cm->seq_params.mib_size - 1)) &&
49 !(mi_row & (cm->seq_params.mib_size - 1))) { // Top left?
71 const int b_col = mi_col & (cm->seq_params.mib_size - 1);
72 const int b_row = mi_row & (cm->seq_params.mib_size - 1);
103 const int b_col = mi_col & (cm->seq_params.mib_size - 1);
104 const int b_row = mi_row & (cm->seq_params.mib_size - 1);
691 av1_find_ref_dv(&dv_ref, &xd->tile, cm->seq_params.mib_size, mi_row,
    [all...]
decodeframe.c     [all...]

Completed in 308 milliseconds