53 s->spatial_decomposition_type=
s->pred;
58 for(plane_index=0; plane_index<3; plane_index++){
59 s->plane[plane_index].diag_mc= 1;
60 s->plane[plane_index].htaps= 6;
61 s->plane[plane_index].hcoeff[0]= 40;
62 s->plane[plane_index].hcoeff[1]= -10;
63 s->plane[plane_index].hcoeff[2]= 2;
64 s->plane[plane_index].fast_mc= 1;
81 s->m.mb_num = (avctx->
width * avctx->
height + 255) / 256;
84 s->m.me.scratchpad =
av_calloc(avctx->
width + 64, 2*16*2*
sizeof(uint8_t));
87 if (!
s->m.me.scratchpad || !
s->m.me.map || !
s->m.sc.obmc_scratchpad)
116 s->colorspace_type= 0;
120 s->colorspace_type = 1;
133 ff_set_cmp(&
s->mecc,
s->mecc.me_sub_cmp,
s->avctx->me_sub_cmp);
136 if (!
s->input_picture)
143 int size=
s->b_width *
s->b_height << 2*
s->block_max_depth;
144 for(
i=0;
i<
s->max_ref_frames;
i++){
147 if (!
s->ref_mvs[
i] || !
s->ref_scores[
i])
156 static int pix_sum(
const uint8_t * pix,
int line_size,
int w,
int h)
161 for (
i = 0;
i <
h;
i++) {
162 for (j = 0; j <
w; j++) {
166 pix += line_size -
w;
172 static int pix_norm1(
const uint8_t * pix,
int line_size,
int w)
178 for (
i = 0;
i <
w;
i++) {
179 for (j = 0; j <
w; j ++) {
183 pix += line_size -
w;
215 #define P_TOPRIGHT P[3]
216 #define P_MEDIAN P[4]
218 #define FLAG_QPEL 1 //must be 1
221 uint8_t p_buffer[1024];
222 uint8_t i_buffer[1024];
223 uint8_t p_state[
sizeof(
s->block_state)];
224 uint8_t i_state[
sizeof(
s->block_state)];
226 uint8_t *pbbak=
s->c.bytestream;
227 uint8_t *pbbak_start=
s->c.bytestream_start;
228 int score, score2, iscore, i_len, p_len, block_s, sum, base_bits;
229 const int w=
s->b_width <<
s->block_max_depth;
230 const int h=
s->b_height <<
s->block_max_depth;
231 const int rem_depth=
s->block_max_depth -
level;
232 const int index= (x + y*
w) << rem_depth;
234 int trx= (x+1)<<rem_depth;
235 int try= (y+1)<<rem_depth;
242 int pl =
left->color[0];
243 int pcb=
left->color[1];
244 int pcr=
left->color[2];
248 const int stride=
s->current_picture->linesize[0];
249 const int uvstride=
s->current_picture->linesize[1];
250 const uint8_t *
const current_data[3] = {
s->input_picture->data[0] + (x + y*
stride)*block_w,
251 s->input_picture->data[1] + ((x*block_w)>>
s->chroma_h_shift) + ((y*uvstride*block_w)>>
s->chroma_v_shift),
252 s->input_picture->data[2] + ((x*block_w)>>
s->chroma_h_shift) + ((y*uvstride*block_w)>>
s->chroma_v_shift)};
254 int16_t last_mv[3][2];
256 const int shift= 1+qpel;
262 int ref, best_ref, ref_score, ref_mx, ref_my;
266 set_blocks(
s,
level, x, y, pl, pcb, pcr, 0, 0, 0,
BLOCK_INTRA);
279 last_mv[0][0]=
s->block[
index].mx;
280 last_mv[0][1]=
s->block[
index].my;
281 last_mv[1][0]= right->
mx;
282 last_mv[1][1]= right->
my;
283 last_mv[2][0]= bottom->
mx;
284 last_mv[2][1]= bottom->
my;
297 c->current_mv_penalty=
c->mv_penalty[
s->m.f_code=1] +
MAX_DMV;
299 c->xmin = - x*block_w - 16+3;
300 c->ymin = - y*block_w - 16+3;
301 c->xmax = - (x+1)*block_w + (
w<<(
LOG2_MB_SIZE -
s->block_max_depth)) + 16-3;
302 c->ymax = - (y+1)*block_w + (
h<<(
LOG2_MB_SIZE -
s->block_max_depth)) + 16-3;
326 init_ref(
c, current_data,
s->last_picture[
ref]->data,
NULL, block_w*x, block_w*y, 0);
336 ref_score=
c->sub_motion_search(&
s->m, &ref_mx, &ref_my, ref_score, 0, 0,
level-
LOG2_MB_SIZE+4, block_w);
344 if(score > ref_score){
354 base_bits=
get_rac_count(&
s->c) - 8*(
s->c.bytestream -
s->c.bytestream_start);
357 pc.bytestream= p_buffer;
358 memcpy(p_state,
s->block_state,
sizeof(
s->block_state));
360 if(
level!=
s->block_max_depth)
361 put_rac(&pc, &p_state[4 + s_context], 1);
363 if(
s->ref_frames > 1)
364 put_symbol(&pc, &p_state[128 + 1024 + 32*ref_context], best_ref, 0);
366 put_symbol(&pc, &p_state[128 + 32*(mx_context + 16*!!best_ref)], mx - pmx, 1);
367 put_symbol(&pc, &p_state[128 + 32*(my_context + 16*!!best_ref)], my - pmy, 1);
368 p_len= pc.bytestream - pc.bytestream_start;
371 block_s= block_w*block_w;
373 l= (sum + block_s/2)/block_s;
374 iscore =
pix_norm1(current_data[0],
stride, block_w) - 2*l*sum + l*l*block_s;
376 if (
s->nb_planes > 2) {
377 block_s= block_w*block_w>>(
s->chroma_h_shift +
s->chroma_v_shift);
378 sum =
pix_sum(current_data[1], uvstride, block_w>>
s->chroma_h_shift, block_w>>
s->chroma_v_shift);
379 cb= (sum + block_s/2)/block_s;
381 sum =
pix_sum(current_data[2], uvstride, block_w>>
s->chroma_h_shift, block_w>>
s->chroma_v_shift);
382 cr= (sum + block_s/2)/block_s;
389 ic.bytestream= i_buffer;
390 memcpy(i_state,
s->block_state,
sizeof(
s->block_state));
391 if(
level!=
s->block_max_depth)
392 put_rac(&ic, &i_state[4 + s_context], 1);
395 if (
s->nb_planes > 2) {
399 i_len= ic.bytestream - ic.bytestream_start;
402 av_assert1(iscore < 255*255*256 + s->lambda2*10);
408 int varc= iscore >> 8;
409 int vard= score >> 8;
410 if (vard <= 64 || vard < varc)
413 c->scene_change_score+=
s->m.qscale;
416 if(
level!=
s->block_max_depth){
417 put_rac(&
s->c, &
s->block_state[4 + s_context], 0);
424 if(score2 < score && score2 < iscore)
430 memcpy(pbbak, i_buffer, i_len);
432 s->c.bytestream_start= pbbak_start;
433 s->c.bytestream= pbbak + i_len;
434 set_blocks(
s,
level, x, y, l,
cb,
cr, pmx, pmy, 0,
BLOCK_INTRA);
435 memcpy(
s->block_state, i_state,
sizeof(
s->block_state));
438 memcpy(pbbak, p_buffer, p_len);
440 s->c.bytestream_start= pbbak_start;
441 s->c.bytestream= pbbak + p_len;
442 set_blocks(
s,
level, x, y, pl, pcb, pcr, mx, my, best_ref, 0);
443 memcpy(
s->block_state, p_state,
sizeof(
s->block_state));
449 const int w=
s->b_width <<
s->block_max_depth;
450 const int rem_depth=
s->block_max_depth -
level;
451 const int index= (x + y*
w) << rem_depth;
452 int trx= (x+1)<<rem_depth;
458 int pl =
left->color[0];
459 int pcb=
left->color[1];
460 int pcr=
left->color[2];
468 set_blocks(
s,
level, x, y, pl, pcb, pcr, 0, 0, 0,
BLOCK_INTRA);
472 if(
level!=
s->block_max_depth){
474 put_rac(&
s->c, &
s->block_state[4 + s_context], 1);
476 put_rac(&
s->c, &
s->block_state[4 + s_context], 0);
488 if (
s->nb_planes > 2) {
492 set_blocks(
s,
level, x, y,
b->color[0],
b->color[1],
b->color[2], pmx, pmy, 0,
BLOCK_INTRA);
496 if(
s->ref_frames > 1)
497 put_symbol(&
s->c, &
s->block_state[128 + 1024 + 32*ref_context],
b->ref, 0);
498 put_symbol(&
s->c, &
s->block_state[128 + 32*mx_context],
b->mx - pmx, 1);
499 put_symbol(&
s->c, &
s->block_state[128 + 32*my_context],
b->my - pmy, 1);
500 set_blocks(
s,
level, x, y, pl, pcb, pcr,
b->mx,
b->my,
b->ref, 0);
506 Plane *p= &
s->plane[plane_index];
507 const int block_size =
MB_SIZE >>
s->block_max_depth;
508 const int block_w = plane_index ? block_size>>
s->chroma_h_shift : block_size;
509 const int block_h = plane_index ? block_size>>
s->chroma_v_shift : block_size;
511 const int obmc_stride= plane_index ? (2*block_size)>>
s->chroma_h_shift : 2*block_size;
512 const int ref_stride=
s->current_picture->linesize[plane_index];
513 const uint8_t *
src =
s->input_picture->data[plane_index];
514 IDWTELEM *dst= (
IDWTELEM*)
s->m.sc.obmc_scratchpad + plane_index*block_size*block_size*4;
515 const int b_stride =
s->b_width <<
s->block_max_depth;
518 int index= mb_x + mb_y*b_stride;
527 b->color[plane_index]= 0;
528 memset(dst, 0, obmc_stride*obmc_stride*
sizeof(
IDWTELEM));
531 int mb_x2= mb_x + (
i &1) - 1;
532 int mb_y2= mb_y + (
i>>1) - 1;
533 int x= block_w*mb_x2 + block_w/2;
534 int y= block_h*mb_y2 + block_h/2;
537 x, y, block_w, block_h,
w,
h, obmc_stride, ref_stride, obmc_stride, mb_x2, mb_y2, 0, 0, plane_index);
539 for(y2=
FFMAX(y, 0); y2<
FFMIN(
h, y+block_h); y2++){
540 for(x2=
FFMAX(x, 0); x2<
FFMIN(
w, x+block_w); x2++){
541 int index= x2-(block_w*mb_x - block_w/2) + (y2-(block_h*mb_y - block_h/2))*obmc_stride;
542 int obmc_v= obmc[
index];
544 if(y<0) obmc_v += obmc[
index + block_h*obmc_stride];
545 if(x<0) obmc_v += obmc[
index + block_w];
546 if(y+block_h>
h) obmc_v += obmc[
index - block_h*obmc_stride];
547 if(x+block_w>
w) obmc_v += obmc[
index - block_w];
553 aa += obmc_v * obmc_v;
563 const int b_stride =
s->b_width <<
s->block_max_depth;
564 const int b_height =
s->b_height<<
s->block_max_depth;
565 int index= x + y*b_stride;
575 if(x<0 || x>=b_stride || y>=b_height)
601 Plane *p= &
s->plane[plane_index];
602 const int block_size =
MB_SIZE >>
s->block_max_depth;
603 const int block_w = plane_index ? block_size>>
s->chroma_h_shift : block_size;
604 const int block_h = plane_index ? block_size>>
s->chroma_v_shift : block_size;
605 const int obmc_stride= plane_index ? (2*block_size)>>
s->chroma_h_shift : 2*block_size;
606 const int ref_stride=
s->current_picture->linesize[plane_index];
607 uint8_t *dst=
s->current_picture->data[plane_index];
608 const uint8_t *
src =
s->input_picture->data[plane_index];
610 uint8_t *cur =
s->scratchbuf;
611 uint8_t *
tmp =
s->emu_edge_buffer;
612 const int b_stride =
s->b_width <<
s->block_max_depth;
613 const int b_height =
s->b_height<<
s->block_max_depth;
619 int sx= block_w*mb_x - block_w/2;
620 int sy= block_h*mb_y - block_h/2;
621 int x0=
FFMAX(0,-sx);
622 int y0=
FFMAX(0,-sy);
623 int x1=
FFMIN(block_w*2,
w-sx);
624 int y1=
FFMIN(block_h*2,
h-sy);
629 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);
631 for(y=y0; y<y1; y++){
632 const uint8_t *obmc1= obmc_edged[y];
634 uint8_t *cur1 = cur + y*ref_stride;
635 uint8_t *dst1 = dst + sx + (sy+y)*ref_stride;
636 for(x=x0; x<x1; x++){
637 #if FRAC_BITS >= LOG2_OBMC_MAX
643 if(v&(~255)) v= ~(v>>31);
650 && (mb_x == 0 || mb_x == b_stride-1)
651 && (mb_y == 0 || mb_y == b_height-1)){
661 memcpy(dst + sx+x0 + (sy+y)*ref_stride, cur + x0 + y*ref_stride, x1-x0);
672 distortion =
ff_w97_32_c(&
s->m,
src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
674 distortion =
ff_w53_32_c(&
s->m,
src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
678 int off = sx+16*(
i&1) + (sy+16*(
i>>1))*ref_stride;
679 distortion +=
s->mecc.me_cmp[0](&
s->m,
src + off, dst + off, ref_stride, 16);
684 distortion =
s->mecc.me_cmp[0](&
s->m,
src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, block_w*2);
695 if(mb_x == b_stride-2)
698 return distortion + rate*penalty_factor;
703 Plane *p= &
s->plane[plane_index];
704 const int block_size =
MB_SIZE >>
s->block_max_depth;
705 const int block_w = plane_index ? block_size>>
s->chroma_h_shift : block_size;
706 const int block_h = plane_index ? block_size>>
s->chroma_v_shift : block_size;
708 const int obmc_stride= plane_index ? (2*block_size)>>
s->chroma_h_shift : 2*block_size;
709 const int ref_stride=
s->current_picture->linesize[plane_index];
710 uint8_t *dst=
s->current_picture->data[plane_index];
711 const uint8_t *
src =
s->input_picture->data[plane_index];
715 const int b_stride =
s->b_width <<
s->block_max_depth;
725 int mb_x2= mb_x + (
i%3) - 1;
726 int mb_y2= mb_y + (
i/3) - 1;
727 int x= block_w*mb_x2 + block_w/2;
728 int y= block_h*mb_y2 + block_h/2;
731 x, y, block_w, block_h,
w,
h, 0, ref_stride, obmc_stride, mb_x2, mb_y2, 1, 1, plane_index);
734 for(y2= y; y2<0; y2++)
735 memcpy(dst + x + y2*ref_stride,
src + x + y2*ref_stride, block_w);
736 for(y2=
h; y2<y+block_h; y2++)
737 memcpy(dst + x + y2*ref_stride,
src + x + y2*ref_stride, block_w);
739 for(y2= y; y2<y+block_h; y2++)
740 memcpy(dst + x + y2*ref_stride,
src + x + y2*ref_stride, -x);
743 for(y2= y; y2<y+block_h; y2++)
744 memcpy(dst +
w + y2*ref_stride,
src +
w + y2*ref_stride, x+block_w -
w);
748 distortion +=
s->mecc.me_cmp[block_w==8](&
s->m,
src + x + y*ref_stride, dst + x + y*ref_stride, ref_stride, block_h);
762 for(
i=merged?4:0;
i<9;
i++){
763 static const int dxy[9][2] = {{0,0},{1,0},{0,1},{1,1},{2,0},{2,1},{-1,2},{0,2},{1,2}};
767 return distortion + rate*penalty_factor;
771 const int w=
b->width;
772 const int h=
b->height;
777 int *runs =
s->run_buffer;
784 int l=0, lt=0, t=0, rt=0;
806 if(px<b->parent->width && py<b->parent->height)
807 p= parent[px + py*2*
stride];
811 runs[run_index++]=
run;
819 max_index= run_index;
820 runs[run_index++]=
run;
822 run= runs[run_index++];
825 if(run_index <= max_index)
829 if(
s->c.bytestream_end -
s->c.bytestream <
w*40){
835 int l=0, lt=0, t=0, rt=0;
857 if(px<b->parent->width && py<b->parent->height)
858 p= parent[px + py*2*
stride];
866 run= runs[run_index++];
868 if(run_index <= max_index)
878 int l2= 2*
FFABS(l) + (l<0);
898 uint8_t (*obmc_edged)[
MB_SIZE * 2],
int *best_rd)
900 const int b_stride=
s->b_width <<
s->block_max_depth;
908 block->color[0] = p[0];
909 block->color[1] = p[1];
910 block->color[2] = p[2];
913 rd =
get_block_rd(
s, mb_x, mb_y, 0, obmc_edged) +
s->intra_penalty;
928 const int b_stride =
s->b_width <<
s->block_max_depth;
938 value =
s->me_cache_generation + (p0 >> 10) + p1 * (1 << 6) + (
block->ref << 12);
960 const int b_stride=
s->b_width <<
s->block_max_depth;
969 backup[0] =
block[0];
970 backup[1] =
block[1];
971 backup[2] =
block[b_stride];
972 backup[3] =
block[b_stride + 1];
979 value=
s->me_cache_generation + (p0>>10) + (p1<<6) + (
block->ref<<12);
999 block[b_stride]= backup[2];
1000 block[b_stride+1]= backup[3];
1006 int pass, mb_x, mb_y;
1007 const int b_width =
s->b_width <<
s->block_max_depth;
1008 const int b_height=
s->b_height <<
s->block_max_depth;
1009 const int b_stride= b_width;
1014 uint8_t
state[
sizeof(
s->block_state)];
1015 memcpy(
state,
s->block_state,
sizeof(
s->block_state));
1016 for(mb_y= 0; mb_y<
s->b_height; mb_y++)
1017 for(mb_x= 0; mb_x<
s->b_width; mb_x++)
1020 memcpy(
s->block_state,
state,
sizeof(
s->block_state));
1026 for(mb_y= 0; mb_y<b_height; mb_y++){
1027 for(mb_x= 0; mb_x<b_width; mb_x++){
1028 int dia_change,
i, j,
ref;
1029 int best_rd= INT_MAX, ref_rd;
1031 const int index= mb_x + mb_y * b_stride;
1041 const int b_w= (
MB_SIZE >>
s->block_max_depth);
1050 if(!
s->me_cache_generation)
1051 memset(
s->me_cache, 0,
sizeof(
s->me_cache));
1052 s->me_cache_generation += 1<<22;
1057 for (y = 0; y < b_w * 2; y++)
1058 memcpy(obmc_edged[y],
ff_obmc_tab[
s->block_max_depth] + y * b_w * 2, b_w * 2);
1060 for(y=0; y<b_w*2; y++)
1061 memset(obmc_edged[y], obmc_edged[y][0] + obmc_edged[y][b_w-1], b_w);
1062 if(mb_x==b_stride-1)
1063 for(y=0; y<b_w*2; y++)
1064 memset(obmc_edged[y]+b_w, obmc_edged[y][b_w] + obmc_edged[y][b_w*2-1], b_w);
1066 for(x=0; x<b_w*2; x++)
1067 obmc_edged[0][x] += obmc_edged[b_w-1][x];
1068 for(y=1; y<b_w; y++)
1069 memcpy(obmc_edged[y], obmc_edged[0], b_w*2);
1071 if(mb_y==b_height-1){
1072 for(x=0; x<b_w*2; x++)
1073 obmc_edged[b_w*2-1][x] += obmc_edged[b_w][x];
1074 for(y=b_w; y<b_w*2-1; y++)
1075 memcpy(obmc_edged[y], obmc_edged[b_w*2-1], b_w*2);
1080 if(mb_x==0 || mb_y==0 || mb_x==b_width-1 || mb_y==b_height-1){
1081 const uint8_t *
src =
s->input_picture->data[0];
1082 uint8_t *dst=
s->current_picture->data[0];
1083 const int stride=
s->current_picture->linesize[0];
1084 const int block_w=
MB_SIZE >>
s->block_max_depth;
1085 const int block_h=
MB_SIZE >>
s->block_max_depth;
1086 const int sx= block_w*mb_x - block_w/2;
1087 const int sy= block_h*mb_y - block_h/2;
1088 const int w=
s->plane[0].width;
1089 const int h=
s->plane[0].height;
1094 for(y=
h; y<sy+block_h*2; y++)
1097 for(y=sy; y<sy+block_h*2; y++)
1100 if(sx+block_w*2 >
w){
1101 for(y=sy; y<sy+block_h*2; y++)
1107 for(
i=0;
i <
s->nb_planes;
i++)
1120 int16_t (*mvr)[2]= &
s->ref_mvs[
ref][
index];
1129 check_block_inter(
s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], obmc_edged, &best_rd);
1135 check_block_inter(
s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], obmc_edged, &best_rd);
1140 int newx =
block->mx;
1141 int newy =
block->my;
1142 int dia_size =
s->iterative_dia_size ?
s->iterative_dia_size :
FFMAX(
s->avctx->dia_size, 1);
1144 for(
i=0;
i < dia_size;
i++){
1146 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx+4*(
i-j), newy+(4*j), obmc_edged, &best_rd);
1147 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx-4*(
i-j), newy-(4*j), obmc_edged, &best_rd);
1148 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx-(4*j), newy+4*(
i-j), obmc_edged, &best_rd);
1149 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx+(4*j), newy-4*(
i-j), obmc_edged, &best_rd);
1155 static const int square[8][2]= {{+1, 0},{-1, 0},{ 0,+1},{ 0,-1},{+1,+1},{-1,-1},{+1,-1},{-1,+1},};
1162 mvr[0][0]=
block->mx;
1163 mvr[0][1]=
block->my;
1164 if(ref_rd > best_rd){
1191 if(
s->block_max_depth == 1){
1193 for(mb_y= 0; mb_y<b_height; mb_y+=2){
1194 for(mb_x= 0; mb_x<b_width; mb_x+=2){
1196 int best_rd, init_rd;
1197 const int index= mb_x + mb_y * b_stride;
1202 b[2]=
b[0]+b_stride;
1209 if(!
s->me_cache_generation)
1210 memset(
s->me_cache, 0,
sizeof(
s->me_cache));
1211 s->me_cache_generation += 1<<22;
1217 (
b[0]->mx +
b[1]->mx +
b[2]->mx +
b[3]->mx + 2) >> 2,
1218 (
b[0]->my +
b[1]->my +
b[2]->my +
b[3]->my + 2) >> 2, 0, &best_rd);
1224 if(init_rd != best_rd)
1255 const int w=
b->width;
1256 const int h=
b->height;
1259 int x,y, thres1, thres2;
1277 if((
unsigned)(
i+thres1) > thres2){
1297 if((
unsigned)(
i+thres1) > thres2){
1316 const int w=
b->width;
1317 const int h=
b->height;
1338 const int w=
b->width;
1339 const int h=
b->height;
1342 for(y=
h-1; y>=0; y--){
1343 for(x=
w-1; x>=0; x--){
1362 const int w=
b->width;
1363 const int h=
b->height;
1386 int plane_index,
level, orientation;
1388 for(plane_index=0; plane_index<
FFMIN(
s->nb_planes, 2); plane_index++){
1390 for(orientation=
level ? 1:0; orientation<4; orientation++){
1391 if(orientation==2)
continue;
1392 put_symbol(&
s->c,
s->header_state,
s->plane[plane_index].band[
level][orientation].qlog, 1);
1402 memset(kstate,
MID_STATE,
sizeof(kstate));
1405 if(
s->keyframe ||
s->always_reset){
1407 s->last_spatial_decomposition_type=
1411 s->last_block_max_depth= 0;
1412 for(plane_index=0; plane_index<2; plane_index++){
1413 Plane *p= &
s->plane[plane_index];
1421 put_rac(&
s->c,
s->header_state,
s->always_reset);
1422 put_symbol(&
s->c,
s->header_state,
s->temporal_decomposition_type, 0);
1423 put_symbol(&
s->c,
s->header_state,
s->temporal_decomposition_count, 0);
1424 put_symbol(&
s->c,
s->header_state,
s->spatial_decomposition_count, 0);
1426 if (
s->nb_planes > 2) {
1430 put_rac(&
s->c,
s->header_state,
s->spatial_scalability);
1439 for(plane_index=0; plane_index<
FFMIN(
s->nb_planes, 2); plane_index++){
1440 Plane *p= &
s->plane[plane_index];
1445 put_rac(&
s->c,
s->header_state, update_mc);
1447 for(plane_index=0; plane_index<
FFMIN(
s->nb_planes, 2); plane_index++){
1448 Plane *p= &
s->plane[plane_index];
1455 if(
s->last_spatial_decomposition_count !=
s->spatial_decomposition_count){
1457 put_symbol(&
s->c,
s->header_state,
s->spatial_decomposition_count, 0);
1463 put_symbol(&
s->c,
s->header_state,
s->spatial_decomposition_type -
s->last_spatial_decomposition_type, 1);
1465 put_symbol(&
s->c,
s->header_state,
s->mv_scale -
s->last_mv_scale, 1);
1466 put_symbol(&
s->c,
s->header_state,
s->qbias -
s->last_qbias , 1);
1467 put_symbol(&
s->c,
s->header_state,
s->block_max_depth -
s->last_block_max_depth, 1);
1475 for(plane_index=0; plane_index<2; plane_index++){
1476 Plane *p= &
s->plane[plane_index];
1483 s->last_spatial_decomposition_type =
s->spatial_decomposition_type;
1484 s->last_qlog =
s->qlog;
1485 s->last_qbias =
s->qbias;
1486 s->last_mv_scale =
s->mv_scale;
1487 s->last_block_max_depth =
s->block_max_depth;
1488 s->last_spatial_decomposition_count =
s->spatial_decomposition_count;
1501 uint32_t coef_sum= 0;
1502 int level, orientation, delta_qlog;
1505 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1508 const int w=
b->width;
1509 const int h=
b->height;
1513 const int qdiv= (1<<16)/qmul;
1523 coef_sum+=
abs(buf[x+y*
stride]) * qdiv >> 16;
1529 coef_sum = (uint64_t)coef_sum * coef_sum >> 16;
1532 s->m.mb_var_sum = coef_sum;
1533 s->m.mc_mb_var_sum = 0;
1535 s->m.mc_mb_var_sum = coef_sum;
1536 s->m.mb_var_sum = 0;
1544 s->qlog+= delta_qlog;
1551 int level, orientation, x, y;
1554 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1559 memset(
s->spatial_idwt_buffer, 0,
sizeof(*
s->spatial_idwt_buffer)*
width*
height);
1560 ibuf[
b->width/2 +
b->height/2*
b->stride]= 256*16;
1563 for(x=0; x<
width; x++){
1564 int64_t
d=
s->spatial_idwt_buffer[x + y*
width]*16;
1575 const AVFrame *pict,
int *got_packet)
1580 const int width=
s->avctx->width;
1581 const int height=
s->avctx->height;
1582 int level, orientation, plane_index,
i, y,
ret;
1583 uint8_t rc_header_bak[
sizeof(
s->header_state)];
1584 uint8_t rc_block_bak[
sizeof(
s->block_state)];
1592 for(
i=0;
i <
s->nb_planes;
i++){
1593 int hshift=
i ?
s->chroma_h_shift : 0;
1594 int vshift=
i ?
s->chroma_v_shift : 0;
1596 memcpy(&
s->input_picture->data[
i][y *
s->input_picture->linesize[
i]],
1599 s->mpvencdsp.draw_edges(
s->input_picture->data[
i],
s->input_picture->linesize[
i],
1606 pic =
s->input_picture;
1635 if (
s->current_picture->data[0]) {
1636 int w =
s->avctx->width;
1637 int h =
s->avctx->height;
1639 s->mpvencdsp.draw_edges(
s->current_picture->data[0],
1640 s->current_picture->linesize[0],
w ,
h ,
1642 if (
s->current_picture->data[2]) {
1643 s->mpvencdsp.draw_edges(
s->current_picture->data[1],
1644 s->current_picture->linesize[1],
w>>
s->chroma_h_shift,
h>>
s->chroma_v_shift,
1646 s->mpvencdsp.draw_edges(
s->current_picture->data[2],
1647 s->current_picture->linesize[2],
w>>
s->chroma_h_shift,
h>>
s->chroma_v_shift,
1655 s->m.current_picture_ptr= &
s->m.current_picture;
1656 s->m.current_picture.f =
s->current_picture;
1657 s->m.current_picture.f->pts = pict->
pts;
1659 int block_width = (
width +15)>>4;
1660 int block_height= (
height+15)>>4;
1661 int stride=
s->current_picture->linesize[0];
1666 s->m.avctx=
s->avctx;
1668 s->m. new_picture =
s->input_picture;
1671 s->m.uvlinesize=
s->current_picture->linesize[1];
1674 s->m.mb_width = block_width;
1675 s->m.mb_height= block_height;
1676 s->m.mb_stride=
s->m.mb_width+1;
1677 s->m.b8_stride= 2*
s->m.mb_width+1;
1680 s->m.motion_est=
s->motion_est;
1681 s->m.me.scene_change_score=0;
1685 s->m.unrestricted_mv= 1;
1687 s->m.lambda =
s->lambda;
1693 s->m.hdsp =
s->hdsp;
1695 s->hdsp =
s->m.hdsp;
1700 memcpy(rc_header_bak,
s->header_state,
sizeof(
s->header_state));
1701 memcpy(rc_block_bak,
s->block_state,
sizeof(
s->block_state));
1706 s->spatial_decomposition_count= 5;
1708 while( !(
width >>(
s->chroma_h_shift +
s->spatial_decomposition_count))
1709 || !(
height>>(
s->chroma_v_shift +
s->spatial_decomposition_count)))
1710 s->spatial_decomposition_count--;
1712 if (
s->spatial_decomposition_count <= 0) {
1722 if(
s->last_spatial_decomposition_count !=
s->spatial_decomposition_count){
1723 for(plane_index=0; plane_index <
s->nb_planes; plane_index++){
1729 s->m.misc_bits = 8*(
s->c.bytestream -
s->c.bytestream_start);
1731 s->m.mv_bits = 8*(
s->c.bytestream -
s->c.bytestream_start) -
s->m.misc_bits;
1733 for(plane_index=0; plane_index < s->nb_planes; plane_index++){
1734 Plane *p= &
s->plane[plane_index];
1740 if (!
s->memc_only) {
1742 if(pict->
data[plane_index])
1753 &&
s->m.me.scene_change_score >
s->scenechange_threshold){
1758 s->current_picture->key_frame=1;
1776 ff_spatial_dwt(
s->spatial_dwt_buffer,
s->temp_dwt_buffer,
w,
h,
w,
s->spatial_decomposition_type,
s->spatial_decomposition_count);
1778 if(
s->pass1_rc && plane_index==0){
1780 if (delta_qlog <= INT_MIN)
1785 memcpy(
s->header_state, rc_header_bak,
sizeof(
s->header_state));
1786 memcpy(
s->block_state, rc_block_bak,
sizeof(
s->block_state));
1793 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1799 if (!
s->no_bitstream)
1808 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1815 ff_spatial_idwt(
s->spatial_idwt_buffer,
s->temp_idwt_buffer,
w,
h,
w,
s->spatial_decomposition_type,
s->spatial_decomposition_count);
1819 s->spatial_idwt_buffer[y*
w + x] *= 1 <<
FRAC_BITS;
1829 s->current_picture->data[plane_index][y*
s->current_picture->linesize[plane_index] + x]=
1830 pict->
data[plane_index][y*pict->
linesize[plane_index] + x];
1834 memset(
s->spatial_idwt_buffer, 0,
sizeof(
IDWTELEM)*
w*
h);
1841 if(pict->
data[plane_index])
1844 int d=
s->current_picture->data[plane_index][y*
s->current_picture->linesize[plane_index] + x] - pict->
data[plane_index][y*pict->
linesize[plane_index] + x];
1848 s->avctx->error[plane_index] +=
error;
1849 s->encoding_error[plane_index] =
error;
1859 s->current_picture->pict_type = pic->
pict_type;
1860 s->current_picture->quality = pic->
quality;
1861 s->m.frame_bits = 8*(
s->c.bytestream -
s->c.bytestream_start);
1862 s->m.p_tex_bits =
s->m.frame_bits -
s->m.misc_bits -
s->m.mv_bits;
1863 s->m.current_picture.display_picture_number =
1864 s->m.current_picture.coded_picture_number = avctx->
frame_num;
1865 s->m.current_picture.f->quality = pic->
quality;
1866 s->m.total_bits += 8*(
s->c.bytestream -
s->c.bytestream_start);
1872 s->m.last_pict_type =
s->m.pict_type;
1879 s->current_picture->pict_type);
1882 if (
s->current_picture->key_frame)
1901 #define OFFSET(x) offsetof(SnowContext, x)
1902 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1909 {
"memc_only",
"Only do ME/MC (I frames -> ref, P frame -> ME+MC).",
OFFSET(memc_only),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
1910 {
"no_bitstream",
"Skip final bitstream writeout.",
OFFSET(no_bitstream),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
1911 {
"intra_penalty",
"Penalty for intra blocks in block decission",
OFFSET(intra_penalty),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VE },
1912 {
"iterative_dia_size",
"Dia size for the iterative ME",
OFFSET(iterative_dia_size),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VE },
1913 {
"sc_threshold",
"Scene change threshold",
OFFSET(scenechange_threshold),
AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX,
VE },
1917 {
"rc_eq",
"Set rate control equation. When computing the expression, besides the standard functions "
1918 "defined in the section 'Expression Evaluation', the following functions are available: "
1919 "bits2qp(bits), qp2bits(qp). Also the following constants are available: iTex pTex tex mv "
1920 "fCode iCount mcVar var isI isP isB avgQP qComp avgIITex avgPITex avgPPTex avgBPTex avgTex.",