Home
last modified time | relevance | path

Searched refs:mvx (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dargo.c188 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 = bytestream2_get_byte(gb) * bsize; in decode_mad1_24()
412 mx = mvx + (c & 0x7F) - 64; in decode_mad1_24()
[all …]
Dscpr.c439 int mvx, mvy; in decompress_p() local
441 ret = decode_value(s, s->mv_model[0], 512, 100, &mvx); in decompress_p()
446 mvx -= 256; in decompress_p()
449 if (by + mvy + sy1 < 0 || bx + mvx + sx1 < 0 || in decompress_p()
450 by + mvy + sy1 >= avctx->height || bx + mvx + sx1 >= avctx->width) in decompress_p()
454 …for (j = 0; j < sx2 - sx1 && (bx + sx1 + j) < avctx->width && (bx + mvx + sx1 + j) < avctx->width;… in decompress_p()
455 … i + sy1) * linesize + bx + sx1 + j] = prev[(by + mvy + sy1 + i) * plinesize + bx + sx1 + mvx + j]; in decompress_p()
Dsvq1dec.c431 int mvx = pmv[i]->x + (i & 1) * 16; in svq1_motion_inter_4v_block() local
435 mvx = av_clip(mvx, -2 * x, 2 * (width - x - 8)); in svq1_motion_inter_4v_block()
438 src = &previous[(x + (mvx >> 1)) + (y + (mvy >> 1)) * pitch]; in svq1_motion_inter_4v_block()
441 hdsp->put_pixels_tab[1][((mvy & 1) << 1) | (mvx & 1)](dst, src, pitch, 8); in svq1_motion_inter_4v_block()
Dscpr3.c1020 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;… in decompress_p3()
1164 … i + sy1) * linesize + bx + sx1 + j] = prev[(by + mvy + sy1 + i) * plinesize + bx + sx1 + mvx + j]; in decompress_p3()
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtph261pay.c96 gint mvx; member
632 pmv[0] = prev->mvx; in parse_mb()
644 mb->mvx = mv[0]; in parse_mb()
647 mb->mvx = 0; in parse_mb()
838 header->hmvd1 = last->mvx >> 3; in gst_rtp_h261_pay_fragment_push()
839 header->hmvd2 = last->mvx & 7; in gst_rtp_h261_pay_fragment_push()
/third_party/rust/crates/aho-corasick/bench/data/
Drandom10x.txt210 mvx
723 mvx
1236 mvx
1749 mvx
2262 mvx
2775 mvx
3288 mvx
3801 mvx
4314 mvx
4827 mvx
Drandom.txt210 mvx
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
DnvEncodeAPI.h1153 int16_t mvx; /**< the x component of MV in qpel units */ member
1313 …int32_t mvx : 12; /**< [in]: Specifies the x component of intege… member
/third_party/vk-gl-cts/framework/common/
DtcuTexLookupVerifier.cpp2214 const float mvx = deFloatAbs(dvdx); in computeLodBoundsFromDerivates() local
2225 const float fxMin = de::max(de::max(mux, mvx), mwx); in computeLodBoundsFromDerivates()
2230 const float fxMax = sqrt2 * (mux + mvx + mwx); in computeLodBoundsFromDerivates()