61 #define OFFSET(x) offsetof(MPTestContext, x)
62 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
93 for (i = 0; i < 8; i++) {
94 double s = i == 0 ? sqrt(0.125) : 0.5;
96 for (j = 0; j < 8; j++)
97 c[i*8+j] = s*cos((
M_PI/8.0)*i*(j+0.5));
106 for (i = 0; i < 8; i++) {
107 for (j = 0; j < 8; j++) {
110 for (k = 0; k < 8; k++)
111 sum +=
c[k*8+j] * src[8*i+k];
117 for (j = 0; j < 8; j++) {
118 for (i = 0; i < 8; i++) {
121 for (k = 0; k < 8; k++)
122 sum +=
c[k*8+i]*tmp[8*k+j];
124 dst[dst_linesize*i + j] = av_clip((
int)floor(sum+0.5), 0, 255);
133 for (y = 0; y < h; y++)
134 for (x = 0; x < w; x++)
135 dst[x + y*dst_linesize] = color;
142 memset(src, 0, 64*
sizeof(
int));
146 idct(dst, dst_linesize, src);
151 if (cbp&1)
draw_basis(dst[0] , dst_linesize[0], amp, 1, dc);
152 if (cbp&2)
draw_basis(dst[0]+8 , dst_linesize[0], amp, 1, dc);
153 if (cbp&4)
draw_basis(dst[0]+ 8*dst_linesize[0], dst_linesize[0], amp, 1, dc);
154 if (cbp&8)
draw_basis(dst[0]+8+8*dst_linesize[0], dst_linesize[0], amp, 1, dc);
155 if (cbp&16)
draw_basis(dst[1] , dst_linesize[1], amp, 1, dc);
156 if (cbp&32)
draw_basis(dst[2] , dst_linesize[2], amp, 1, dc);
161 const int step =
FFMAX(256/(w*h/256), 1);
164 for (y = 0; y < h; y += 16) {
165 for (x = 0; x < w; x += 16) {
166 draw_dc(dst + x + y*dst_linesize, dst_linesize, color, 8, 8);
176 for (y = 0; y < 8*16; y += 16) {
177 for (x = 0; x < 8*16; x += 16) {
178 draw_basis(dst + x + y*dst_linesize, dst_linesize, 4*(96+off), freq, 128*8);
188 for (y = 0; y < 16*16; y += 16) {
189 for (x = 0; x < 16*16; x += 16) {
190 draw_basis(dst + x + y*dst_linesize, dst_linesize, 4*amp, 1, 128*8);
200 for (y = 0; y < 16*8; y += 16) {
201 for (x = 0; x < 16*8; x += 16) {
203 dst1[0] = dst[0] + x*2 + y*2*dst_linesize[0];
204 dst1[1] = dst[1] + x + y* dst_linesize[1];
205 dst1[2] = dst[2] + x + y* dst_linesize[2];
207 draw_cbp(dst1, dst_linesize, cbp, (64+off)*4, 128*8);
217 for (y = 0; y < 16*16; y++) {
220 for (x = 0; x < 16*16; x++)
221 dst[x + y*dst_linesize] = x + off*8/(y/32+1);
229 for (y = off; y < 16*16; y += 16) {
230 for (x = off; x < 16*16; x += 16) {
231 draw_dc(dst + x + y*dst_linesize, dst_linesize, ((x+y)&16) ? color : -color, 16, 16);
241 for (y = 0; y < 16*16; y++) {
242 for (x = 0; x < 16*16; x++) {
243 double d = sqrt((x-8*16)*(x-8*16) + (y-8*16)*(y-8*16));
244 double r = d/20 - (int)(d/20);
246 dst[x + y*dst_linesize] = 255;
247 dst[x + y*dst_linesize+256] = 0;
249 dst[x + y*dst_linesize] = x;
250 dst[x + y*dst_linesize+256] = x;
313 picref->
pts = test->
pts++;
316 for (i = 0; i < h; i++)
318 for (i = 0; i < ch; i++) {
319 memset(picref->
data[1] + i*picref->
linesize[1], 128, cw);
320 memset(picref->
data[2] + i*picref->
linesize[2], 128, cw);
356 .priv_class = &mptestsrc_class,