52 for (
int i = 0;
frame->data[
i];
i++) {
58 frame->width =
s->avctx->width;
59 frame->height =
s->avctx->height;
77 s->spatial_decomposition_type=
s->pred;
82 for(plane_index=0; plane_index<3; plane_index++){
83 s->plane[plane_index].diag_mc= 1;
84 s->plane[plane_index].htaps= 6;
85 s->plane[plane_index].hcoeff[0]= 40;
86 s->plane[plane_index].hcoeff[1]= -10;
87 s->plane[plane_index].hcoeff[2]= 2;
88 s->plane[plane_index].fast_mc= 1;
105 s->m.mb_num = (avctx->
width * avctx->
height + 255) / 256;
108 s->m.me.scratchpad =
av_calloc(avctx->
width + 64, 2*16*2*
sizeof(uint8_t));
111 if (!
s->m.me.scratchpad || !
s->m.me.map || !
s->m.sc.obmc_scratchpad)
140 s->colorspace_type= 0;
144 s->colorspace_type = 1;
162 if (!
s->input_picture)
169 int size=
s->b_width *
s->b_height << 2*
s->block_max_depth;
170 for(
i=0;
i<
s->max_ref_frames;
i++){
173 if (!
s->ref_mvs[
i] || !
s->ref_scores[
i])
182 static int pix_sum(
const uint8_t * pix,
int line_size,
int w,
int h)
187 for (
i = 0;
i <
h;
i++) {
188 for (j = 0; j <
w; j++) {
192 pix += line_size -
w;
198 static int pix_norm1(
const uint8_t * pix,
int line_size,
int w)
204 for (
i = 0;
i <
w;
i++) {
205 for (j = 0; j <
w; j ++) {
209 pix += line_size -
w;
241 #define P_TOPRIGHT P[3]
242 #define P_MEDIAN P[4]
244 #define FLAG_QPEL 1 //must be 1
247 uint8_t p_buffer[1024];
248 uint8_t i_buffer[1024];
249 uint8_t p_state[
sizeof(
s->block_state)];
250 uint8_t i_state[
sizeof(
s->block_state)];
252 uint8_t *pbbak=
s->c.bytestream;
253 uint8_t *pbbak_start=
s->c.bytestream_start;
254 int score, score2, iscore, i_len, p_len, block_s, sum, base_bits;
255 const int w=
s->b_width <<
s->block_max_depth;
256 const int h=
s->b_height <<
s->block_max_depth;
257 const int rem_depth=
s->block_max_depth -
level;
258 const int index= (x + y*
w) << rem_depth;
260 int trx= (x+1)<<rem_depth;
261 int try= (y+1)<<rem_depth;
268 int pl =
left->color[0];
269 int pcb=
left->color[1];
270 int pcr=
left->color[2];
274 const int stride=
s->current_picture->linesize[0];
275 const int uvstride=
s->current_picture->linesize[1];
276 const uint8_t *
const current_data[3] = {
s->input_picture->data[0] + (x + y*
stride)*block_w,
277 s->input_picture->data[1] + ((x*block_w)>>
s->chroma_h_shift) + ((y*uvstride*block_w)>>
s->chroma_v_shift),
278 s->input_picture->data[2] + ((x*block_w)>>
s->chroma_h_shift) + ((y*uvstride*block_w)>>
s->chroma_v_shift)};
280 int16_t last_mv[3][2];
282 const int shift= 1+qpel;
288 int ref, best_ref, ref_score, ref_mx, ref_my;
292 set_blocks(
s,
level, x, y, pl, pcb, pcr, 0, 0, 0,
BLOCK_INTRA);
305 last_mv[0][0]=
s->block[
index].mx;
306 last_mv[0][1]=
s->block[
index].my;
307 last_mv[1][0]= right->
mx;
308 last_mv[1][1]= right->
my;
309 last_mv[2][0]= bottom->
mx;
310 last_mv[2][1]= bottom->
my;
323 c->current_mv_penalty=
c->mv_penalty[
s->m.f_code=1] +
MAX_DMV;
325 c->xmin = - x*block_w - 16+3;
326 c->ymin = - y*block_w - 16+3;
327 c->xmax = - (x+1)*block_w + (
w<<(
LOG2_MB_SIZE -
s->block_max_depth)) + 16-3;
328 c->ymax = - (y+1)*block_w + (
h<<(
LOG2_MB_SIZE -
s->block_max_depth)) + 16-3;
352 init_ref(
c, current_data,
s->last_picture[
ref]->data,
NULL, block_w*x, block_w*y, 0);
362 ref_score=
c->sub_motion_search(&
s->m, &ref_mx, &ref_my, ref_score, 0, 0,
level-
LOG2_MB_SIZE+4, block_w);
370 if(score > ref_score){
380 base_bits=
get_rac_count(&
s->c) - 8*(
s->c.bytestream -
s->c.bytestream_start);
383 pc.bytestream= p_buffer;
384 memcpy(p_state,
s->block_state,
sizeof(
s->block_state));
386 if(
level!=
s->block_max_depth)
387 put_rac(&pc, &p_state[4 + s_context], 1);
389 if(
s->ref_frames > 1)
390 put_symbol(&pc, &p_state[128 + 1024 + 32*ref_context], best_ref, 0);
392 put_symbol(&pc, &p_state[128 + 32*(mx_context + 16*!!best_ref)], mx - pmx, 1);
393 put_symbol(&pc, &p_state[128 + 32*(my_context + 16*!!best_ref)], my - pmy, 1);
394 p_len= pc.bytestream - pc.bytestream_start;
397 block_s= block_w*block_w;
399 l= (sum + block_s/2)/block_s;
400 iscore =
pix_norm1(current_data[0],
stride, block_w) - 2*l*sum + l*l*block_s;
402 if (
s->nb_planes > 2) {
403 block_s= block_w*block_w>>(
s->chroma_h_shift +
s->chroma_v_shift);
404 sum =
pix_sum(current_data[1], uvstride, block_w>>
s->chroma_h_shift, block_w>>
s->chroma_v_shift);
405 cb= (sum + block_s/2)/block_s;
407 sum =
pix_sum(current_data[2], uvstride, block_w>>
s->chroma_h_shift, block_w>>
s->chroma_v_shift);
408 cr= (sum + block_s/2)/block_s;
415 ic.bytestream= i_buffer;
416 memcpy(i_state,
s->block_state,
sizeof(
s->block_state));
417 if(
level!=
s->block_max_depth)
418 put_rac(&ic, &i_state[4 + s_context], 1);
421 if (
s->nb_planes > 2) {
425 i_len= ic.bytestream - ic.bytestream_start;
428 av_assert1(iscore < 255*255*256 + s->lambda2*10);
434 int varc= iscore >> 8;
435 int vard= score >> 8;
436 if (vard <= 64 || vard < varc)
439 c->scene_change_score+=
s->m.qscale;
442 if(
level!=
s->block_max_depth){
443 put_rac(&
s->c, &
s->block_state[4 + s_context], 0);
450 if(score2 < score && score2 < iscore)
456 memcpy(pbbak, i_buffer, i_len);
458 s->c.bytestream_start= pbbak_start;
459 s->c.bytestream= pbbak + i_len;
460 set_blocks(
s,
level, x, y, l,
cb,
cr, pmx, pmy, 0,
BLOCK_INTRA);
461 memcpy(
s->block_state, i_state,
sizeof(
s->block_state));
464 memcpy(pbbak, p_buffer, p_len);
466 s->c.bytestream_start= pbbak_start;
467 s->c.bytestream= pbbak + p_len;
468 set_blocks(
s,
level, x, y, pl, pcb, pcr, mx, my, best_ref, 0);
469 memcpy(
s->block_state, p_state,
sizeof(
s->block_state));
475 const int w=
s->b_width <<
s->block_max_depth;
476 const int rem_depth=
s->block_max_depth -
level;
477 const int index= (x + y*
w) << rem_depth;
478 int trx= (x+1)<<rem_depth;
484 int pl =
left->color[0];
485 int pcb=
left->color[1];
486 int pcr=
left->color[2];
494 set_blocks(
s,
level, x, y, pl, pcb, pcr, 0, 0, 0,
BLOCK_INTRA);
498 if(
level!=
s->block_max_depth){
500 put_rac(&
s->c, &
s->block_state[4 + s_context], 1);
502 put_rac(&
s->c, &
s->block_state[4 + s_context], 0);
514 if (
s->nb_planes > 2) {
518 set_blocks(
s,
level, x, y,
b->color[0],
b->color[1],
b->color[2], pmx, pmy, 0,
BLOCK_INTRA);
522 if(
s->ref_frames > 1)
523 put_symbol(&
s->c, &
s->block_state[128 + 1024 + 32*ref_context],
b->ref, 0);
524 put_symbol(&
s->c, &
s->block_state[128 + 32*mx_context],
b->mx - pmx, 1);
525 put_symbol(&
s->c, &
s->block_state[128 + 32*my_context],
b->my - pmy, 1);
526 set_blocks(
s,
level, x, y, pl, pcb, pcr,
b->mx,
b->my,
b->ref, 0);
532 Plane *p= &
s->plane[plane_index];
533 const int block_size =
MB_SIZE >>
s->block_max_depth;
534 const int block_w = plane_index ? block_size>>
s->chroma_h_shift : block_size;
535 const int block_h = plane_index ? block_size>>
s->chroma_v_shift : block_size;
537 const int obmc_stride= plane_index ? (2*block_size)>>
s->chroma_h_shift : 2*block_size;
538 const int ref_stride=
s->current_picture->linesize[plane_index];
539 const uint8_t *
src =
s->input_picture->data[plane_index];
540 IDWTELEM *dst= (
IDWTELEM*)
s->m.sc.obmc_scratchpad + plane_index*block_size*block_size*4;
541 const int b_stride =
s->b_width <<
s->block_max_depth;
544 int index= mb_x + mb_y*b_stride;
553 b->color[plane_index]= 0;
554 memset(dst, 0, obmc_stride*obmc_stride*
sizeof(
IDWTELEM));
557 int mb_x2= mb_x + (
i &1) - 1;
558 int mb_y2= mb_y + (
i>>1) - 1;
559 int x= block_w*mb_x2 + block_w/2;
560 int y= block_h*mb_y2 + block_h/2;
563 x, y, block_w, block_h,
w,
h, obmc_stride, ref_stride, obmc_stride, mb_x2, mb_y2, 0, 0, plane_index);
565 for(y2=
FFMAX(y, 0); y2<
FFMIN(
h, y+block_h); y2++){
566 for(x2=
FFMAX(x, 0); x2<
FFMIN(
w, x+block_w); x2++){
567 int index= x2-(block_w*mb_x - block_w/2) + (y2-(block_h*mb_y - block_h/2))*obmc_stride;
568 int obmc_v= obmc[
index];
570 if(y<0) obmc_v += obmc[
index + block_h*obmc_stride];
571 if(x<0) obmc_v += obmc[
index + block_w];
572 if(y+block_h>
h) obmc_v += obmc[
index - block_h*obmc_stride];
573 if(x+block_w>
w) obmc_v += obmc[
index - block_w];
579 aa += obmc_v * obmc_v;
589 const int b_stride =
s->b_width <<
s->block_max_depth;
590 const int b_height =
s->b_height<<
s->block_max_depth;
591 int index= x + y*b_stride;
601 if(x<0 || x>=b_stride || y>=b_height)
627 Plane *p= &
s->plane[plane_index];
628 const int block_size =
MB_SIZE >>
s->block_max_depth;
629 const int block_w = plane_index ? block_size>>
s->chroma_h_shift : block_size;
630 const int block_h = plane_index ? block_size>>
s->chroma_v_shift : block_size;
631 const int obmc_stride= plane_index ? (2*block_size)>>
s->chroma_h_shift : 2*block_size;
632 const int ref_stride=
s->current_picture->linesize[plane_index];
633 uint8_t *dst=
s->current_picture->data[plane_index];
634 const uint8_t *
src =
s->input_picture->data[plane_index];
636 uint8_t *cur =
s->scratchbuf;
637 uint8_t *
tmp =
s->emu_edge_buffer;
638 const int b_stride =
s->b_width <<
s->block_max_depth;
639 const int b_height =
s->b_height<<
s->block_max_depth;
645 int sx= block_w*mb_x - block_w/2;
646 int sy= block_h*mb_y - block_h/2;
647 int x0=
FFMAX(0,-sx);
648 int y0=
FFMAX(0,-sy);
649 int x1=
FFMIN(block_w*2,
w-sx);
650 int y1=
FFMIN(block_h*2,
h-sy);
655 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);
657 for(y=y0; y<y1; y++){
658 const uint8_t *obmc1= obmc_edged[y];
660 uint8_t *cur1 = cur + y*ref_stride;
661 uint8_t *dst1 = dst + sx + (sy+y)*ref_stride;
662 for(x=x0; x<x1; x++){
663 #if FRAC_BITS >= LOG2_OBMC_MAX
669 if(v&(~255)) v= ~(v>>31);
676 && (mb_x == 0 || mb_x == b_stride-1)
677 && (mb_y == 0 || mb_y == b_height-1)){
687 memcpy(dst + sx+x0 + (sy+y)*ref_stride, cur + x0 + y*ref_stride, x1-x0);
698 distortion =
ff_w97_32_c(&
s->m,
src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
700 distortion =
ff_w53_32_c(&
s->m,
src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
704 int off = sx+16*(
i&1) + (sy+16*(
i>>1))*ref_stride;
705 distortion +=
s->mecc.me_cmp[0](&
s->m,
src + off, dst + off, ref_stride, 16);
710 distortion =
s->mecc.me_cmp[0](&
s->m,
src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, block_w*2);
721 if(mb_x == b_stride-2)
724 return distortion + rate*penalty_factor;
729 Plane *p= &
s->plane[plane_index];
730 const int block_size =
MB_SIZE >>
s->block_max_depth;
731 const int block_w = plane_index ? block_size>>
s->chroma_h_shift : block_size;
732 const int block_h = plane_index ? block_size>>
s->chroma_v_shift : block_size;
734 const int obmc_stride= plane_index ? (2*block_size)>>
s->chroma_h_shift : 2*block_size;
735 const int ref_stride=
s->current_picture->linesize[plane_index];
736 uint8_t *dst=
s->current_picture->data[plane_index];
737 const uint8_t *
src =
s->input_picture->data[plane_index];
741 const int b_stride =
s->b_width <<
s->block_max_depth;
751 int mb_x2= mb_x + (
i%3) - 1;
752 int mb_y2= mb_y + (
i/3) - 1;
753 int x= block_w*mb_x2 + block_w/2;
754 int y= block_h*mb_y2 + block_h/2;
757 x, y, block_w, block_h,
w,
h, 0, ref_stride, obmc_stride, mb_x2, mb_y2, 1, 1, plane_index);
760 for(y2= y; y2<0; y2++)
761 memcpy(dst + x + y2*ref_stride,
src + x + y2*ref_stride, block_w);
762 for(y2=
h; y2<y+block_h; y2++)
763 memcpy(dst + x + y2*ref_stride,
src + x + y2*ref_stride, block_w);
765 for(y2= y; y2<y+block_h; y2++)
766 memcpy(dst + x + y2*ref_stride,
src + x + y2*ref_stride, -x);
769 for(y2= y; y2<y+block_h; y2++)
770 memcpy(dst +
w + y2*ref_stride,
src +
w + y2*ref_stride, x+block_w -
w);
774 distortion +=
s->mecc.me_cmp[block_w==8](&
s->m,
src + x + y*ref_stride, dst + x + y*ref_stride, ref_stride, block_h);
788 for(
i=merged?4:0;
i<9;
i++){
789 static const int dxy[9][2] = {{0,0},{1,0},{0,1},{1,1},{2,0},{2,1},{-1,2},{0,2},{1,2}};
793 return distortion + rate*penalty_factor;
797 const int w=
b->width;
798 const int h=
b->height;
803 int *runs =
s->run_buffer;
810 int l=0, lt=0, t=0, rt=0;
832 if(px<b->parent->width && py<b->parent->height)
833 p= parent[px + py*2*
stride];
837 runs[run_index++]=
run;
845 max_index= run_index;
846 runs[run_index++]=
run;
848 run= runs[run_index++];
851 if(run_index <= max_index)
855 if(
s->c.bytestream_end -
s->c.bytestream <
w*40){
861 int l=0, lt=0, t=0, rt=0;
883 if(px<b->parent->width && py<b->parent->height)
884 p= parent[px + py*2*
stride];
892 run= runs[run_index++];
894 if(run_index <= max_index)
904 int l2= 2*
FFABS(l) + (l<0);
924 uint8_t (*obmc_edged)[
MB_SIZE * 2],
int *best_rd)
926 const int b_stride=
s->b_width <<
s->block_max_depth;
934 block->color[0] = p[0];
935 block->color[1] = p[1];
936 block->color[2] = p[2];
939 rd =
get_block_rd(
s, mb_x, mb_y, 0, obmc_edged) +
s->intra_penalty;
954 const int b_stride =
s->b_width <<
s->block_max_depth;
964 value =
s->me_cache_generation + (p0 >> 10) + p1 * (1 << 6) + (
block->ref << 12);
986 const int b_stride=
s->b_width <<
s->block_max_depth;
995 backup[0] =
block[0];
996 backup[1] =
block[1];
997 backup[2] =
block[b_stride];
998 backup[3] =
block[b_stride + 1];
1005 value=
s->me_cache_generation + (p0>>10) + (p1<<6) + (
block->ref<<12);
1023 block[0]= backup[0];
1024 block[1]= backup[1];
1025 block[b_stride]= backup[2];
1026 block[b_stride+1]= backup[3];
1032 int pass, mb_x, mb_y;
1033 const int b_width =
s->b_width <<
s->block_max_depth;
1034 const int b_height=
s->b_height <<
s->block_max_depth;
1035 const int b_stride= b_width;
1040 uint8_t
state[
sizeof(
s->block_state)];
1041 memcpy(
state,
s->block_state,
sizeof(
s->block_state));
1042 for(mb_y= 0; mb_y<
s->b_height; mb_y++)
1043 for(mb_x= 0; mb_x<
s->b_width; mb_x++)
1046 memcpy(
s->block_state,
state,
sizeof(
s->block_state));
1052 for(mb_y= 0; mb_y<b_height; mb_y++){
1053 for(mb_x= 0; mb_x<b_width; mb_x++){
1054 int dia_change,
i, j,
ref;
1055 int best_rd= INT_MAX, ref_rd;
1057 const int index= mb_x + mb_y * b_stride;
1067 const int b_w= (
MB_SIZE >>
s->block_max_depth);
1076 if(!
s->me_cache_generation)
1077 memset(
s->me_cache, 0,
sizeof(
s->me_cache));
1078 s->me_cache_generation += 1<<22;
1083 for (y = 0; y < b_w * 2; y++)
1084 memcpy(obmc_edged[y],
ff_obmc_tab[
s->block_max_depth] + y * b_w * 2, b_w * 2);
1086 for(y=0; y<b_w*2; y++)
1087 memset(obmc_edged[y], obmc_edged[y][0] + obmc_edged[y][b_w-1], b_w);
1088 if(mb_x==b_stride-1)
1089 for(y=0; y<b_w*2; y++)
1090 memset(obmc_edged[y]+b_w, obmc_edged[y][b_w] + obmc_edged[y][b_w*2-1], b_w);
1092 for(x=0; x<b_w*2; x++)
1093 obmc_edged[0][x] += obmc_edged[b_w-1][x];
1094 for(y=1; y<b_w; y++)
1095 memcpy(obmc_edged[y], obmc_edged[0], b_w*2);
1097 if(mb_y==b_height-1){
1098 for(x=0; x<b_w*2; x++)
1099 obmc_edged[b_w*2-1][x] += obmc_edged[b_w][x];
1100 for(y=b_w; y<b_w*2-1; y++)
1101 memcpy(obmc_edged[y], obmc_edged[b_w*2-1], b_w*2);
1106 if(mb_x==0 || mb_y==0 || mb_x==b_width-1 || mb_y==b_height-1){
1107 const uint8_t *
src =
s->input_picture->data[0];
1108 uint8_t *dst=
s->current_picture->data[0];
1109 const int stride=
s->current_picture->linesize[0];
1110 const int block_w=
MB_SIZE >>
s->block_max_depth;
1111 const int block_h=
MB_SIZE >>
s->block_max_depth;
1112 const int sx= block_w*mb_x - block_w/2;
1113 const int sy= block_h*mb_y - block_h/2;
1114 const int w=
s->plane[0].width;
1115 const int h=
s->plane[0].height;
1120 for(y=
h; y<sy+block_h*2; y++)
1123 for(y=sy; y<sy+block_h*2; y++)
1126 if(sx+block_w*2 >
w){
1127 for(y=sy; y<sy+block_h*2; y++)
1133 for(
i=0;
i <
s->nb_planes;
i++)
1146 int16_t (*mvr)[2]= &
s->ref_mvs[
ref][
index];
1155 check_block_inter(
s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], obmc_edged, &best_rd);
1161 check_block_inter(
s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], obmc_edged, &best_rd);
1166 int newx =
block->mx;
1167 int newy =
block->my;
1168 int dia_size =
s->iterative_dia_size ?
s->iterative_dia_size :
FFMAX(
s->avctx->dia_size, 1);
1170 for(
i=0;
i < dia_size;
i++){
1172 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx+4*(
i-j), newy+(4*j), obmc_edged, &best_rd);
1173 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx-4*(
i-j), newy-(4*j), obmc_edged, &best_rd);
1174 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx-(4*j), newy+4*(
i-j), obmc_edged, &best_rd);
1175 dia_change |=
check_block_inter(
s, mb_x, mb_y, newx+(4*j), newy-4*(
i-j), obmc_edged, &best_rd);
1181 static const int square[8][2]= {{+1, 0},{-1, 0},{ 0,+1},{ 0,-1},{+1,+1},{-1,-1},{+1,-1},{-1,+1},};
1188 mvr[0][0]=
block->mx;
1189 mvr[0][1]=
block->my;
1190 if(ref_rd > best_rd){
1217 if(
s->block_max_depth == 1){
1219 for(mb_y= 0; mb_y<b_height; mb_y+=2){
1220 for(mb_x= 0; mb_x<b_width; mb_x+=2){
1222 int best_rd, init_rd;
1223 const int index= mb_x + mb_y * b_stride;
1228 b[2]=
b[0]+b_stride;
1235 if(!
s->me_cache_generation)
1236 memset(
s->me_cache, 0,
sizeof(
s->me_cache));
1237 s->me_cache_generation += 1<<22;
1243 (
b[0]->mx +
b[1]->mx +
b[2]->mx +
b[3]->mx + 2) >> 2,
1244 (
b[0]->my +
b[1]->my +
b[2]->my +
b[3]->my + 2) >> 2, 0, &best_rd);
1250 if(init_rd != best_rd)
1281 const int w=
b->width;
1282 const int h=
b->height;
1285 int x,y, thres1, thres2;
1303 if((
unsigned)(
i+thres1) > thres2){
1323 if((
unsigned)(
i+thres1) > thres2){
1342 const int w=
b->width;
1343 const int h=
b->height;
1364 const int w=
b->width;
1365 const int h=
b->height;
1368 for(y=
h-1; y>=0; y--){
1369 for(x=
w-1; x>=0; x--){
1388 const int w=
b->width;
1389 const int h=
b->height;
1412 int plane_index,
level, orientation;
1414 for(plane_index=0; plane_index<
FFMIN(
s->nb_planes, 2); plane_index++){
1416 for(orientation=
level ? 1:0; orientation<4; orientation++){
1417 if(orientation==2)
continue;
1418 put_symbol(&
s->c,
s->header_state,
s->plane[plane_index].band[
level][orientation].qlog, 1);
1428 memset(kstate,
MID_STATE,
sizeof(kstate));
1431 if(
s->keyframe ||
s->always_reset){
1433 s->last_spatial_decomposition_type=
1437 s->last_block_max_depth= 0;
1438 for(plane_index=0; plane_index<2; plane_index++){
1439 Plane *p= &
s->plane[plane_index];
1447 put_rac(&
s->c,
s->header_state,
s->always_reset);
1448 put_symbol(&
s->c,
s->header_state,
s->temporal_decomposition_type, 0);
1449 put_symbol(&
s->c,
s->header_state,
s->temporal_decomposition_count, 0);
1450 put_symbol(&
s->c,
s->header_state,
s->spatial_decomposition_count, 0);
1452 if (
s->nb_planes > 2) {
1456 put_rac(&
s->c,
s->header_state,
s->spatial_scalability);
1465 for(plane_index=0; plane_index<
FFMIN(
s->nb_planes, 2); plane_index++){
1466 Plane *p= &
s->plane[plane_index];
1471 put_rac(&
s->c,
s->header_state, update_mc);
1473 for(plane_index=0; plane_index<
FFMIN(
s->nb_planes, 2); plane_index++){
1474 Plane *p= &
s->plane[plane_index];
1481 if(
s->last_spatial_decomposition_count !=
s->spatial_decomposition_count){
1483 put_symbol(&
s->c,
s->header_state,
s->spatial_decomposition_count, 0);
1489 put_symbol(&
s->c,
s->header_state,
s->spatial_decomposition_type -
s->last_spatial_decomposition_type, 1);
1491 put_symbol(&
s->c,
s->header_state,
s->mv_scale -
s->last_mv_scale, 1);
1492 put_symbol(&
s->c,
s->header_state,
s->qbias -
s->last_qbias , 1);
1493 put_symbol(&
s->c,
s->header_state,
s->block_max_depth -
s->last_block_max_depth, 1);
1501 for(plane_index=0; plane_index<2; plane_index++){
1502 Plane *p= &
s->plane[plane_index];
1509 s->last_spatial_decomposition_type =
s->spatial_decomposition_type;
1510 s->last_qlog =
s->qlog;
1511 s->last_qbias =
s->qbias;
1512 s->last_mv_scale =
s->mv_scale;
1513 s->last_block_max_depth =
s->block_max_depth;
1514 s->last_spatial_decomposition_count =
s->spatial_decomposition_count;
1527 uint32_t coef_sum= 0;
1528 int level, orientation, delta_qlog;
1531 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1534 const int w=
b->width;
1535 const int h=
b->height;
1539 const int qdiv= (1<<16)/qmul;
1549 coef_sum+=
abs(buf[x+y*
stride]) * qdiv >> 16;
1555 coef_sum = (uint64_t)coef_sum * coef_sum >> 16;
1558 s->m.mb_var_sum = coef_sum;
1559 s->m.mc_mb_var_sum = 0;
1561 s->m.mc_mb_var_sum = coef_sum;
1562 s->m.mb_var_sum = 0;
1570 s->qlog+= delta_qlog;
1577 int level, orientation, x, y;
1581 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1585 memset(
s->spatial_idwt_buffer, 0,
sizeof(*
s->spatial_idwt_buffer)*
width*
height);
1586 ibuf[
b->width/2 +
b->height/2*
b->stride]= 256*16;
1589 for(x=0; x<
width; x++){
1590 int64_t
d=
s->spatial_idwt_buffer[x + y*
width]*16;
1594 if (orientation == 2)
1597 if (orientation != 1)
1605 const AVFrame *pict,
int *got_packet)
1611 const int width=
s->avctx->width;
1612 const int height=
s->avctx->height;
1613 int level, orientation, plane_index,
i, y,
ret;
1614 uint8_t rc_header_bak[
sizeof(
s->header_state)];
1615 uint8_t rc_block_bak[
sizeof(
s->block_state)];
1623 for(
i=0;
i <
s->nb_planes;
i++){
1624 int hshift=
i ?
s->chroma_h_shift : 0;
1625 int vshift=
i ?
s->chroma_v_shift : 0;
1627 memcpy(&
s->input_picture->data[
i][y *
s->input_picture->linesize[
i]],
1630 s->mpvencdsp.draw_edges(
s->input_picture->data[
i],
s->input_picture->linesize[
i],
1637 pic =
s->input_picture;
1666 if (
s->current_picture->data[0]) {
1667 int w =
s->avctx->width;
1668 int h =
s->avctx->height;
1670 s->mpvencdsp.draw_edges(
s->current_picture->data[0],
1671 s->current_picture->linesize[0],
w ,
h ,
1673 if (
s->current_picture->data[2]) {
1674 s->mpvencdsp.draw_edges(
s->current_picture->data[1],
1675 s->current_picture->linesize[1],
w>>
s->chroma_h_shift,
h>>
s->chroma_v_shift,
1677 s->mpvencdsp.draw_edges(
s->current_picture->data[2],
1678 s->current_picture->linesize[2],
w>>
s->chroma_h_shift,
h>>
s->chroma_v_shift,
1689 s->m.current_picture_ptr= &
s->m.current_picture;
1690 s->m.current_picture.f =
s->current_picture;
1691 s->m.current_picture.f->pts = pict->
pts;
1693 int block_width = (
width +15)>>4;
1694 int block_height= (
height+15)>>4;
1695 int stride=
s->current_picture->linesize[0];
1700 s->m.avctx=
s->avctx;
1702 s->m. new_picture =
s->input_picture;
1705 s->m.uvlinesize=
s->current_picture->linesize[1];
1708 s->m.mb_width = block_width;
1709 s->m.mb_height= block_height;
1710 s->m.mb_stride=
s->m.mb_width+1;
1711 s->m.b8_stride= 2*
s->m.mb_width+1;
1714 s->m.motion_est=
s->motion_est;
1715 s->m.me.scene_change_score=0;
1719 s->m.unrestricted_mv= 1;
1721 s->m.lambda =
s->lambda;
1727 s->m.hdsp =
s->hdsp;
1729 s->hdsp =
s->m.hdsp;
1734 memcpy(rc_header_bak,
s->header_state,
sizeof(
s->header_state));
1735 memcpy(rc_block_bak,
s->block_state,
sizeof(
s->block_state));
1740 s->spatial_decomposition_count= 5;
1742 while( !(
width >>(
s->chroma_h_shift +
s->spatial_decomposition_count))
1743 || !(
height>>(
s->chroma_v_shift +
s->spatial_decomposition_count)))
1744 s->spatial_decomposition_count--;
1746 if (
s->spatial_decomposition_count <= 0) {
1756 if(
s->last_spatial_decomposition_count !=
s->spatial_decomposition_count){
1757 for(plane_index=0; plane_index <
s->nb_planes; plane_index++){
1763 s->m.misc_bits = 8*(
s->c.bytestream -
s->c.bytestream_start);
1765 s->m.mv_bits = 8*(
s->c.bytestream -
s->c.bytestream_start) -
s->m.misc_bits;
1767 for(plane_index=0; plane_index < s->nb_planes; plane_index++){
1768 Plane *p= &
s->plane[plane_index];
1774 if (!
s->memc_only) {
1776 if(pict->
data[plane_index])
1787 &&
s->m.me.scene_change_score >
s->scenechange_threshold){
1810 ff_spatial_dwt(
s->spatial_dwt_buffer,
s->temp_dwt_buffer,
w,
h,
w,
s->spatial_decomposition_type,
s->spatial_decomposition_count);
1812 if(
s->pass1_rc && plane_index==0){
1814 if (delta_qlog <= INT_MIN)
1819 memcpy(
s->header_state, rc_header_bak,
sizeof(
s->header_state));
1820 memcpy(
s->block_state, rc_block_bak,
sizeof(
s->block_state));
1827 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1833 if (!
s->no_bitstream)
1842 for(orientation=
level ? 1 : 0; orientation<4; orientation++){
1849 ff_spatial_idwt(
s->spatial_idwt_buffer,
s->temp_idwt_buffer,
w,
h,
w,
s->spatial_decomposition_type,
s->spatial_decomposition_count);
1853 s->spatial_idwt_buffer[y*
w + x] *= 1 <<
FRAC_BITS;
1863 s->current_picture->data[plane_index][y*
s->current_picture->linesize[plane_index] + x]=
1864 pict->
data[plane_index][y*pict->
linesize[plane_index] + x];
1868 memset(
s->spatial_idwt_buffer, 0,
sizeof(
IDWTELEM)*
w*
h);
1875 if(pict->
data[plane_index])
1878 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];
1882 s->avctx->error[plane_index] +=
error;
1883 s->encoding_error[plane_index] =
error;
1893 s->current_picture->pict_type = pic->
pict_type;
1894 s->current_picture->quality = pic->
quality;
1895 s->m.frame_bits = 8*(
s->c.bytestream -
s->c.bytestream_start);
1896 s->m.p_tex_bits =
s->m.frame_bits -
s->m.misc_bits -
s->m.mv_bits;
1897 s->m.current_picture.display_picture_number =
1898 s->m.current_picture.coded_picture_number = avctx->
frame_num;
1899 s->m.current_picture.f->quality = pic->
quality;
1900 s->m.total_bits += 8*(
s->c.bytestream -
s->c.bytestream_start);
1906 s->m.last_pict_type =
s->m.pict_type;
1913 s->current_picture->pict_type);
1938 #define OFFSET(x) offsetof(SnowContext, x)
1939 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1946 {
"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 },
1947 {
"no_bitstream",
"Skip final bitstream writeout.",
OFFSET(no_bitstream),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
1948 {
"intra_penalty",
"Penalty for intra blocks in block decission",
OFFSET(intra_penalty),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VE },
1949 {
"iterative_dia_size",
"Dia size for the iterative ME",
OFFSET(iterative_dia_size),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VE },
1950 {
"sc_threshold",
"Scene change threshold",
OFFSET(scenechange_threshold),
AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX,
VE },
1954 {
"rc_eq",
"Set rate control equation. When computing the expression, besides the standard functions "
1955 "defined in the section 'Expression Evaluation', the following functions are available: "
1956 "bits2qp(bits), qp2bits(qp). Also the following constants are available: iTex pTex tex mv "
1957 "fCode iCount mcVar var isI isP isB avgQP qComp avgIITex avgPITex avgPPTex avgBPTex avgTex.",