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

  /external/libvpx/libvpx/vp9/encoder/
vp9_alt_ref_aq.c 25 const struct MATX_8U *segmentation_map) {
27 (void)segmentation_map;
vp9_alt_ref_aq.h 59 /*!\brief Upload segmentation_map to self object
62 * \param segmentation_map Segmentation map to upload
65 const struct MATX_8U *segmentation_map);
vp9_aq_complexity.c 61 memset(cpi->segmentation_map, DEFAULT_AQ2_SEG, cm->mi_rows * cm->mi_cols);
157 cpi->segmentation_map[mi_offset + y * cm->mi_cols + x] = segment;
vp9_aq_cyclicrefresh.c 207 cpi->segmentation_map[map_offset] = mi->segment_id;
252 unsigned char *const seg_map = cpi->segmentation_map;
330 unsigned char *const seg_map = cpi->segmentation_map;
506 unsigned char *const seg_map = cpi->segmentation_map;
vp9_mbgraph.c 327 // of bound access in segmentation_map
334 cpi->segmentation_map[mi_row * cm->mi_cols + mi_col] = 0;
336 cpi->segmentation_map[mi_row * cm->mi_cols + mi_col] = 1;
vp9_encoder.h 542 uint8_t *segmentation_map; member in struct:VP9_COMP
vp9_encoder.c 499 unsigned char *const seg_map = cpi->segmentation_map;
514 unsigned char *const seg_map = cpi->segmentation_map;
613 unsigned char *const seg_map_8x8 = cpi->segmentation_map;
757 vpx_free(cpi->segmentation_map);
758 cpi->segmentation_map = NULL;
925 memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
938 memset(cpi->segmentation_map, 0, cm->mi_rows * cm->mi_cols);
    [all...]
vp9_encodeframe.c 250 seg->update_map ? cpi->segmentation_map : cm->last_frame_seg_map;
    [all...]
  /external/libvpx/libvpx/test/
set_roi.cc 54 cpi.segmentation_map = reinterpret_cast<unsigned char *>(vpx_calloc(mbs, 1));
73 const int mapcompare = memcmp(roi_map, cpi.segmentation_map, mbs);
170 if (cpi.segmentation_map) vpx_free(cpi.segmentation_map);
  /external/libvpx/libvpx/vp8/encoder/
ethreading.c 161 if (cpi->segmentation_map[map_index + mb_col] <= 3) {
163 cpi->segmentation_map[map_index + mb_col];
230 cpi->segmentation_map[map_index + mb_col] = mbmi->segment_id;
encodeframe.c 442 if (cpi->segmentation_map[map_index + mb_col] <= 3) {
444 cpi->segmentation_map[map_index + mb_col];
509 cpi->segmentation_map[map_index + mb_col] =
    [all...]
onyx_int.h 474 unsigned char *segmentation_map; member in struct:VP8_COMP
onyx_if.c 423 vpx_free(cpi->segmentation_map);
424 cpi->segmentation_map = 0;
482 unsigned char *segmentation_map) {
484 memcpy(cpi->segmentation_map, segmentation_map,
513 unsigned char *seg_map = cpi->segmentation_map;
544 memset(cpi->segmentation_map, 0, mbs_in_frame);
    [all...]

Completed in 552 milliseconds