Lines Matching refs:vp7
44 #define VPX(vp7, f) (vp7 ? vp7_ ## f : vp8_ ## f) argument
46 #define VPX(vp7, f) vp7_ ## f argument
48 #define VPX(vp7, f) vp8_ ## f argument
861 static av_always_inline int read_mv_component(VP56RangeCoder *c, const uint8_t *p, int vp7) in read_mv_component() argument
870 for (i = (vp7 ? 7 : 9); i > 3; i--) in read_mv_component()
872 if (!(x & (vp7 ? 0xF0 : 0xFFF0)) || vp56_rac_get_prob(c, p[12])) in read_mv_component()
1339 const uint8_t scan[16], int vp7) in decode_block_coeffs_internal() argument
1354 if (vp7) in decode_block_coeffs_internal()
1458 const uint8_t scan[16], int vp7) in decode_block_coeffs() argument
1463 return vp7 ? vp7_decode_block_coeffs_internal(c, block, probs, i, in decode_block_coeffs()
1600 int check_tm_pred8x8_mode(int mode, int mb_x, int mb_y, int vp7) in check_tm_pred8x8_mode() argument
1603 return mb_y ? VERT_PRED8x8 : (vp7 ? DC_128_PRED8x8 : DC_129_PRED8x8); in check_tm_pred8x8_mode()
1609 int check_intra_pred8x8_mode_emuedge(int mode, int mb_x, int mb_y, int vp7) in check_intra_pred8x8_mode_emuedge() argument
1615 return !mb_y ? (vp7 ? DC_128_PRED8x8 : DC_127_PRED8x8) : mode; in check_intra_pred8x8_mode_emuedge()
1617 return !mb_x ? (vp7 ? DC_128_PRED8x8 : DC_129_PRED8x8) : mode; in check_intra_pred8x8_mode_emuedge()
1619 return check_tm_pred8x8_mode(mode, mb_x, mb_y, vp7); in check_intra_pred8x8_mode_emuedge()
1625 int check_tm_pred4x4_mode(int mode, int mb_x, int mb_y, int vp7) in check_tm_pred4x4_mode() argument
1628 return mb_y ? VERT_VP8_PRED : (vp7 ? DC_128_PRED : DC_129_PRED); in check_tm_pred4x4_mode()
1636 int *copy_buf, int vp7) in check_intra_pred4x4_mode_emuedge() argument
1647 return !mb_y ? (vp7 ? DC_128_PRED : DC_127_PRED) : mode; in check_intra_pred4x4_mode_emuedge()
1655 return !mb_x ? (vp7 ? DC_128_PRED : DC_129_PRED) : mode; in check_intra_pred4x4_mode_emuedge()
1657 return check_tm_pred4x4_mode(mode, mb_x, mb_y, vp7); in check_intra_pred4x4_mode_emuedge()
2857 s->vp7 = avctx->codec->id == AV_CODEC_ID_VP7; in vp78_decode_init()