Home | History | Annotate | Download | only in common

Lines Matching refs:sf

31   int (*scale_value_x)(int val, const struct scale_factors *sf);
32 int (*scale_value_y)(int val, const struct scale_factors *sf);
40 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
43 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w,
47 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w,
51 static INLINE int vp9_is_valid_scale(const struct scale_factors *sf) {
52 return sf->x_scale_fp != REF_INVALID_SCALE &&
53 sf->y_scale_fp != REF_INVALID_SCALE;
56 static INLINE int vp9_is_scaled(const struct scale_factors *sf) {
57 return vp9_is_valid_scale(sf) &&
58 (sf->x_scale_fp != REF_NO_SCALE || sf->y_scale_fp != REF_NO_SCALE);