Lines Matching defs:ref_mb
474 IVIMbInfo *mb, *ref_mb;
478 ref_mb = tile->ref_mbs;
524 if (band->inherit_mv && ref_mb) {
527 mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
528 mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
530 mb->mv_x = ref_mb->mv_x;
531 mb->mv_y = ref_mb->mv_y;
537 if (!ref_mb) {
538 av_log(avctx, AV_LOG_ERROR, "ref_mb unavailable\n");
541 mb->type = ref_mb->type;
553 if (ref_mb) mb->q_delta = ref_mb->q_delta;
565 if (ref_mb)
568 mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
569 mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
571 mb->mv_x = ref_mb->mv_x;
572 mb->mv_y = ref_mb->mv_y;
616 if (ref_mb)
617 ref_mb++;