/external/libaom/libaom/av1/encoder/ |
D | mv_prec.h | 33 AV1_COMP *cpi, int allow_high_precision_mv, in av1_set_high_precision_mv() argument 36 const int copy_hp = cpi->common.features.allow_high_precision_mv = in av1_set_high_precision_mv() 37 allow_high_precision_mv && !cur_frame_force_integer_mv; in av1_set_high_precision_mv()
|
D | mv_prec.c | 68 const int use_hp = cpi->common.features.allow_high_precision_mv; in keep_one_comp_stat() 131 const int use_hp = cpi->common.features.allow_high_precision_mv; in keep_one_mv_stat()
|
/external/v4l2_codec2/accel/ |
D | vp9_compressed_header_parser.cc | 217 void Vp9CompressedHeaderParser::ReadMvProbs(bool allow_high_precision_mv, in ReadMvProbs() argument 234 if (allow_high_precision_mv) { in ReadMvProbs() 280 ReadMvProbs(fhdr->allow_high_precision_mv, &fhdr->frame_context); in Parse()
|
D | vp9_compressed_header_parser.h | 38 void ReadMvProbs(bool allow_high_precision_mv,
|
D | vp9_parser.h | 226 bool allow_high_precision_mv; member
|
D | vp9_uncompressed_header_parser.cc | 1047 fhdr->allow_high_precision_mv = reader_.ReadBool(); in Parse()
|
/external/libaom/libaom/av1/common/ |
D | mvref_common.c | 351 const int allow_high_precision_mv = cm->features.allow_high_precision_mv; in add_tpl_ref_mv() local 357 lower_mv_precision(&this_refmv.as_mv, allow_high_precision_mv, in add_tpl_ref_mv() 386 lower_mv_precision(&comp_refmv.as_mv, allow_high_precision_mv, in add_tpl_ref_mv() 799 const int allow_high_precision_mv = cm->features.allow_high_precision_mv; in av1_find_mv_refs() local 803 allow_high_precision_mv, bsize, mi_col, in av1_find_mv_refs() 811 allow_high_precision_mv, bsize, mi_col, in av1_find_mv_refs() 814 allow_high_precision_mv, bsize, mi_col, in av1_find_mv_refs()
|
D | av1_common_int.h | 320 bool allow_high_precision_mv; member
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rd.c | 371 cm->allow_high_precision_mv ? x->nmvcost_hp : x->nmvcost, in vp9_initialize_rd_consts() 372 &cm->fc->nmvc, cm->allow_high_precision_mv); in vp9_initialize_rd_consts() 391 cm->allow_high_precision_mv ? x->nmvcost_hp : x->nmvcost, in vp9_initialize_rd_consts() 392 &cm->fc->nmvc, cm->allow_high_precision_mv); in vp9_initialize_rd_consts()
|
D | vp9_mbgraph.c | 62 x, dst_mv, ref_mv, cpi->common.allow_high_precision_mv, x->errorperbit, in do_16x16_motion_iteration()
|
D | vp9_bitstream.c | 251 const int allow_hp = cm->allow_high_precision_mv; in pack_inter_mode_mvs() 1255 vpx_wb_write_bit(wb, cm->allow_high_precision_mv); in write_uncompressed_header() 1343 vp9_write_nmv_probs(cm, cm->allow_high_precision_mv, &header_bc, in write_compressed_header()
|
D | vp9_temporal_filter.c | 602 x, ref_mv, &best_ref_mv1, cpi->common.allow_high_precision_mv, in temporal_filter_find_matching_mb_c() 630 x, &blk_mvs[k], &best_ref_mv1, cpi->common.allow_high_precision_mv, in temporal_filter_find_matching_mb_c()
|
D | vp9_pickmode.c | 247 x, &tmp_mv->as_mv, &ref_mv, cpi->common.allow_high_precision_mv, in combined_motion_search() 1275 vp9_find_best_ref_mvs(xd, cm->allow_high_precision_mv, candidates, in find_predictors() 1602 cpi->common.allow_high_precision_mv, x->errorperbit, in search_new_mv() 2775 vp9_find_best_ref_mvs(xd, cm->allow_high_precision_mv, candidates, in vp9_pick_inter_mode_sub8x8() 2898 cpi->common.allow_high_precision_mv, x->errorperbit, in vp9_pick_inter_mode_sub8x8()
|
D | vp9_encoder.h | 1010 void vp9_set_high_precision_mv(VP9_COMP *cpi, int allow_high_precision_mv);
|
D | vp9_encoder.c | 796 void vp9_set_high_precision_mv(VP9_COMP *cpi, int allow_high_precision_mv) { in vp9_set_high_precision_mv() argument 798 cpi->common.allow_high_precision_mv = allow_high_precision_mv; in vp9_set_high_precision_mv() 799 if (cpi->common.allow_high_precision_mv) { in vp9_set_high_precision_mv() 5281 vp9_adapt_mv_probs(cm, cm->allow_high_precision_mv); 5984 x, mv, &best_ref_mv1, cpi->common.allow_high_precision_mv, x->errorperbit, 6037 x, mv, &best_ref_mv1, cpi->common.allow_high_precision_mv, x->errorperbit,
|
/external/mesa3d/src/gallium/frontends/va/ |
D | picture_vp9.c | 49 …t->desc.vp9.picture_parameter.pic_fields.allow_high_precision_mv = vp9->pic_fields.bits.allow_high… in vlVaHandlePictureParameterBufferVP9()
|
/external/libgav1/libgav1/src/utils/ |
D | types.h | 492 bool allow_high_precision_mv; member
|
/external/libgav1/libgav1/src/ |
D | motion_vector.cc | 41 if (frame_header.allow_high_precision_mv) return; in LowerMvPrecision() 89 if (frame_header.allow_high_precision_mv) { in SetupGlobalMv() 286 frame_header.allow_high_precision_mv ? 2 : frame_header.force_integer_mv; in AddTemporalReferenceMvCandidate()
|
D | obu_parser.cc | 1282 static_cast<int>(!frame_header_.allow_high_precision_mv); in ParseGlobalParamSyntax() 2089 frame_header_.allow_high_precision_mv = false; in ParseFrameParameters() 2092 frame_header_.allow_high_precision_mv = static_cast<bool>(scratch); in ParseFrameParameters()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_onyxc_int.h | 149 int allow_high_precision_mv; member
|
/external/libaom/libaom/av1/decoder/ |
D | decodemv.c | 1135 features->allow_high_precision_mv, in assign_mv() 1192 features->allow_high_precision_mv, in assign_mv() 1197 features->allow_high_precision_mv, in assign_mv() 1270 const int allow_hp = features->allow_high_precision_mv; in read_inter_block_mode_info()
|
/external/mesa3d/src/gallium/include/pipe/ |
D | p_video_state.h | 732 uint32_t allow_high_precision_mv:1; member
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodemv.c | 695 const int allow_hp = cm->allow_high_precision_mv; in read_inter_block_mode_info()
|
D | vp9_decodeframe.c | 2745 cm->allow_high_precision_mv = vpx_rb_read_bit(rb); in read_uncompressed_header() 2903 read_mv_probs(nmvc, cm->allow_high_precision_mv, &r); in read_compressed_header() 3047 vp9_adapt_mv_probs(cm, cm->allow_high_precision_mv); in vp9_decode_frame()
|
/external/libgav1/libgav1/src/tile/bitstream/ |
D | mode_info.cc | 502 frame_header_.allow_high_precision_mv in ReadMotionVectorComponent()
|