59 memset(score, 0,
sizeof(*score)*score_stride*((p->
height + Q2_STEP-1)/Q2_STEP));
60 for(y=0; y<p->
height; y++){
61 for(x=0; x<p->
width; x++){
62 int sx= (x-xo + step/2) / step / Q2_STEP;
63 int sy= (y-yo + step/2) / step / Q2_STEP;
64 int v= r0[x + y*p->
width] - r1[x + y*p->
width];
65 assert(sx>=0 && sy>=0 && sx < score_stride);
67 score[sx + sy*score_stride] += v*v;
68 assert(score[sx + sy*score_stride] >= 0);
74 int level, orientation;
77 for(orientation=level ? 1 : 0; orientation<4; orientation++){
87 int level, orientation, ys, xs, x, y,
pass;
90 const int score_stride= (width + 10)/Q2_STEP;
91 int best_score[(width + 10)/Q2_STEP * (height + 10)/Q2_STEP];
92 int score[(width + 10)/Q2_STEP * (height + 10)/Q2_STEP];
101 for(orientation=level ? 1 : 0; orientation<4; orientation++){
105 assert(src == b->
buf);
110 for(pass=0; pass<1; pass++){
114 for(orientation=level ? 1 : 0; orientation<4; orientation++){
119 for(ys= 0; ys<Q2_STEP; ys++){
120 for(xs= 0; xs<Q2_STEP; xs++){
121 memcpy(idwt2_buffer, best_dequant, height * stride *
sizeof(
IDWTELEM));
122 dequantize_all(s, p, idwt2_buffer, width, height);
124 find_sse(s, p, best_score, score_stride, idwt2_buffer, s->
spatial_idwt_buffer, level, orientation);
125 memcpy(idwt2_buffer, best_dequant, height * stride *
sizeof(
IDWTELEM));
126 for(y=ys; y<b->
height; y+= Q2_STEP){
127 for(x=xs; x<b->
width; x+= Q2_STEP){
133 dequantize_all(s, p, idwt2_buffer, width, height);
135 find_sse(s, p, score, score_stride, idwt2_buffer, s->
spatial_idwt_buffer, level, orientation);
136 for(y=ys; y<b->
height; y+= Q2_STEP){
137 for(x=xs; x<b->
width; x+= Q2_STEP){
138 int score_idx= x/Q2_STEP + (y/Q2_STEP)*score_stride;
139 if(score[score_idx] <= best_score[score_idx] + threshold){
140 best_score[score_idx]= score[score_idx];
141 if(best_dst[x + y*b->
stride]<0) best_dst[x + y*b->
stride]++;
142 if(best_dst[x + y*b->
stride]>0) best_dst[x + y*b->
stride]--;
160 int plane_index, ret;
163 av_log(avctx,
AV_LOG_ERROR,
"This codec is under development, files encoded with it may not be decodable with future versions!!!\n"
164 "Use vstrict=-2 / -strict -2 to use it anyway.\n");
180 for(plane_index=0; plane_index<3; plane_index++){
263 for (i = 0; i < h; i++) {
264 for (j = 0; j < w; j++) {
268 pix += line_size - w;
280 for (i = 0; i < w; i++) {
281 for (j = 0; j < w; j ++) {
285 pix += line_size - w;
293 #define P_TOPRIGHT P[3]
294 #define P_MEDIAN P[4]
296 #define FLAG_QPEL 1 //must be 1
306 int score, score2, iscore, i_len, p_len, block_s, sum, base_bits;
310 const int index= (x + y*w) << rem_depth;
312 int trx= (x+1)<<rem_depth;
313 int try= (y+1)<<rem_depth;
319 const BlockNode *tr = y && trx<w && ((x&1)==0 || level==0) ? &s->
block[index-w+(1<<rem_depth)] : tl;
320 int pl = left->
color[0];
321 int pcb= left->
color[1];
322 int pcr= left->
color[2];
332 int16_t last_mv[3][2];
334 const int shift= 1+qpel;
340 int ref, best_ref, ref_score, ref_mx, ref_my;
344 set_blocks(s, level, x, y, pl, pcb, pcr, 0, 0, 0,
BLOCK_INTRA);
359 last_mv[1][0]= right->
mx;
360 last_mv[1][1]= right->
my;
361 last_mv[2][0]= bottom->
mx;
362 last_mv[2][1]= bottom->
my;
369 assert(c-> stride == stride);
377 c->
xmin = - x*block_w - 16+3;
378 c->
ymin = - y*block_w - 16+3;
409 assert(ref_mx >= c->
xmin);
410 assert(ref_mx <= c->xmax);
411 assert(ref_my >= c->
ymin);
412 assert(ref_my <= c->ymax);
422 if(score > ref_score){
435 pc.bytestream= p_buffer;
439 put_rac(&pc, &p_state[4 + s_context], 1);
442 put_symbol(&pc, &p_state[128 + 1024 + 32*ref_context], best_ref, 0);
443 pred_mv(s, &pmx, &pmy, best_ref, left, top, tr);
444 put_symbol(&pc, &p_state[128 + 32*(mx_context + 16*!!best_ref)], mx - pmx, 1);
445 put_symbol(&pc, &p_state[128 + 32*(my_context + 16*!!best_ref)], my - pmy, 1);
446 p_len= pc.bytestream - pc.bytestream_start;
449 block_s= block_w*block_w;
450 sum =
pix_sum(current_data[0], stride, block_w, block_w);
451 l= (sum + block_s/2)/block_s;
452 iscore =
pix_norm1(current_data[0], stride, block_w) - 2*l*sum + l*l*block_s;
456 cb= (sum + block_s/2)/block_s;
459 cr= (sum + block_s/2)/block_s;
464 ic.bytestream= i_buffer;
467 put_rac(&ic, &i_state[4 + s_context], 1);
472 i_len= ic.bytestream - ic.bytestream_start;
476 assert(iscore < 255*255*256 + s->lambda2*10);
478 assert(l>=0 && l<=255);
479 assert(pl>=0 && pl<=255);
482 int varc= iscore >> 8;
483 int vard= score >> 8;
484 if (vard <= 64 || vard < varc)
498 if(score2 < score && score2 < iscore)
503 pred_mv(s, &pmx, &pmy, 0, left, top, tr);
504 memcpy(pbbak, i_buffer, i_len);
508 set_blocks(s, level, x, y, l, cb, cr, pmx, pmy, 0,
BLOCK_INTRA);
512 memcpy(pbbak, p_buffer, p_len);
516 set_blocks(s, level, x, y, pl, pcb, pcr, mx, my, best_ref, 0);
525 const int index= (x + y*w) << rem_depth;
526 int trx= (x+1)<<rem_depth;
531 const BlockNode *tr = y && trx<w && ((x&1)==0 || level==0) ? &s->
block[index-w+(1<<rem_depth)] : tl;
532 int pl = left->
color[0];
533 int pcb= left->
color[1];
534 int pcr= left->
color[2];
542 set_blocks(s, level, x, y, pl, pcb, pcr, 0, 0, 0,
BLOCK_INTRA);
559 pred_mv(s, &pmx, &pmy, 0, left, top, tr);
564 set_blocks(s, level, x, y, b->
color[0], b->
color[1], b->
color[2], pmx, pmy, 0,
BLOCK_INTRA);
566 pred_mv(s, &pmx, &pmy, b->
ref, left, top, tr);
572 set_blocks(s, level, x, y, pl, pcb, pcr, b->
mx, b->
my, b->
ref, 0);
580 const int block_w = plane_index ? block_size>>s->
chroma_h_shift : block_size;
581 const int block_h = plane_index ? block_size>>s->
chroma_v_shift : block_size;
583 const int obmc_stride= plane_index ? (2*block_size)>>s->
chroma_h_shift : 2*block_size;
585 uint8_t *src= s-> input_picture.data[plane_index];
588 const int w= p->
width;
590 int index= mb_x + mb_y*b_stride;
599 b->
color[plane_index]= 0;
600 memset(dst, 0, obmc_stride*obmc_stride*
sizeof(
IDWTELEM));
603 int mb_x2= mb_x + (i &1) - 1;
604 int mb_y2= mb_y + (i>>1) - 1;
605 int x= block_w*mb_x2 + block_w/2;
606 int y= block_h*mb_y2 + block_h/2;
609 x, y, block_w, block_h, w, h, obmc_stride, ref_stride, obmc_stride, mb_x2, mb_y2, 0, 0, plane_index);
611 for(y2=
FFMAX(y, 0); y2<
FFMIN(h, y+block_h); y2++){
612 for(x2=
FFMAX(x, 0); x2<
FFMIN(w, x+block_w); x2++){
613 int index= x2-(block_w*mb_x - block_w/2) + (y2-(block_h*mb_y - block_h/2))*obmc_stride;
614 int obmc_v= obmc[
index];
616 if(y<0) obmc_v += obmc[index + block_h*obmc_stride];
617 if(x<0) obmc_v += obmc[index + block_w];
618 if(y+block_h>h) obmc_v += obmc[index - block_h*obmc_stride];
619 if(x+block_w>w) obmc_v += obmc[index - block_w];
624 ab += (src[x2 + y2*ref_stride] - (d>>
FRAC_BITS)) * obmc_v;
625 aa += obmc_v * obmc_v;
637 int index= x + y*b_stride;
641 const BlockNode *tl = y && x ? &s->
block[index-b_stride-1] : left;
642 const BlockNode *tr = y && x+w<b_stride ? &s->
block[index-b_stride+w] : tl;
647 if(x<0 || x>=b_stride || y>=b_height)
663 pred_mv(s, &dmx, &dmy, b->
ref, left, top, tr);
675 const int block_w = plane_index ? block_size>>s->
chroma_h_shift : block_size;
676 const int block_h = plane_index ? block_size>>s->
chroma_v_shift : block_size;
677 const int obmc_stride= plane_index ? (2*block_size)>>s->
chroma_h_shift : 2*block_size;
680 uint8_t *src= s-> input_picture.data[plane_index];
686 const int w= p->
width;
691 int sx= block_w*mb_x - block_w/2;
692 int sy= block_h*mb_y - block_h/2;
693 int x0=
FFMAX(0,-sx);
694 int y0=
FFMAX(0,-sy);
695 int x1=
FFMIN(block_w*2, w-sx);
696 int y1=
FFMIN(block_h*2, h-sy);
701 ff_snow_pred_block(s, cur, tmp, ref_stride, sx, sy, block_w*2, block_h*2, &s->
block[mb_x + mb_y*b_stride], plane_index, w, h);
703 for(y=y0; y<y1; y++){
704 const uint8_t *obmc1= obmc_edged[y];
706 uint8_t *cur1 = cur + y*ref_stride;
707 uint8_t *dst1 = dst + sx + (sy+y)*ref_stride;
708 for(x=x0; x<x1; x++){
709 #if FRAC_BITS >= LOG2_OBMC_MAX
715 if(v&(~255)) v= ~(v>>31);
722 && (mb_x == 0 || mb_x == b_stride-1)
723 && (mb_y == 0 || mb_y == b_height-1)){
733 memcpy(dst + sx+x0 + (sy+y)*ref_stride, cur + x0 + y*ref_stride, x1-x0);
744 distortion =
ff_w97_32_c(&s->
m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
746 distortion =
ff_w53_32_c(&s->
m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
750 int off = sx+16*(i&1) + (sy+16*(i>>1))*ref_stride;
751 distortion += s->
dsp.
me_cmp[0](&s->
m, src +
off, dst +
off, ref_stride, 16);
756 distortion = s->
dsp.
me_cmp[0](&s->
m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, block_w*2);
765 rate +=
get_block_bits(s, mb_x + (i&1) - (i>>1), mb_y + (i>>1), 1);
767 if(mb_x == b_stride-2)
770 return distortion + rate*penalty_factor;
777 const int block_w = plane_index ? block_size>>s->
chroma_h_shift : block_size;
778 const int block_h = plane_index ? block_size>>s->
chroma_v_shift : block_size;
780 const int obmc_stride= plane_index ? (2*block_size)>>s->
chroma_h_shift : 2*block_size;
783 uint8_t *src= s-> input_picture.data[plane_index];
788 const int w= p->
width;
797 int mb_x2= mb_x + (i%3) - 1;
798 int mb_y2= mb_y + (i/3) - 1;
799 int x= block_w*mb_x2 + block_w/2;
800 int y= block_h*mb_y2 + block_h/2;
803 x, y, block_w, block_h, w, h, 0, ref_stride, obmc_stride, mb_x2, mb_y2, 1, 1, plane_index);
806 for(y2= y; y2<0; y2++)
807 memcpy(dst + x + y2*ref_stride, src + x + y2*ref_stride, block_w);
808 for(y2= h; y2<y+block_h; y2++)
809 memcpy(dst + x + y2*ref_stride, src + x + y2*ref_stride, block_w);
811 for(y2= y; y2<y+block_h; y2++)
812 memcpy(dst + x + y2*ref_stride, src + x + y2*ref_stride, -x);
815 for(y2= y; y2<y+block_h; y2++)
816 memcpy(dst + w + y2*ref_stride, src + w + y2*ref_stride, x+block_w - w);
819 assert(block_w== 8 || block_w==16);
820 distortion += s->
dsp.
me_cmp[block_w==8](&s->
m, src + x + y*ref_stride, dst + x + y*ref_stride, ref_stride, block_h);
834 for(i=merged?4:0; i<9; i++){
835 static const int dxy[9][2] = {{0,0},{1,0},{0,1},{1,1},{2,0},{2,1},{-1,2},{0,2},{1,2}};
839 return distortion + rate*penalty_factor;
843 const int w= b->
width;
856 int l=0, lt=0,
t=0, rt=0;
860 t= src[x + (y-1)*stride];
862 lt= src[x - 1 + (y-1)*stride];
865 rt= src[x + 1 + (y-1)*stride];
878 if(px<b->parent->width && py<b->parent->height)
879 p= parent[px + py*2*
stride];
883 runs[run_index++]=
run;
891 max_index= run_index;
892 runs[run_index++]=
run;
894 run= runs[run_index++];
897 if(run_index <= max_index)
907 int l=0, lt=0,
t=0, rt=0;
911 t= src[x + (y-1)*stride];
913 lt= src[x - 1 + (y-1)*stride];
916 rt= src[x + 1 + (y-1)*stride];
929 if(px<b->parent->width && py<b->parent->height)
930 p= parent[px + py*2*
stride];
938 run= runs[run_index++];
940 if(run_index <= max_index)
950 int l2= 2*
FFABS(l) + (l<0);
976 assert(mb_x>=0 && mb_y>=0);
977 assert(mb_x<b_stride);
980 block->
color[0] = p[0];
981 block->
color[1] = p[1];
982 block->
color[2] = p[2];
1011 int p[2] = {p0, p1};
1012 return check_block(s, mb_x, mb_y, p, 0, obmc_edged, best_rd);
1025 backup[0] = block[0];
1026 backup[1] = block[1];
1027 backup[2] = block[b_stride];
1028 backup[3] = block[b_stride + 1];
1030 assert(mb_x>=0 && mb_y>=0);
1031 assert(mb_x<b_stride);
1032 assert(((mb_x|mb_y)&1) == 0);
1044 block[1]= block[b_stride]= block[b_stride+1]= *
block;
1053 block[0]= backup[0];
1054 block[1]= backup[1];
1055 block[b_stride]= backup[2];
1056 block[b_stride+1]= backup[3];
1062 int pass, mb_x, mb_y;
1065 const int b_stride= b_width;
1072 for(mb_y= 0; mb_y<s->
b_height; mb_y++)
1073 for(mb_x= 0; mb_x<s->
b_width; mb_x++)
1079 for(pass=0; pass<25; pass++){
1082 for(mb_y= 0; mb_y<b_height; mb_y++){
1083 for(mb_x= 0; mb_x<b_width; mb_x++){
1084 int dia_change, i, j, ref;
1085 int best_rd= INT_MAX, ref_rd;
1087 const int index= mb_x + mb_y * b_stride;
1096 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->
block[index+b_stride+1] :
NULL;
1113 for (y = 0; y < b_w * 2; y++)
1116 for(y=0; y<b_w*2; y++)
1117 memset(obmc_edged[y], obmc_edged[y][0] + obmc_edged[y][b_w-1], b_w);
1118 if(mb_x==b_stride-1)
1119 for(y=0; y<b_w*2; y++)
1120 memset(obmc_edged[y]+b_w, obmc_edged[y][b_w] + obmc_edged[y][b_w*2-1], b_w);
1122 for(x=0; x<b_w*2; x++)
1123 obmc_edged[0][x] += obmc_edged[b_w-1][x];
1124 for(y=1; y<b_w; y++)
1125 memcpy(obmc_edged[y], obmc_edged[0], b_w*2);
1127 if(mb_y==b_height-1){
1128 for(x=0; x<b_w*2; x++)
1129 obmc_edged[b_w*2-1][x] += obmc_edged[b_w][x];
1130 for(y=b_w; y<b_w*2-1; y++)
1131 memcpy(obmc_edged[y], obmc_edged[b_w*2-1], b_w*2);
1136 if(mb_x==0 || mb_y==0 || mb_x==b_width-1 || mb_y==b_height-1){
1137 uint8_t *src= s-> input_picture.data[0];
1142 const int sx= block_w*mb_x - block_w/2;
1143 const int sy= block_h*mb_y - block_h/2;
1149 memcpy(dst + sx + y*stride, src + sx + y*stride, block_w*2);
1150 for(y=h; y<sy+block_h*2; y++)
1151 memcpy(dst + sx + y*stride, src + sx + y*stride, block_w*2);
1153 for(y=sy; y<sy+block_h*2; y++)
1154 memcpy(dst + sx + y*stride, src + sx + y*stride, -sx);
1156 if(sx+block_w*2 > w){
1157 for(y=sy; y<sy+block_h*2; y++)
1158 memcpy(dst + w + y*stride, src + w + y*stride, sx+block_w*2 - w);
1164 color[i]=
get_dc(s, mb_x, mb_y, i);
1169 check_block(s, mb_x, mb_y, color0, 1, obmc_edged, &best_rd);
1185 check_block_inter(s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], obmc_edged, &best_rd);
1191 check_block_inter(s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], obmc_edged, &best_rd);
1199 dia_change |=
check_block_inter(s, mb_x, mb_y, block->
mx+4*(i-j), block->
my+(4*j), obmc_edged, &best_rd);
1200 dia_change |=
check_block_inter(s, mb_x, mb_y, block->
mx-4*(i-j), block->
my-(4*j), obmc_edged, &best_rd);
1201 dia_change |=
check_block_inter(s, mb_x, mb_y, block->
mx+4*(i-j), block->
my-(4*j), obmc_edged, &best_rd);
1202 dia_change |=
check_block_inter(s, mb_x, mb_y, block->
mx-4*(i-j), block->
my+(4*j), obmc_edged, &best_rd);
1208 static const int square[8][2]= {{+1, 0},{-1, 0},{ 0,+1},{ 0,-1},{+1,+1},{-1,-1},{+1,-1},{-1,+1},};
1211 dia_change |=
check_block_inter(s, mb_x, mb_y, block->
mx+square[i][0], block->
my+square[i][1], obmc_edged, &best_rd);
1215 mvr[0][0]= block->
mx;
1216 mvr[0][1]= block->
my;
1217 if(ref_rd > best_rd){
1224 check_block(s, mb_x, mb_y, color, 1, obmc_edged, &best_rd);
1246 for(mb_y= 0; mb_y<b_height; mb_y+=2){
1247 for(mb_x= 0; mb_x<b_width; mb_x+=2){
1249 int best_rd, init_rd;
1250 const int index= mb_x + mb_y * b_stride;
1255 b[2]= b[0]+b_stride;
1270 (b[0]->mx + b[1]->mx + b[2]->mx + b[3]->mx + 2) >> 2,
1271 (b[0]->my + b[1]->my + b[2]->my + b[3]->my + 2) >> 2, 0, &best_rd);
1277 if(init_rd != best_rd)
1308 const int w= b->
width;
1317 dst[x + y*stride]= src[x + y*stride];
1321 bias= bias ? 0 : (3*qmul)>>3;
1328 int i= src[x + y*
stride];
1330 if((
unsigned)(i+thres1) > thres2){
1348 int i= src[x + y*
stride];
1350 if((
unsigned)(i+thres1) > thres2){
1353 i= (i + bias) / qmul;
1358 i= (i + bias) / qmul;
1369 const int w= b->
width;
1380 int i= src[x + y*
stride];
1391 const int w= b->
width;
1395 for(y=h-1; y>=0; y--){
1396 for(x=w-1; x>=0; x--){
1401 if(y && x+1<w) src[i] -=
mid_pred(src[i - 1], src[i - stride], src[i - stride + 1]);
1402 else src[i] -= src[i - 1];
1404 if(y) src[i] -=
mid_pred(src[i - 1], src[i - stride], src[i - 1] + src[i - stride] - src[i - 1 - stride]);
1405 else src[i] -= src[i - 1];
1408 if(y) src[i] -= src[i -
stride];
1415 const int w= b->
width;
1425 if(y && x+1<w) src[i] +=
mid_pred(src[i - 1], src[i - stride], src[i - stride + 1]);
1426 else src[i] += src[i - 1];
1428 if(y) src[i] +=
mid_pred(src[i - 1], src[i - stride], src[i - 1] + src[i - stride] - src[i - 1 - stride]);
1429 else src[i] += src[i - 1];
1432 if(y) src[i] += src[i -
stride];
1439 int plane_index,
level, orientation;
1441 for(plane_index=0; plane_index<2; plane_index++){
1443 for(orientation=level ? 1:0; orientation<4; orientation++){
1444 if(orientation==2)
continue;
1455 memset(kstate,
MID_STATE,
sizeof(kstate));
1465 for(plane_index=0; plane_index<2; plane_index++){
1490 for(plane_index=0; plane_index<2; plane_index++){
1498 for(plane_index=0; plane_index<2; plane_index++){
1502 for(i= p->
htaps/2; i; i--)
1526 for(plane_index=0; plane_index<2; plane_index++){
1552 uint32_t coef_sum= 0;
1553 int level, orientation, delta_qlog;
1556 for(orientation=level ? 1 : 0; orientation<4; orientation++){
1559 const int w= b->
width;
1561 const int stride= b->
stride;
1564 const int qdiv= (1<<16)/qmul;
1569 buf[x+y*stride]= b->
buf[x+y*stride];
1574 coef_sum+= abs(buf[x+y*stride]) * qdiv >> 16;
1579 coef_sum = (uint64_t)coef_sum * coef_sum >> 16;
1580 assert(coef_sum < INT_MAX);
1595 s->
qlog+= delta_qlog;
1600 int width = p->
width;
1602 int level, orientation, x, y;
1605 for(orientation=level ? 1 : 0; orientation<4; orientation++){
1614 for(x=0; x<
width; x++){
1620 b->
qlog= (int)(log(352256.0/sqrt(error)) / log(pow(2.0, 1.0/
QROOT))+0.5);
1626 const AVFrame *pict,
int *got_packet)
1633 int level, orientation, plane_index, i, y, ret;
1646 for(y=0; y<(height>>vshift); y++)
1684 int block_width = (width +15)>>4;
1685 int block_height= (height+15)>>4;
1694 s->
m. new_picture.f.data[0] = s-> input_picture.data[0];
1695 s->
m. last_picture_ptr= &s->
m. last_picture;
1747 for(plane_index=0; plane_index<3; plane_index++){
1757 for(plane_index=0; plane_index<3; plane_index++){
1766 if(pict->
data[plane_index])
1807 if (delta_qlog <= INT_MIN)
1820 for(orientation=level ? 1 : 0; orientation<4; orientation++){
1836 for(orientation=level ? 1 : 0; orientation<4; orientation++){
1858 pict->
data[plane_index][y*pict->
linesize[plane_index] + x];
1869 if(pict->
data[plane_index])
1928 #define OFFSET(x) offsetof(SnowContext, x)
1929 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1931 {
"memc_only",
"Only do ME/MC (I frames -> ref, P frame -> ME+MC).",
OFFSET(memc_only),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1,
VE },
1932 {
"no_bitstream",
"Skip final bitstream writeout.",
OFFSET(no_bitstream),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1,
VE },
1971 int buffer[2][width*
height];
1983 printf(
"testing 5/3 DWT\n");
1984 for(i=0; i<width*
height; i++)
1985 buffer[0][i] = buffer[1][i] =
av_lfg_get(&prng) % 54321 - 12345;
1990 for(i=0; i<width*
height; i++)
1991 if(buffer[0][i]!= buffer[1][i]) printf(
"fsck: %6d %12d %7d\n",i, buffer[0][i], buffer[1][i]);
1993 printf(
"testing 9/7 DWT\n");
1995 for(i=0; i<width*
height; i++)
1996 buffer[0][i] = buffer[1][i] =
av_lfg_get(&prng) % 54321 - 12345;
2001 for(i=0; i<width*
height; i++)
2002 if(
FFABS(buffer[0][i] - buffer[1][i])>20) printf(
"fsck: %6d %12d %7d\n",i, buffer[0][i], buffer[1][i]);
2005 int level, orientation, x, y;
2006 int64_t errors[8][4];
2009 memset(errors, 0,
sizeof(errors));
2013 for(orientation=level ? 1 : 0; orientation<4; orientation++){
2020 if(orientation&1) buf+=w;
2021 if(orientation>1) buf+=stride>>1;
2023 memset(buffer[0], 0,
sizeof(
int)*width*height);
2024 buf[w/2 + h/2*
stride]= 256*256;
2027 for(x=0; x<
width; x++){
2028 int64_t d= buffer[0][x + y*
width];
2030 if(
FFABS(width/2-x)<9 &&
FFABS(height/2-y)<9 && level==2) printf(
"%8"PRId64
" ", d);
2032 if(
FFABS(height/2-y)<9 && level==2) printf(
"\n");
2034 error= (int)(sqrt(error)+0.5);
2035 errors[
level][orientation]= error;
2036 if(g) g=
av_gcd(g, error);
2040 printf(
"static int const visual_weight[][4]={\n");
2043 for(orientation=0; orientation<4; orientation++){
2044 printf(
"%8"PRId64
",", errors[level][orientation]/g);
2060 memset(buffer[0], 0,
sizeof(
int)*width*height);
2062 for(x=0; x<
width; x++){
2063 int tab[4]={0,2,3,1};
2064 buffer[0][x+width*y]= 256*256*tab[(x&1) + 2*(y&1)];
2069 for(x=0; x<
width; x++){
2070 int64_t d= buffer[0][x + y*
width];
2072 if(
FFABS(width/2-x)<9 &&
FFABS(height/2-y)<9) printf(
"%8"PRId64
" ", d);
2074 if(
FFABS(height/2-y)<9) printf(
"\n");