Searched refs:mvx (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dsvq1dec.c448 int mvx= pmv[i]->x + (i&1)*16; local
454 if(x + (mvx >> 1)<0)
455 mvx= 0;
457 src = &previous[(x + (mvx >> 1)) + (y + (mvy >> 1))*pitch];
460 s->dsp.put_pixels_tab[1][((mvy & 1) << 1) | (mvx & 1)](dst,src,pitch,8);
H A Dvc1dec.c715 static av_always_inline int get_chroma_mv(int *mvx, int *mvy, int *a, int flag, int *tx, int *ty) argument
725 *tx = median4(mvx[0], mvx[1], mvx[2], mvx[3]);
731 *tx = mid_pred(mvx[1], mvx[2], mvx[3]);
735 *tx = mid_pred(mvx[0], mvx[
777 int mvx[4], mvy[4], intra[4], mv_f[4]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dsvq1dec.c419 int mvx = pmv[i]->x + (i & 1) * 16; local
423 mvx = av_clip(mvx, -2 * x, 2 * (width - x - 8));
426 src = &previous[(x + (mvx >> 1)) + (y + (mvy >> 1)) * pitch];
429 hdsp->put_pixels_tab[1][((mvy & 1) << 1) | (mvx & 1)](dst, src, pitch, 8);
H A Dvc1dec.c742 static av_always_inline int get_chroma_mv(int *mvx, int *mvy, int *a, int flag, int *tx, int *ty) argument
752 *tx = median4(mvx[0], mvx[1], mvx[2], mvx[3]);
758 *tx = mid_pred(mvx[1], mvx[2], mvx[3]);
762 *tx = mid_pred(mvx[0], mvx[
804 int mvx[4], mvy[4], intra[4], mv_f[4]; local
[all...]

Completed in 209 milliseconds