Searched refs:mvx (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | argo.c | 188 int mvx, mvy, a, b, c, mx, my; in decode_mad1() local 194 mvx = bytestream2_get_byte(gb) * bsize; in decode_mad1() 199 mx = mvx + (c & 0x7F) - 64; in decode_mad1() 205 if (mvx < 0 || mvx >= w) in decode_mad1() 214 dst = frame->data[0] + mvx + l * mvy; in decode_mad1() 217 bsize_w = FFMIN3(bsize_w, w - mvx, w - mx); in decode_mad1() 220 if (mvy >= my && (mvy != my || mvx >= mx)) { in decode_mad1() 401 int mvx, mvy, a, b, c, mx, my; in decode_mad1_24() local 407 mvx in decode_mad1_24() [all...] |
H A D | scpr.c | 440 int mvx, mvy; in decompress_p() local 442 ret = decode_value(s, s->mv_model[0], 512, 100, &mvx); in decompress_p() 447 mvx -= 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() 455 for (j = 0; j < sx2 - sx1 && (bx + sx1 + j) < avctx->width && (bx + mvx + sx1 + j) < avctx->width; j++) { 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 D | svq1dec.c | 432 int mvx = pmv[i]->x + (i & 1) * 16; in svq1_motion_inter_4v_block() local 436 mvx = av_clip(mvx, -2 * x, 2 * (width - x - 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 D | scpr3.c | 1020 int mvx = 0, mvy = 0; in decompress_p3() local 1145 s->mv_model3[0].dectab, &mvx); in decompress_p3() 1154 mvx -= 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() 1163 for (j = 0; j < sx2 - sx1 && (bx + sx1 + j) < avctx->width && (bx + mvx + sx1 + j) < avctx->width; j++) { 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 D | tcuTexLookupVerifier.cpp | 2214 const float mvx = deFloatAbs(dvdx); in computeLodBoundsFromDerivates() local 2221 // px = deFloatSqrt2(mux*mux + mvx*mvx + mwx*mwx); in computeLodBoundsFromDerivates() 2225 const float fxMin = de::max(de::max(mux, mvx), mwx); in computeLodBoundsFromDerivates() 2230 const float fxMax = sqrt2 * (mux + mvx + mwx); in computeLodBoundsFromDerivates()
|
Completed in 10 milliseconds