20 #include "libavutil/attributes.h"
21 #include "libavutil/cpu.h"
29 int stride,
int h,
int ox,
int oy,
30 int dxx,
int dxy,
int dyx,
int dyy,
34 const int ix = ox >> (16 + shift);
35 const int iy = oy >> (16 + shift);
36 const int oxs = ox >> 4;
37 const int oys = oy >> 4;
38 const int dxxs = dxx >> 4;
39 const int dxys = dxy >> 4;
40 const int dyxs = dyx >> 4;
41 const int dyys = dyy >> 4;
42 const uint16_t r4[4] = {
r,
r,
r, r };
43 const uint16_t dxy4[4] = { dxys, dxys, dxys, dxys };
44 const uint16_t dyy4[4] = { dyys, dyys, dyys, dyys };
45 const uint64_t
shift2 = 2 * shift;
48 const int dxw = (dxx - (1 << (16 + shift))) * (w - 1);
49 const int dyh = (dyy - (1 << (16 + shift))) * (h - 1);
50 const int dxh = dxy * (h - 1);
51 const int dyw = dyx * (w - 1);
54 ((ox ^ (ox + dxw)) | (ox ^ (ox + dxh)) | (ox ^ (ox + dxw + dxh)) |
55 (oy ^ (oy + dyw)) | (oy ^ (oy + dyh)) | (oy ^ (oy + dyw + dyh))) >> (16 + shift) ||
57 (dxx | dxy | dyx | dyy) & 15 ||
58 (unsigned) ix >=
width - w ||
59 (
unsigned) iy >=
height - h) {
61 ff_gmc_c(dst, src,
stride, h, ox, oy, dxx, dxy, dyx, dyy,
70 "pxor %%mm7, %%mm7 \n\t"
71 "punpcklwd %%mm6, %%mm6 \n\t"
72 "punpcklwd %%mm6, %%mm6 \n\t"
75 for (x = 0; x < w; x += 4) {
76 uint16_t dx4[4] = { oxs - dxys + dxxs * (x + 0),
77 oxs - dxys + dxxs * (x + 1),
78 oxs - dxys + dxxs * (x + 2),
79 oxs - dxys + dxxs * (x + 3) };
80 uint16_t dy4[4] = { oys - dyys + dyxs * (x + 0),
81 oys - dyys + dyxs * (x + 1),
82 oys - dyys + dyxs * (x + 2),
83 oys - dyys + dyxs * (x + 3) };
85 for (y = 0; y < h; y++) {
89 "paddw %2, %%mm4 \n\t"
90 "paddw %3, %%mm5 \n\t"
93 "psrlw $12, %%mm4 \n\t"
94 "psrlw $12, %%mm5 \n\t"
95 :
"+m" (*dx4),
"+m" (*dy4)
96 :
"m" (*dxy4),
"m" (*dyy4));
99 "movq %%mm6, %%mm2 \n\t"
100 "movq %%mm6, %%mm1 \n\t"
101 "psubw %%mm4, %%mm2 \n\t"
102 "psubw %%mm5, %%mm1 \n\t"
103 "movq %%mm2, %%mm0 \n\t"
104 "movq %%mm4, %%mm3 \n\t"
105 "pmullw %%mm1, %%mm0 \n\t"
106 "pmullw %%mm5, %%mm3 \n\t"
107 "pmullw %%mm5, %%mm2 \n\t"
108 "pmullw %%mm4, %%mm1 \n\t"
110 "movd %4, %%mm5 \n\t"
111 "movd %3, %%mm4 \n\t"
112 "punpcklbw %%mm7, %%mm5 \n\t"
113 "punpcklbw %%mm7, %%mm4 \n\t"
114 "pmullw %%mm5, %%mm3 \n\t"
115 "pmullw %%mm4, %%mm2 \n\t"
117 "movd %2, %%mm5 \n\t"
118 "movd %1, %%mm4 \n\t"
119 "punpcklbw %%mm7, %%mm5 \n\t"
120 "punpcklbw %%mm7, %%mm4 \n\t"
121 "pmullw %%mm5, %%mm1 \n\t"
122 "pmullw %%mm4, %%mm0 \n\t"
123 "paddw %5, %%mm1 \n\t"
124 "paddw %%mm3, %%mm2 \n\t"
125 "paddw %%mm1, %%mm0 \n\t"
126 "paddw %%mm2, %%mm0 \n\t"
128 "psrlw %6, %%mm0 \n\t"
129 "packuswb %%mm0, %%mm0 \n\t"
130 "movd %%mm0, %0 \n\t"
132 :
"=m" (dst[x + y *
stride])
133 :
"m" (src[0]),
"m" (src[1]),
134 "m" (src[stride]),
"m" (src[stride + 1]),
void(* gmc)(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height)
global motion compensation.
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
av_cold void ff_mpegvideodsp_init_x86(MpegVideoDSPContext *c)
void ff_gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height)
#define INLINE_MMX(flags)
static const int shift2[6]