Lines Matching refs:PredictionMode

33   AngleDelta, IntraEdgeFilterParameters, IntraParam, PredictionMode,
92 pub pred_mode_luma: PredictionMode,
93 pub pred_mode_chroma: PredictionMode,
111 pred_mode_luma: PredictionMode::default(), in default()
112 pred_mode_chroma: PredictionMode::default(), in default()
689 luma_mode: PredictionMode, ref_frames: [RefType; 2], mvs: [MotionVector; 2], in rdo_tx_size_type() argument
775 luma_mode: PredictionMode, fi: &FrameInvariants<T>, bsize: BlockSize, in luma_chroma_mode_rdo() argument
780 mode_set_chroma: &[PredictionMode], luma_mode_is_intra: bool, argument
796 if (luma_mode == PredictionMode::NEWMV
797 || luma_mode == PredictionMode::NEW_NEWMV
798 || luma_mode == PredictionMode::NEW_NEARESTMV)
804 if (luma_mode == PredictionMode::NEW_NEWMV
805 || luma_mode == PredictionMode::NEAREST_NEWMV)
978 let chroma_mode = PredictionMode::UV_CFL_PRED; in rdo_mode_decision()
1119 let mut inter_mode_set = ArrayVec::<[(PredictionMode, usize); 20]>::new(); in inter_frame_rdo_mode_decision()
1153 inter_mode_set.push((PredictionMode::NEAR0MV, i)); in inter_frame_rdo_mode_decision()
1156 inter_mode_set.push((PredictionMode::GLOBALMV, i)); in inter_frame_rdo_mode_decision()
1161 inter_mode_set.push((PredictionMode::NEAR1MV, i)); in inter_frame_rdo_mode_decision()
1164 inter_mode_set.push((PredictionMode::NEAR2MV, i)); in inter_frame_rdo_mode_decision()
1177 inter_mode_set.push((PredictionMode::NEWMV, i)); in inter_frame_rdo_mode_decision()
1229 PredictionMode::NEWMV | PredictionMode::NEW_NEWMV => mvs_from_me[i], in inter_frame_rdo_mode_decision()
1230 PredictionMode::NEARESTMV | PredictionMode::NEAREST_NEARESTMV => { in inter_frame_rdo_mode_decision()
1237 PredictionMode::NEAR0MV | PredictionMode::NEAR_NEAR0MV => { in inter_frame_rdo_mode_decision()
1244 PredictionMode::NEAR1MV in inter_frame_rdo_mode_decision()
1245 | PredictionMode::NEAR2MV in inter_frame_rdo_mode_decision()
1246 | PredictionMode::NEAR_NEAR1MV in inter_frame_rdo_mode_decision()
1247 | PredictionMode::NEAR_NEAR2MV => [ in inter_frame_rdo_mode_decision()
1251 PredictionMode::NEAREST_NEWMV => { in inter_frame_rdo_mode_decision()
1254 PredictionMode::NEW_NEARESTMV => { in inter_frame_rdo_mode_decision()
1257 PredictionMode::GLOBALMV | PredictionMode::GLOBAL_GLOBALMV => { in inter_frame_rdo_mode_decision()
1463 if is_chroma_block && luma_mode != PredictionMode::DC_PRED { in intra_frame_rdo_mode_decision()
1464 mode_set_chroma.push(PredictionMode::DC_PRED); in intra_frame_rdo_mode_decision()
1575 Some(PredictionMode::UV_CFL_PRED), in rdo_cfl_alpha()
1582 PredictionMode::UV_CFL_PRED.predict_intra( in rdo_cfl_alpha()
1637 mode: PredictionMode, ref_frames: [RefType; 2], mvs: [MotionVector; 2], in rdo_tx_type_decision() argument