Home
last modified time | relevance | path

Searched refs:mvy (Results 1 - 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dargo.c188 int mvx, mvy, a, b, c, mx, my; in decode_mad1() local
195 mvy = bytestream2_get_byte(gb) * bsize; in decode_mad1()
200 my = mvy + (c >> 7) - 64; in decode_mad1()
202 if (mvy < 0 || mvy >= h) in decode_mad1()
214 dst = frame->data[0] + mvx + l * mvy; in decode_mad1()
218 bsize_h = FFMIN3(bsize_h, h - mvy, h - my); in decode_mad1()
220 if (mvy >= my && (mvy != my || mvx >= mx)) { in decode_mad1()
401 int mvx, mvy, in decode_mad1_24() local
[all...]
H A Dscpr.c440 int mvx, mvy; in decompress_p() local
443 ret |= decode_value(s, s->mv_model[1], 512, 100, &mvy); in decompress_p()
448 mvy -= 256; in decompress_p()
450 if (by + mvy + sy1 < 0 || bx + mvx + sx1 < 0 || in decompress_p()
451 by + mvy + sy1 >= avctx->height || bx + mvx + sx1 >= avctx->width) in decompress_p()
454 for (i = 0; i < sy2 - sy1 && (by + sy1 + i) < avctx->height && (by + mvy + sy1 + i) < avctx->height; i++) { in decompress_p()
456 dst[(by + i + sy1) * linesize + bx + sx1 + j] = prev[(by + mvy + sy1 + i) * plinesize + bx + sx1 + mvx + j]; in decompress_p()
H A Dsvq1dec.c433 int mvy = pmv[i]->y + (i >> 1) * 16; in svq1_motion_inter_4v_block() local
437 mvy = av_clip(mvy, -2 * y, 2 * (height - y - 8)); in svq1_motion_inter_4v_block()
439 src = &previous[(x + (mvx >> 1)) + (y + (mvy >> 1)) * pitch]; in svq1_motion_inter_4v_block()
442 hdsp->put_pixels_tab[1][((mvy & 1) << 1) | (mvx & 1)](dst, src, pitch, 8); in svq1_motion_inter_4v_block()
H A Dscpr3.c1020 int mvx = 0, mvy = 0; in decompress_p3() local
1150 s->mv_model3[1].dectab, &mvy); in decompress_p3()
1155 mvy -= 256; in decompress_p3()
1158 if (by + mvy + sy1 < 0 || bx + mvx + sx1 < 0 || in decompress_p3()
1159 by + mvy + sy1 >= avctx->height || bx + mvx + sx1 >= avctx->width) in decompress_p3()
1162 for (i = 0; i < sy2 - sy1 && (by + sy1 + i) < avctx->height && (by + mvy + sy1 + i) < avctx->height; i++) { in decompress_p3()
1164 dst[(by + i + sy1) * linesize + bx + sx1 + j] = prev[(by + mvy + sy1 + i) * plinesize + bx + sx1 + mvx + j]; in decompress_p3()
/third_party/vk-gl-cts/framework/common/
H A DtcuTexLookupVerifier.cpp2217 const float mvy = deFloatAbs(dvdy); in computeLodBoundsFromDerivates() local
2222 // py = deFloatSqrt2(muy*muy + mvy*mvy + mwy*mwy); in computeLodBoundsFromDerivates()
2226 const float fyMin = de::max(de::max(muy, mvy), mwy); in computeLodBoundsFromDerivates()
2231 const float fyMax = sqrt2 * (muy + mvy + mwy); in computeLodBoundsFromDerivates()

Completed in 11 milliseconds