Lines Matching defs:is_vp7

192 int update_dimensions(VP8Context *s, int width, int height, int is_vp7)
209 !s->actually_webp && !is_vp7) {
219 s->mb_layout = is_vp7 || avctx->active_thread_type == FF_THREAD_SLICE &&
904 const uint8_t *get_submv_prob(uint32_t left, uint32_t top, int is_vp7)
906 if (is_vp7)
922 int layout, int is_vp7)
969 submv_prob = get_submv_prob(left, above, is_vp7);
975 read_mv_component(c, s->prob->mvc[0], is_vp7);
977 read_mv_component(c, s->prob->mvc[1], is_vp7);
1250 uint8_t *segment, uint8_t *ref, int layout, int is_vp7)
1257 if (is_vp7) {
1287 const uint32_t modes = (is_vp7 ? vp7_pred4x4_mode
1303 (!is_vp7 && vp56_rac_get_prob(c, s->prob->golden)) ? VP56_FRAME_GOLDEN2 /* altref */
1310 if (is_vp7)
1476 int is_vp7)
1483 if (mb->mode != MODE_I4x4 && (is_vp7 || mb->mode != VP8_MVMODE_SPLIT)) {
1489 ff_zigzag_scan, is_vp7);
1492 if (is_vp7 && mb->mode > MODE_I4x4) {
1517 s->prob[0].scan, is_vp7);
1535 s->prob[0].scan, is_vp7);
1676 VP8Macroblock *mb, int mb_x, int mb_y, int is_vp7)
1689 mode = check_intra_pred8x8_mode_emuedge(mb->mode, mb_x, mb_y, is_vp7);
1694 const uint8_t lo = is_vp7 ? 128 : 127;
1695 const uint8_t hi = is_vp7 ? 128 : 129;
1726 mb_y + y, &copy, is_vp7);
1779 mb_x, mb_y, is_vp7);
2129 VP8FilterStrength *f, int is_vp7)
2156 f->inner_filter = is_vp7 || !mb->skip || mb->mode == MODE_I4x4 ||
2162 int mb_x, int mb_y, int is_vp7)
2184 if (is_vp7) {
2219 H_LOOP_FILTER_16Y_INNER(!is_vp7)
2244 H_LOOP_FILTER_16Y_INNER(is_vp7)
2283 VP8Frame *prev_frame, int is_vp7)
2309 prev_frame->seg_map->data + mb_xy : NULL, 1, is_vp7);
2370 int jobnr, int threadnr, int is_vp7)
2410 if (!is_vp7 || mb_y == 0)
2423 mb_x + (is_vp7 ? 2 : 1),
2424 mb_y - (is_vp7 ? 2 : 1));
2427 mb_x + (is_vp7 ? 2 : 1) + s->mb_width + 3,
2428 mb_y - (is_vp7 ? 2 : 1));
2440 prev_frame->seg_map->data + mb_xy : NULL, 0, is_vp7);
2445 decode_mb_coeffs(s, td, c, mb, s->top_nnz[mb_x], td->left_nnz, is_vp7);
2448 intra_predict(s, td, dst, mb, mb_x, mb_y, is_vp7);
2469 filter_level_for_mb(s, mb, &td->filter_strength[mb_x], is_vp7);
2510 int jobnr, int threadnr, int is_vp7)
2559 filter_mb(s, dst, f, mb_x, mb_y, is_vp7);
2582 int threadnr, int is_vp7)
2629 const AVPacket *avpkt, int is_vp7)
2636 if (is_vp7)
2646 } else if (!is_vp7 && s->pix_fmt == AV_PIX_FMT_NONE) {
2763 if (is_vp7)
2785 if (is_vp7)
2852 int vp78_decode_init(AVCodecContext *avctx, int is_vp7)
2865 if (CONFIG_VP7_DECODER && is_vp7) {
2870 } else if (CONFIG_VP8_DECODER && !is_vp7) {