]> git.sesse.net Git - ffmpeg/blob - libavcodec/snowenc.c
[PATCH] Fix crash when initializing multi-threaded decoding for corrupted file.
[ffmpeg] / libavcodec / snowenc.c
1 /*
2  * Copyright (C) 2004 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "libavutil/intmath.h"
22 #include "libavutil/log.h"
23 #include "libavutil/opt.h"
24 #include "avcodec.h"
25 #include "dsputil.h"
26 #include "dwt.h"
27 #include "snow.h"
28
29 #include "rangecoder.h"
30 #include "mathops.h"
31
32 #include "mpegvideo.h"
33 #include "h263.h"
34
35 #undef NDEBUG
36 #include <assert.h>
37
38 #define QUANTIZE2 0
39
40 #if QUANTIZE2==1
41 #define Q2_STEP 8
42
43 static void find_sse(SnowContext *s, Plane *p, int *score, int score_stride, IDWTELEM *r0, IDWTELEM *r1, int level, int orientation){
44     SubBand *b= &p->band[level][orientation];
45     int x, y;
46     int xo=0;
47     int yo=0;
48     int step= 1 << (s->spatial_decomposition_count - level);
49
50     if(orientation&1)
51         xo= step>>1;
52     if(orientation&2)
53         yo= step>>1;
54
55     //FIXME bias for nonzero ?
56     //FIXME optimize
57     memset(score, 0, sizeof(*score)*score_stride*((p->height + Q2_STEP-1)/Q2_STEP));
58     for(y=0; y<p->height; y++){
59         for(x=0; x<p->width; x++){
60             int sx= (x-xo + step/2) / step / Q2_STEP;
61             int sy= (y-yo + step/2) / step / Q2_STEP;
62             int v= r0[x + y*p->width] - r1[x + y*p->width];
63             assert(sx>=0 && sy>=0 && sx < score_stride);
64             v= ((v+8)>>4)<<4;
65             score[sx + sy*score_stride] += v*v;
66             assert(score[sx + sy*score_stride] >= 0);
67         }
68     }
69 }
70
71 static void dequantize_all(SnowContext *s, Plane *p, IDWTELEM *buffer, int width, int height){
72     int level, orientation;
73
74     for(level=0; level<s->spatial_decomposition_count; level++){
75         for(orientation=level ? 1 : 0; orientation<4; orientation++){
76             SubBand *b= &p->band[level][orientation];
77             IDWTELEM *dst= buffer + (b->ibuf - s->spatial_idwt_buffer);
78
79             dequantize(s, b, dst, b->stride);
80         }
81     }
82 }
83
84 static void dwt_quantize(SnowContext *s, Plane *p, DWTELEM *buffer, int width, int height, int stride, int type){
85     int level, orientation, ys, xs, x, y, pass;
86     IDWTELEM best_dequant[height * stride];
87     IDWTELEM idwt2_buffer[height * stride];
88     const int score_stride= (width + 10)/Q2_STEP;
89     int best_score[(width + 10)/Q2_STEP * (height + 10)/Q2_STEP]; //FIXME size
90     int score[(width + 10)/Q2_STEP * (height + 10)/Q2_STEP]; //FIXME size
91     int threshold= (s->m.lambda * s->m.lambda) >> 6;
92
93     //FIXME pass the copy cleanly ?
94
95 //    memcpy(dwt_buffer, buffer, height * stride * sizeof(DWTELEM));
96     ff_spatial_dwt(buffer, width, height, stride, type, s->spatial_decomposition_count);
97
98     for(level=0; level<s->spatial_decomposition_count; level++){
99         for(orientation=level ? 1 : 0; orientation<4; orientation++){
100             SubBand *b= &p->band[level][orientation];
101             IDWTELEM *dst= best_dequant + (b->ibuf - s->spatial_idwt_buffer);
102              DWTELEM *src=       buffer + (b-> buf - s->spatial_dwt_buffer);
103             assert(src == b->buf); // code does not depend on this but it is true currently
104
105             quantize(s, b, dst, src, b->stride, s->qbias);
106         }
107     }
108     for(pass=0; pass<1; pass++){
109         if(s->qbias == 0) //keyframe
110             continue;
111         for(level=0; level<s->spatial_decomposition_count; level++){
112             for(orientation=level ? 1 : 0; orientation<4; orientation++){
113                 SubBand *b= &p->band[level][orientation];
114                 IDWTELEM *dst= idwt2_buffer + (b->ibuf - s->spatial_idwt_buffer);
115                 IDWTELEM *best_dst= best_dequant + (b->ibuf - s->spatial_idwt_buffer);
116
117                 for(ys= 0; ys<Q2_STEP; ys++){
118                     for(xs= 0; xs<Q2_STEP; xs++){
119                         memcpy(idwt2_buffer, best_dequant, height * stride * sizeof(IDWTELEM));
120                         dequantize_all(s, p, idwt2_buffer, width, height);
121                         ff_spatial_idwt(idwt2_buffer, width, height, stride, type, s->spatial_decomposition_count);
122                         find_sse(s, p, best_score, score_stride, idwt2_buffer, s->spatial_idwt_buffer, level, orientation);
123                         memcpy(idwt2_buffer, best_dequant, height * stride * sizeof(IDWTELEM));
124                         for(y=ys; y<b->height; y+= Q2_STEP){
125                             for(x=xs; x<b->width; x+= Q2_STEP){
126                                 if(dst[x + y*b->stride]<0) dst[x + y*b->stride]++;
127                                 if(dst[x + y*b->stride]>0) dst[x + y*b->stride]--;
128                                 //FIXME try more than just --
129                             }
130                         }
131                         dequantize_all(s, p, idwt2_buffer, width, height);
132                         ff_spatial_idwt(idwt2_buffer, width, height, stride, type, s->spatial_decomposition_count);
133                         find_sse(s, p, score, score_stride, idwt2_buffer, s->spatial_idwt_buffer, level, orientation);
134                         for(y=ys; y<b->height; y+= Q2_STEP){
135                             for(x=xs; x<b->width; x+= Q2_STEP){
136                                 int score_idx= x/Q2_STEP + (y/Q2_STEP)*score_stride;
137                                 if(score[score_idx] <= best_score[score_idx] + threshold){
138                                     best_score[score_idx]= score[score_idx];
139                                     if(best_dst[x + y*b->stride]<0) best_dst[x + y*b->stride]++;
140                                     if(best_dst[x + y*b->stride]>0) best_dst[x + y*b->stride]--;
141                                     //FIXME copy instead
142                                 }
143                             }
144                         }
145                     }
146                 }
147             }
148         }
149     }
150     memcpy(s->spatial_idwt_buffer, best_dequant, height * stride * sizeof(IDWTELEM)); //FIXME work with that directly instead of copy at the end
151 }
152
153 #endif /* QUANTIZE2==1 */
154
155 #if CONFIG_SNOW_ENCODER
156 static av_cold int encode_init(AVCodecContext *avctx)
157 {
158     SnowContext *s = avctx->priv_data;
159     int plane_index;
160
161     if(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL){
162         av_log(avctx, AV_LOG_ERROR, "This codec is under development, files encoded with it may not be decodable with future versions!!!\n"
163                "Use vstrict=-2 / -strict -2 to use it anyway.\n");
164         return -1;
165     }
166
167     if(avctx->prediction_method == DWT_97
168        && (avctx->flags & CODEC_FLAG_QSCALE)
169        && avctx->global_quality == 0){
170         av_log(avctx, AV_LOG_ERROR, "The 9/7 wavelet is incompatible with lossless mode.\n");
171         return -1;
172     }
173
174     s->spatial_decomposition_type= avctx->prediction_method; //FIXME add decorrelator type r transform_type
175
176     s->mv_scale       = (avctx->flags & CODEC_FLAG_QPEL) ? 2 : 4;
177     s->block_max_depth= (avctx->flags & CODEC_FLAG_4MV ) ? 1 : 0;
178
179     for(plane_index=0; plane_index<3; plane_index++){
180         s->plane[plane_index].diag_mc= 1;
181         s->plane[plane_index].htaps= 6;
182         s->plane[plane_index].hcoeff[0]=  40;
183         s->plane[plane_index].hcoeff[1]= -10;
184         s->plane[plane_index].hcoeff[2]=   2;
185         s->plane[plane_index].fast_mc= 1;
186     }
187
188     ff_snow_common_init(avctx);
189     ff_snow_alloc_blocks(s);
190
191     s->version=0;
192
193     s->m.avctx   = avctx;
194     s->m.flags   = avctx->flags;
195     s->m.bit_rate= avctx->bit_rate;
196
197     s->m.me.temp      =
198     s->m.me.scratchpad= av_mallocz((avctx->width+64)*2*16*2*sizeof(uint8_t));
199     s->m.me.map       = av_mallocz(ME_MAP_SIZE*sizeof(uint32_t));
200     s->m.me.score_map = av_mallocz(ME_MAP_SIZE*sizeof(uint32_t));
201     s->m.obmc_scratchpad= av_mallocz(MB_SIZE*MB_SIZE*12*sizeof(uint32_t));
202     h263_encode_init(&s->m); //mv_penalty
203
204     s->max_ref_frames = FFMAX(FFMIN(avctx->refs, MAX_REF_FRAMES), 1);
205
206     if(avctx->flags&CODEC_FLAG_PASS1){
207         if(!avctx->stats_out)
208             avctx->stats_out = av_mallocz(256);
209     }
210     if((avctx->flags&CODEC_FLAG_PASS2) || !(avctx->flags&CODEC_FLAG_QSCALE)){
211         if(ff_rate_control_init(&s->m) < 0)
212             return -1;
213     }
214     s->pass1_rc= !(avctx->flags & (CODEC_FLAG_QSCALE|CODEC_FLAG_PASS2));
215
216     avctx->coded_frame= &s->current_picture;
217     switch(avctx->pix_fmt){
218 //    case PIX_FMT_YUV444P:
219 //    case PIX_FMT_YUV422P:
220     case PIX_FMT_YUV420P:
221     case PIX_FMT_GRAY8:
222 //    case PIX_FMT_YUV411P:
223 //    case PIX_FMT_YUV410P:
224         s->colorspace_type= 0;
225         break;
226 /*    case PIX_FMT_RGB32:
227         s->colorspace= 1;
228         break;*/
229     default:
230         av_log(avctx, AV_LOG_ERROR, "pixel format not supported\n");
231         return -1;
232     }
233 //    avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift);
234     s->chroma_h_shift= 1;
235     s->chroma_v_shift= 1;
236
237     ff_set_cmp(&s->dsp, s->dsp.me_cmp, s->avctx->me_cmp);
238     ff_set_cmp(&s->dsp, s->dsp.me_sub_cmp, s->avctx->me_sub_cmp);
239
240     s->avctx->get_buffer(s->avctx, &s->input_picture);
241
242     if(s->avctx->me_method == ME_ITER){
243         int i;
244         int size= s->b_width * s->b_height << 2*s->block_max_depth;
245         for(i=0; i<s->max_ref_frames; i++){
246             s->ref_mvs[i]= av_mallocz(size*sizeof(int16_t[2]));
247             s->ref_scores[i]= av_mallocz(size*sizeof(uint32_t));
248         }
249     }
250
251     return 0;
252 }
253
254 //near copy & paste from dsputil, FIXME
255 static int pix_sum(uint8_t * pix, int line_size, int w)
256 {
257     int s, i, j;
258
259     s = 0;
260     for (i = 0; i < w; i++) {
261         for (j = 0; j < w; j++) {
262             s += pix[0];
263             pix ++;
264         }
265         pix += line_size - w;
266     }
267     return s;
268 }
269
270 //near copy & paste from dsputil, FIXME
271 static int pix_norm1(uint8_t * pix, int line_size, int w)
272 {
273     int s, i, j;
274     uint32_t *sq = ff_squareTbl + 256;
275
276     s = 0;
277     for (i = 0; i < w; i++) {
278         for (j = 0; j < w; j ++) {
279             s += sq[pix[0]];
280             pix ++;
281         }
282         pix += line_size - w;
283     }
284     return s;
285 }
286
287 //FIXME copy&paste
288 #define P_LEFT P[1]
289 #define P_TOP P[2]
290 #define P_TOPRIGHT P[3]
291 #define P_MEDIAN P[4]
292 #define P_MV1 P[9]
293 #define FLAG_QPEL   1 //must be 1
294
295 static int encode_q_branch(SnowContext *s, int level, int x, int y){
296     uint8_t p_buffer[1024];
297     uint8_t i_buffer[1024];
298     uint8_t p_state[sizeof(s->block_state)];
299     uint8_t i_state[sizeof(s->block_state)];
300     RangeCoder pc, ic;
301     uint8_t *pbbak= s->c.bytestream;
302     uint8_t *pbbak_start= s->c.bytestream_start;
303     int score, score2, iscore, i_len, p_len, block_s, sum, base_bits;
304     const int w= s->b_width  << s->block_max_depth;
305     const int h= s->b_height << s->block_max_depth;
306     const int rem_depth= s->block_max_depth - level;
307     const int index= (x + y*w) << rem_depth;
308     const int block_w= 1<<(LOG2_MB_SIZE - level);
309     int trx= (x+1)<<rem_depth;
310     int try= (y+1)<<rem_depth;
311     const BlockNode *left  = x ? &s->block[index-1] : &null_block;
312     const BlockNode *top   = y ? &s->block[index-w] : &null_block;
313     const BlockNode *right = trx<w ? &s->block[index+1] : &null_block;
314     const BlockNode *bottom= try<h ? &s->block[index+w] : &null_block;
315     const BlockNode *tl    = y && x ? &s->block[index-w-1] : left;
316     const BlockNode *tr    = y && trx<w && ((x&1)==0 || level==0) ? &s->block[index-w+(1<<rem_depth)] : tl; //FIXME use lt
317     int pl = left->color[0];
318     int pcb= left->color[1];
319     int pcr= left->color[2];
320     int pmx, pmy;
321     int mx=0, my=0;
322     int l,cr,cb;
323     const int stride= s->current_picture.linesize[0];
324     const int uvstride= s->current_picture.linesize[1];
325     uint8_t *current_data[3]= { s->input_picture.data[0] + (x + y*  stride)*block_w,
326                                 s->input_picture.data[1] + (x + y*uvstride)*block_w/2,
327                                 s->input_picture.data[2] + (x + y*uvstride)*block_w/2};
328     int P[10][2];
329     int16_t last_mv[3][2];
330     int qpel= !!(s->avctx->flags & CODEC_FLAG_QPEL); //unused
331     const int shift= 1+qpel;
332     MotionEstContext *c= &s->m.me;
333     int ref_context= av_log2(2*left->ref) + av_log2(2*top->ref);
334     int mx_context= av_log2(2*FFABS(left->mx - top->mx));
335     int my_context= av_log2(2*FFABS(left->my - top->my));
336     int s_context= 2*left->level + 2*top->level + tl->level + tr->level;
337     int ref, best_ref, ref_score, ref_mx, ref_my;
338
339     assert(sizeof(s->block_state) >= 256);
340     if(s->keyframe){
341         set_blocks(s, level, x, y, pl, pcb, pcr, 0, 0, 0, BLOCK_INTRA);
342         return 0;
343     }
344
345 //    clip predictors / edge ?
346
347     P_LEFT[0]= left->mx;
348     P_LEFT[1]= left->my;
349     P_TOP [0]= top->mx;
350     P_TOP [1]= top->my;
351     P_TOPRIGHT[0]= tr->mx;
352     P_TOPRIGHT[1]= tr->my;
353
354     last_mv[0][0]= s->block[index].mx;
355     last_mv[0][1]= s->block[index].my;
356     last_mv[1][0]= right->mx;
357     last_mv[1][1]= right->my;
358     last_mv[2][0]= bottom->mx;
359     last_mv[2][1]= bottom->my;
360
361     s->m.mb_stride=2;
362     s->m.mb_x=
363     s->m.mb_y= 0;
364     c->skip= 0;
365
366     assert(c->  stride ==   stride);
367     assert(c->uvstride == uvstride);
368
369     c->penalty_factor    = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_cmp);
370     c->sub_penalty_factor= get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_sub_cmp);
371     c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp);
372     c->current_mv_penalty= c->mv_penalty[s->m.f_code=1] + MAX_MV;
373
374     c->xmin = - x*block_w - 16+3;
375     c->ymin = - y*block_w - 16+3;
376     c->xmax = - (x+1)*block_w + (w<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
377     c->ymax = - (y+1)*block_w + (h<<(LOG2_MB_SIZE - s->block_max_depth)) + 16-3;
378
379     if(P_LEFT[0]     > (c->xmax<<shift)) P_LEFT[0]    = (c->xmax<<shift);
380     if(P_LEFT[1]     > (c->ymax<<shift)) P_LEFT[1]    = (c->ymax<<shift);
381     if(P_TOP[0]      > (c->xmax<<shift)) P_TOP[0]     = (c->xmax<<shift);
382     if(P_TOP[1]      > (c->ymax<<shift)) P_TOP[1]     = (c->ymax<<shift);
383     if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift);
384     if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift); //due to pmx no clip
385     if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift);
386
387     P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
388     P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
389
390     if (!y) {
391         c->pred_x= P_LEFT[0];
392         c->pred_y= P_LEFT[1];
393     } else {
394         c->pred_x = P_MEDIAN[0];
395         c->pred_y = P_MEDIAN[1];
396     }
397
398     score= INT_MAX;
399     best_ref= 0;
400     for(ref=0; ref<s->ref_frames; ref++){
401         init_ref(c, current_data, s->last_picture[ref].data, NULL, block_w*x, block_w*y, 0);
402
403         ref_score= ff_epzs_motion_search(&s->m, &ref_mx, &ref_my, P, 0, /*ref_index*/ 0, last_mv,
404                                          (1<<16)>>shift, level-LOG2_MB_SIZE+4, block_w);
405
406         assert(ref_mx >= c->xmin);
407         assert(ref_mx <= c->xmax);
408         assert(ref_my >= c->ymin);
409         assert(ref_my <= c->ymax);
410
411         ref_score= c->sub_motion_search(&s->m, &ref_mx, &ref_my, ref_score, 0, 0, level-LOG2_MB_SIZE+4, block_w);
412         ref_score= ff_get_mb_score(&s->m, ref_mx, ref_my, 0, 0, level-LOG2_MB_SIZE+4, block_w, 0);
413         ref_score+= 2*av_log2(2*ref)*c->penalty_factor;
414         if(s->ref_mvs[ref]){
415             s->ref_mvs[ref][index][0]= ref_mx;
416             s->ref_mvs[ref][index][1]= ref_my;
417             s->ref_scores[ref][index]= ref_score;
418         }
419         if(score > ref_score){
420             score= ref_score;
421             best_ref= ref;
422             mx= ref_mx;
423             my= ref_my;
424         }
425     }
426     //FIXME if mb_cmp != SSE then intra cannot be compared currently and mb_penalty vs. lambda2
427
428   //  subpel search
429     base_bits= get_rac_count(&s->c) - 8*(s->c.bytestream - s->c.bytestream_start);
430     pc= s->c;
431     pc.bytestream_start=
432     pc.bytestream= p_buffer; //FIXME end/start? and at the other stoo
433     memcpy(p_state, s->block_state, sizeof(s->block_state));
434
435     if(level!=s->block_max_depth)
436         put_rac(&pc, &p_state[4 + s_context], 1);
437     put_rac(&pc, &p_state[1 + left->type + top->type], 0);
438     if(s->ref_frames > 1)
439         put_symbol(&pc, &p_state[128 + 1024 + 32*ref_context], best_ref, 0);
440     pred_mv(s, &pmx, &pmy, best_ref, left, top, tr);
441     put_symbol(&pc, &p_state[128 + 32*(mx_context + 16*!!best_ref)], mx - pmx, 1);
442     put_symbol(&pc, &p_state[128 + 32*(my_context + 16*!!best_ref)], my - pmy, 1);
443     p_len= pc.bytestream - pc.bytestream_start;
444     score += (s->lambda2*(get_rac_count(&pc)-base_bits))>>FF_LAMBDA_SHIFT;
445
446     block_s= block_w*block_w;
447     sum = pix_sum(current_data[0], stride, block_w);
448     l= (sum + block_s/2)/block_s;
449     iscore = pix_norm1(current_data[0], stride, block_w) - 2*l*sum + l*l*block_s;
450
451     block_s= block_w*block_w>>2;
452     sum = pix_sum(current_data[1], uvstride, block_w>>1);
453     cb= (sum + block_s/2)/block_s;
454 //    iscore += pix_norm1(&current_mb[1][0], uvstride, block_w>>1) - 2*cb*sum + cb*cb*block_s;
455     sum = pix_sum(current_data[2], uvstride, block_w>>1);
456     cr= (sum + block_s/2)/block_s;
457 //    iscore += pix_norm1(&current_mb[2][0], uvstride, block_w>>1) - 2*cr*sum + cr*cr*block_s;
458
459     ic= s->c;
460     ic.bytestream_start=
461     ic.bytestream= i_buffer; //FIXME end/start? and at the other stoo
462     memcpy(i_state, s->block_state, sizeof(s->block_state));
463     if(level!=s->block_max_depth)
464         put_rac(&ic, &i_state[4 + s_context], 1);
465     put_rac(&ic, &i_state[1 + left->type + top->type], 1);
466     put_symbol(&ic, &i_state[32],  l-pl , 1);
467     put_symbol(&ic, &i_state[64], cb-pcb, 1);
468     put_symbol(&ic, &i_state[96], cr-pcr, 1);
469     i_len= ic.bytestream - ic.bytestream_start;
470     iscore += (s->lambda2*(get_rac_count(&ic)-base_bits))>>FF_LAMBDA_SHIFT;
471
472 //    assert(score==256*256*256*64-1);
473     assert(iscore < 255*255*256 + s->lambda2*10);
474     assert(iscore >= 0);
475     assert(l>=0 && l<=255);
476     assert(pl>=0 && pl<=255);
477
478     if(level==0){
479         int varc= iscore >> 8;
480         int vard= score >> 8;
481         if (vard <= 64 || vard < varc)
482             c->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc);
483         else
484             c->scene_change_score+= s->m.qscale;
485     }
486
487     if(level!=s->block_max_depth){
488         put_rac(&s->c, &s->block_state[4 + s_context], 0);
489         score2 = encode_q_branch(s, level+1, 2*x+0, 2*y+0);
490         score2+= encode_q_branch(s, level+1, 2*x+1, 2*y+0);
491         score2+= encode_q_branch(s, level+1, 2*x+0, 2*y+1);
492         score2+= encode_q_branch(s, level+1, 2*x+1, 2*y+1);
493         score2+= s->lambda2>>FF_LAMBDA_SHIFT; //FIXME exact split overhead
494
495         if(score2 < score && score2 < iscore)
496             return score2;
497     }
498
499     if(iscore < score){
500         pred_mv(s, &pmx, &pmy, 0, left, top, tr);
501         memcpy(pbbak, i_buffer, i_len);
502         s->c= ic;
503         s->c.bytestream_start= pbbak_start;
504         s->c.bytestream= pbbak + i_len;
505         set_blocks(s, level, x, y, l, cb, cr, pmx, pmy, 0, BLOCK_INTRA);
506         memcpy(s->block_state, i_state, sizeof(s->block_state));
507         return iscore;
508     }else{
509         memcpy(pbbak, p_buffer, p_len);
510         s->c= pc;
511         s->c.bytestream_start= pbbak_start;
512         s->c.bytestream= pbbak + p_len;
513         set_blocks(s, level, x, y, pl, pcb, pcr, mx, my, best_ref, 0);
514         memcpy(s->block_state, p_state, sizeof(s->block_state));
515         return score;
516     }
517 }
518
519 static void encode_q_branch2(SnowContext *s, int level, int x, int y){
520     const int w= s->b_width  << s->block_max_depth;
521     const int rem_depth= s->block_max_depth - level;
522     const int index= (x + y*w) << rem_depth;
523     int trx= (x+1)<<rem_depth;
524     BlockNode *b= &s->block[index];
525     const BlockNode *left  = x ? &s->block[index-1] : &null_block;
526     const BlockNode *top   = y ? &s->block[index-w] : &null_block;
527     const BlockNode *tl    = y && x ? &s->block[index-w-1] : left;
528     const BlockNode *tr    = y && trx<w && ((x&1)==0 || level==0) ? &s->block[index-w+(1<<rem_depth)] : tl; //FIXME use lt
529     int pl = left->color[0];
530     int pcb= left->color[1];
531     int pcr= left->color[2];
532     int pmx, pmy;
533     int ref_context= av_log2(2*left->ref) + av_log2(2*top->ref);
534     int mx_context= av_log2(2*FFABS(left->mx - top->mx)) + 16*!!b->ref;
535     int my_context= av_log2(2*FFABS(left->my - top->my)) + 16*!!b->ref;
536     int s_context= 2*left->level + 2*top->level + tl->level + tr->level;
537
538     if(s->keyframe){
539         set_blocks(s, level, x, y, pl, pcb, pcr, 0, 0, 0, BLOCK_INTRA);
540         return;
541     }
542
543     if(level!=s->block_max_depth){
544         if(same_block(b,b+1) && same_block(b,b+w) && same_block(b,b+w+1)){
545             put_rac(&s->c, &s->block_state[4 + s_context], 1);
546         }else{
547             put_rac(&s->c, &s->block_state[4 + s_context], 0);
548             encode_q_branch2(s, level+1, 2*x+0, 2*y+0);
549             encode_q_branch2(s, level+1, 2*x+1, 2*y+0);
550             encode_q_branch2(s, level+1, 2*x+0, 2*y+1);
551             encode_q_branch2(s, level+1, 2*x+1, 2*y+1);
552             return;
553         }
554     }
555     if(b->type & BLOCK_INTRA){
556         pred_mv(s, &pmx, &pmy, 0, left, top, tr);
557         put_rac(&s->c, &s->block_state[1 + (left->type&1) + (top->type&1)], 1);
558         put_symbol(&s->c, &s->block_state[32], b->color[0]-pl , 1);
559         put_symbol(&s->c, &s->block_state[64], b->color[1]-pcb, 1);
560         put_symbol(&s->c, &s->block_state[96], b->color[2]-pcr, 1);
561         set_blocks(s, level, x, y, b->color[0], b->color[1], b->color[2], pmx, pmy, 0, BLOCK_INTRA);
562     }else{
563         pred_mv(s, &pmx, &pmy, b->ref, left, top, tr);
564         put_rac(&s->c, &s->block_state[1 + (left->type&1) + (top->type&1)], 0);
565         if(s->ref_frames > 1)
566             put_symbol(&s->c, &s->block_state[128 + 1024 + 32*ref_context], b->ref, 0);
567         put_symbol(&s->c, &s->block_state[128 + 32*mx_context], b->mx - pmx, 1);
568         put_symbol(&s->c, &s->block_state[128 + 32*my_context], b->my - pmy, 1);
569         set_blocks(s, level, x, y, pl, pcb, pcr, b->mx, b->my, b->ref, 0);
570     }
571 }
572
573 static int get_dc(SnowContext *s, int mb_x, int mb_y, int plane_index){
574     int i, x2, y2;
575     Plane *p= &s->plane[plane_index];
576     const int block_size = MB_SIZE >> s->block_max_depth;
577     const int block_w    = plane_index ? block_size/2 : block_size;
578     const uint8_t *obmc  = plane_index ? obmc_tab[s->block_max_depth+1] : obmc_tab[s->block_max_depth];
579     const int obmc_stride= plane_index ? block_size : 2*block_size;
580     const int ref_stride= s->current_picture.linesize[plane_index];
581     uint8_t *src= s-> input_picture.data[plane_index];
582     IDWTELEM *dst= (IDWTELEM*)s->m.obmc_scratchpad + plane_index*block_size*block_size*4; //FIXME change to unsigned
583     const int b_stride = s->b_width << s->block_max_depth;
584     const int w= p->width;
585     const int h= p->height;
586     int index= mb_x + mb_y*b_stride;
587     BlockNode *b= &s->block[index];
588     BlockNode backup= *b;
589     int ab=0;
590     int aa=0;
591
592     b->type|= BLOCK_INTRA;
593     b->color[plane_index]= 0;
594     memset(dst, 0, obmc_stride*obmc_stride*sizeof(IDWTELEM));
595
596     for(i=0; i<4; i++){
597         int mb_x2= mb_x + (i &1) - 1;
598         int mb_y2= mb_y + (i>>1) - 1;
599         int x= block_w*mb_x2 + block_w/2;
600         int y= block_w*mb_y2 + block_w/2;
601
602         add_yblock(s, 0, NULL, dst + ((i&1)+(i>>1)*obmc_stride)*block_w, NULL, obmc,
603                     x, y, block_w, block_w, w, h, obmc_stride, ref_stride, obmc_stride, mb_x2, mb_y2, 0, 0, plane_index);
604
605         for(y2= FFMAX(y, 0); y2<FFMIN(h, y+block_w); y2++){
606             for(x2= FFMAX(x, 0); x2<FFMIN(w, x+block_w); x2++){
607                 int index= x2-(block_w*mb_x - block_w/2) + (y2-(block_w*mb_y - block_w/2))*obmc_stride;
608                 int obmc_v= obmc[index];
609                 int d;
610                 if(y<0) obmc_v += obmc[index + block_w*obmc_stride];
611                 if(x<0) obmc_v += obmc[index + block_w];
612                 if(y+block_w>h) obmc_v += obmc[index - block_w*obmc_stride];
613                 if(x+block_w>w) obmc_v += obmc[index - block_w];
614                 //FIXME precalculate this or simplify it somehow else
615
616                 d = -dst[index] + (1<<(FRAC_BITS-1));
617                 dst[index] = d;
618                 ab += (src[x2 + y2*ref_stride] - (d>>FRAC_BITS)) * obmc_v;
619                 aa += obmc_v * obmc_v; //FIXME precalculate this
620             }
621         }
622     }
623     *b= backup;
624
625     return av_clip(((ab<<LOG2_OBMC_MAX) + aa/2)/aa, 0, 255); //FIXME we should not need clipping
626 }
627
628 static inline int get_block_bits(SnowContext *s, int x, int y, int w){
629     const int b_stride = s->b_width << s->block_max_depth;
630     const int b_height = s->b_height<< s->block_max_depth;
631     int index= x + y*b_stride;
632     const BlockNode *b     = &s->block[index];
633     const BlockNode *left  = x ? &s->block[index-1] : &null_block;
634     const BlockNode *top   = y ? &s->block[index-b_stride] : &null_block;
635     const BlockNode *tl    = y && x ? &s->block[index-b_stride-1] : left;
636     const BlockNode *tr    = y && x+w<b_stride ? &s->block[index-b_stride+w] : tl;
637     int dmx, dmy;
638 //  int mx_context= av_log2(2*FFABS(left->mx - top->mx));
639 //  int my_context= av_log2(2*FFABS(left->my - top->my));
640
641     if(x<0 || x>=b_stride || y>=b_height)
642         return 0;
643 /*
644 1            0      0
645 01X          1-2    1
646 001XX        3-6    2-3
647 0001XXX      7-14   4-7
648 00001XXXX   15-30   8-15
649 */
650 //FIXME try accurate rate
651 //FIXME intra and inter predictors if surrounding blocks are not the same type
652     if(b->type & BLOCK_INTRA){
653         return 3+2*( av_log2(2*FFABS(left->color[0] - b->color[0]))
654                    + av_log2(2*FFABS(left->color[1] - b->color[1]))
655                    + av_log2(2*FFABS(left->color[2] - b->color[2])));
656     }else{
657         pred_mv(s, &dmx, &dmy, b->ref, left, top, tr);
658         dmx-= b->mx;
659         dmy-= b->my;
660         return 2*(1 + av_log2(2*FFABS(dmx)) //FIXME kill the 2* can be merged in lambda
661                     + av_log2(2*FFABS(dmy))
662                     + av_log2(2*b->ref));
663     }
664 }
665
666 static int get_block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index, const uint8_t *obmc_edged){
667     Plane *p= &s->plane[plane_index];
668     const int block_size = MB_SIZE >> s->block_max_depth;
669     const int block_w    = plane_index ? block_size/2 : block_size;
670     const int obmc_stride= plane_index ? block_size : 2*block_size;
671     const int ref_stride= s->current_picture.linesize[plane_index];
672     uint8_t *dst= s->current_picture.data[plane_index];
673     uint8_t *src= s->  input_picture.data[plane_index];
674     IDWTELEM *pred= (IDWTELEM*)s->m.obmc_scratchpad + plane_index*block_size*block_size*4;
675     uint8_t *cur = s->scratchbuf;
676     uint8_t tmp[ref_stride*(2*MB_SIZE+HTAPS_MAX-1)];
677     const int b_stride = s->b_width << s->block_max_depth;
678     const int b_height = s->b_height<< s->block_max_depth;
679     const int w= p->width;
680     const int h= p->height;
681     int distortion;
682     int rate= 0;
683     const int penalty_factor= get_penalty_factor(s->lambda, s->lambda2, s->avctx->me_cmp);
684     int sx= block_w*mb_x - block_w/2;
685     int sy= block_w*mb_y - block_w/2;
686     int x0= FFMAX(0,-sx);
687     int y0= FFMAX(0,-sy);
688     int x1= FFMIN(block_w*2, w-sx);
689     int y1= FFMIN(block_w*2, h-sy);
690     int i,x,y;
691
692     ff_snow_pred_block(s, cur, tmp, ref_stride, sx, sy, block_w*2, block_w*2, &s->block[mb_x + mb_y*b_stride], plane_index, w, h);
693
694     for(y=y0; y<y1; y++){
695         const uint8_t *obmc1= obmc_edged + y*obmc_stride;
696         const IDWTELEM *pred1 = pred + y*obmc_stride;
697         uint8_t *cur1 = cur + y*ref_stride;
698         uint8_t *dst1 = dst + sx + (sy+y)*ref_stride;
699         for(x=x0; x<x1; x++){
700 #if FRAC_BITS >= LOG2_OBMC_MAX
701             int v = (cur1[x] * obmc1[x]) << (FRAC_BITS - LOG2_OBMC_MAX);
702 #else
703             int v = (cur1[x] * obmc1[x] + (1<<(LOG2_OBMC_MAX - FRAC_BITS-1))) >> (LOG2_OBMC_MAX - FRAC_BITS);
704 #endif
705             v = (v + pred1[x]) >> FRAC_BITS;
706             if(v&(~255)) v= ~(v>>31);
707             dst1[x] = v;
708         }
709     }
710
711     /* copy the regions where obmc[] = (uint8_t)256 */
712     if(LOG2_OBMC_MAX == 8
713         && (mb_x == 0 || mb_x == b_stride-1)
714         && (mb_y == 0 || mb_y == b_height-1)){
715         if(mb_x == 0)
716             x1 = block_w;
717         else
718             x0 = block_w;
719         if(mb_y == 0)
720             y1 = block_w;
721         else
722             y0 = block_w;
723         for(y=y0; y<y1; y++)
724             memcpy(dst + sx+x0 + (sy+y)*ref_stride, cur + x0 + y*ref_stride, x1-x0);
725     }
726
727     if(block_w==16){
728         /* FIXME rearrange dsputil to fit 32x32 cmp functions */
729         /* FIXME check alignment of the cmp wavelet vs the encoding wavelet */
730         /* FIXME cmps overlap but do not cover the wavelet's whole support.
731          * So improving the score of one block is not strictly guaranteed
732          * to improve the score of the whole frame, thus iterative motion
733          * estimation does not always converge. */
734         if(s->avctx->me_cmp == FF_CMP_W97)
735             distortion = ff_w97_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
736         else if(s->avctx->me_cmp == FF_CMP_W53)
737             distortion = ff_w53_32_c(&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, 32);
738         else{
739             distortion = 0;
740             for(i=0; i<4; i++){
741                 int off = sx+16*(i&1) + (sy+16*(i>>1))*ref_stride;
742                 distortion += s->dsp.me_cmp[0](&s->m, src + off, dst + off, ref_stride, 16);
743             }
744         }
745     }else{
746         assert(block_w==8);
747         distortion = s->dsp.me_cmp[0](&s->m, src + sx + sy*ref_stride, dst + sx + sy*ref_stride, ref_stride, block_w*2);
748     }
749
750     if(plane_index==0){
751         for(i=0; i<4; i++){
752 /* ..RRr
753  * .RXx.
754  * rxx..
755  */
756             rate += get_block_bits(s, mb_x + (i&1) - (i>>1), mb_y + (i>>1), 1);
757         }
758         if(mb_x == b_stride-2)
759             rate += get_block_bits(s, mb_x + 1, mb_y + 1, 1);
760     }
761     return distortion + rate*penalty_factor;
762 }
763
764 static int get_4block_rd(SnowContext *s, int mb_x, int mb_y, int plane_index){
765     int i, y2;
766     Plane *p= &s->plane[plane_index];
767     const int block_size = MB_SIZE >> s->block_max_depth;
768     const int block_w    = plane_index ? block_size/2 : block_size;
769     const uint8_t *obmc  = plane_index ? obmc_tab[s->block_max_depth+1] : obmc_tab[s->block_max_depth];
770     const int obmc_stride= plane_index ? block_size : 2*block_size;
771     const int ref_stride= s->current_picture.linesize[plane_index];
772     uint8_t *dst= s->current_picture.data[plane_index];
773     uint8_t *src= s-> input_picture.data[plane_index];
774     //FIXME zero_dst is const but add_yblock changes dst if add is 0 (this is never the case for dst=zero_dst
775     // const has only been removed from zero_dst to suppress a warning
776     static IDWTELEM zero_dst[4096]; //FIXME
777     const int b_stride = s->b_width << s->block_max_depth;
778     const int w= p->width;
779     const int h= p->height;
780     int distortion= 0;
781     int rate= 0;
782     const int penalty_factor= get_penalty_factor(s->lambda, s->lambda2, s->avctx->me_cmp);
783
784     for(i=0; i<9; i++){
785         int mb_x2= mb_x + (i%3) - 1;
786         int mb_y2= mb_y + (i/3) - 1;
787         int x= block_w*mb_x2 + block_w/2;
788         int y= block_w*mb_y2 + block_w/2;
789
790         add_yblock(s, 0, NULL, zero_dst, dst, obmc,
791                    x, y, block_w, block_w, w, h, /*dst_stride*/0, ref_stride, obmc_stride, mb_x2, mb_y2, 1, 1, plane_index);
792
793         //FIXME find a cleaner/simpler way to skip the outside stuff
794         for(y2= y; y2<0; y2++)
795             memcpy(dst + x + y2*ref_stride, src + x + y2*ref_stride, block_w);
796         for(y2= h; y2<y+block_w; y2++)
797             memcpy(dst + x + y2*ref_stride, src + x + y2*ref_stride, block_w);
798         if(x<0){
799             for(y2= y; y2<y+block_w; y2++)
800                 memcpy(dst + x + y2*ref_stride, src + x + y2*ref_stride, -x);
801         }
802         if(x+block_w > w){
803             for(y2= y; y2<y+block_w; y2++)
804                 memcpy(dst + w + y2*ref_stride, src + w + y2*ref_stride, x+block_w - w);
805         }
806
807         assert(block_w== 8 || block_w==16);
808         distortion += s->dsp.me_cmp[block_w==8](&s->m, src + x + y*ref_stride, dst + x + y*ref_stride, ref_stride, block_w);
809     }
810
811     if(plane_index==0){
812         BlockNode *b= &s->block[mb_x+mb_y*b_stride];
813         int merged= same_block(b,b+1) && same_block(b,b+b_stride) && same_block(b,b+b_stride+1);
814
815 /* ..RRRr
816  * .RXXx.
817  * .RXXx.
818  * rxxx.
819  */
820         if(merged)
821             rate = get_block_bits(s, mb_x, mb_y, 2);
822         for(i=merged?4:0; i<9; i++){
823             static const int dxy[9][2] = {{0,0},{1,0},{0,1},{1,1},{2,0},{2,1},{-1,2},{0,2},{1,2}};
824             rate += get_block_bits(s, mb_x + dxy[i][0], mb_y + dxy[i][1], 1);
825         }
826     }
827     return distortion + rate*penalty_factor;
828 }
829
830 static int encode_subband_c0run(SnowContext *s, SubBand *b, IDWTELEM *src, IDWTELEM *parent, int stride, int orientation){
831     const int w= b->width;
832     const int h= b->height;
833     int x, y;
834
835     if(1){
836         int run=0;
837         int runs[w*h];
838         int run_index=0;
839         int max_index;
840
841         for(y=0; y<h; y++){
842             for(x=0; x<w; x++){
843                 int v, p=0;
844                 int /*ll=0, */l=0, lt=0, t=0, rt=0;
845                 v= src[x + y*stride];
846
847                 if(y){
848                     t= src[x + (y-1)*stride];
849                     if(x){
850                         lt= src[x - 1 + (y-1)*stride];
851                     }
852                     if(x + 1 < w){
853                         rt= src[x + 1 + (y-1)*stride];
854                     }
855                 }
856                 if(x){
857                     l= src[x - 1 + y*stride];
858                     /*if(x > 1){
859                         if(orientation==1) ll= src[y + (x-2)*stride];
860                         else               ll= src[x - 2 + y*stride];
861                     }*/
862                 }
863                 if(parent){
864                     int px= x>>1;
865                     int py= y>>1;
866                     if(px<b->parent->width && py<b->parent->height)
867                         p= parent[px + py*2*stride];
868                 }
869                 if(!(/*ll|*/l|lt|t|rt|p)){
870                     if(v){
871                         runs[run_index++]= run;
872                         run=0;
873                     }else{
874                         run++;
875                     }
876                 }
877             }
878         }
879         max_index= run_index;
880         runs[run_index++]= run;
881         run_index=0;
882         run= runs[run_index++];
883
884         put_symbol2(&s->c, b->state[30], max_index, 0);
885         if(run_index <= max_index)
886             put_symbol2(&s->c, b->state[1], run, 3);
887
888         for(y=0; y<h; y++){
889             if(s->c.bytestream_end - s->c.bytestream < w*40){
890                 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
891                 return -1;
892             }
893             for(x=0; x<w; x++){
894                 int v, p=0;
895                 int /*ll=0, */l=0, lt=0, t=0, rt=0;
896                 v= src[x + y*stride];
897
898                 if(y){
899                     t= src[x + (y-1)*stride];
900                     if(x){
901                         lt= src[x - 1 + (y-1)*stride];
902                     }
903                     if(x + 1 < w){
904                         rt= src[x + 1 + (y-1)*stride];
905                     }
906                 }
907                 if(x){
908                     l= src[x - 1 + y*stride];
909                     /*if(x > 1){
910                         if(orientation==1) ll= src[y + (x-2)*stride];
911                         else               ll= src[x - 2 + y*stride];
912                     }*/
913                 }
914                 if(parent){
915                     int px= x>>1;
916                     int py= y>>1;
917                     if(px<b->parent->width && py<b->parent->height)
918                         p= parent[px + py*2*stride];
919                 }
920                 if(/*ll|*/l|lt|t|rt|p){
921                     int context= av_log2(/*FFABS(ll) + */3*FFABS(l) + FFABS(lt) + 2*FFABS(t) + FFABS(rt) + FFABS(p));
922
923                     put_rac(&s->c, &b->state[0][context], !!v);
924                 }else{
925                     if(!run){
926                         run= runs[run_index++];
927
928                         if(run_index <= max_index)
929                             put_symbol2(&s->c, b->state[1], run, 3);
930                         assert(v);
931                     }else{
932                         run--;
933                         assert(!v);
934                     }
935                 }
936                 if(v){
937                     int context= av_log2(/*FFABS(ll) + */3*FFABS(l) + FFABS(lt) + 2*FFABS(t) + FFABS(rt) + FFABS(p));
938                     int l2= 2*FFABS(l) + (l<0);
939                     int t2= 2*FFABS(t) + (t<0);
940
941                     put_symbol2(&s->c, b->state[context + 2], FFABS(v)-1, context-4);
942                     put_rac(&s->c, &b->state[0][16 + 1 + 3 + quant3bA[l2&0xFF] + 3*quant3bA[t2&0xFF]], v<0);
943                 }
944             }
945         }
946     }
947     return 0;
948 }
949
950 static int encode_subband(SnowContext *s, SubBand *b, IDWTELEM *src, IDWTELEM *parent, int stride, int orientation){
951 //    encode_subband_qtree(s, b, src, parent, stride, orientation);
952 //    encode_subband_z0run(s, b, src, parent, stride, orientation);
953     return encode_subband_c0run(s, b, src, parent, stride, orientation);
954 //    encode_subband_dzr(s, b, src, parent, stride, orientation);
955 }
956
957 static av_always_inline int check_block(SnowContext *s, int mb_x, int mb_y, int p[3], int intra, const uint8_t *obmc_edged, int *best_rd){
958     const int b_stride= s->b_width << s->block_max_depth;
959     BlockNode *block= &s->block[mb_x + mb_y * b_stride];
960     BlockNode backup= *block;
961     int rd, index, value;
962
963     assert(mb_x>=0 && mb_y>=0);
964     assert(mb_x<b_stride);
965
966     if(intra){
967         block->color[0] = p[0];
968         block->color[1] = p[1];
969         block->color[2] = p[2];
970         block->type |= BLOCK_INTRA;
971     }else{
972         index= (p[0] + 31*p[1]) & (ME_CACHE_SIZE-1);
973         value= s->me_cache_generation + (p[0]>>10) + (p[1]<<6) + (block->ref<<12);
974         if(s->me_cache[index] == value)
975             return 0;
976         s->me_cache[index]= value;
977
978         block->mx= p[0];
979         block->my= p[1];
980         block->type &= ~BLOCK_INTRA;
981     }
982
983     rd= get_block_rd(s, mb_x, mb_y, 0, obmc_edged);
984
985 //FIXME chroma
986     if(rd < *best_rd){
987         *best_rd= rd;
988         return 1;
989     }else{
990         *block= backup;
991         return 0;
992     }
993 }
994
995 /* special case for int[2] args we discard afterwards,
996  * fixes compilation problem with gcc 2.95 */
997 static av_always_inline int check_block_inter(SnowContext *s, int mb_x, int mb_y, int p0, int p1, const uint8_t *obmc_edged, int *best_rd){
998     int p[2] = {p0, p1};
999     return check_block(s, mb_x, mb_y, p, 0, obmc_edged, best_rd);
1000 }
1001
1002 static av_always_inline int check_4block_inter(SnowContext *s, int mb_x, int mb_y, int p0, int p1, int ref, int *best_rd){
1003     const int b_stride= s->b_width << s->block_max_depth;
1004     BlockNode *block= &s->block[mb_x + mb_y * b_stride];
1005     BlockNode backup[4]= {block[0], block[1], block[b_stride], block[b_stride+1]};
1006     int rd, index, value;
1007
1008     assert(mb_x>=0 && mb_y>=0);
1009     assert(mb_x<b_stride);
1010     assert(((mb_x|mb_y)&1) == 0);
1011
1012     index= (p0 + 31*p1) & (ME_CACHE_SIZE-1);
1013     value= s->me_cache_generation + (p0>>10) + (p1<<6) + (block->ref<<12);
1014     if(s->me_cache[index] == value)
1015         return 0;
1016     s->me_cache[index]= value;
1017
1018     block->mx= p0;
1019     block->my= p1;
1020     block->ref= ref;
1021     block->type &= ~BLOCK_INTRA;
1022     block[1]= block[b_stride]= block[b_stride+1]= *block;
1023
1024     rd= get_4block_rd(s, mb_x, mb_y, 0);
1025
1026 //FIXME chroma
1027     if(rd < *best_rd){
1028         *best_rd= rd;
1029         return 1;
1030     }else{
1031         block[0]= backup[0];
1032         block[1]= backup[1];
1033         block[b_stride]= backup[2];
1034         block[b_stride+1]= backup[3];
1035         return 0;
1036     }
1037 }
1038
1039 static void iterative_me(SnowContext *s){
1040     int pass, mb_x, mb_y;
1041     const int b_width = s->b_width  << s->block_max_depth;
1042     const int b_height= s->b_height << s->block_max_depth;
1043     const int b_stride= b_width;
1044     int color[3];
1045
1046     {
1047         RangeCoder r = s->c;
1048         uint8_t state[sizeof(s->block_state)];
1049         memcpy(state, s->block_state, sizeof(s->block_state));
1050         for(mb_y= 0; mb_y<s->b_height; mb_y++)
1051             for(mb_x= 0; mb_x<s->b_width; mb_x++)
1052                 encode_q_branch(s, 0, mb_x, mb_y);
1053         s->c = r;
1054         memcpy(s->block_state, state, sizeof(s->block_state));
1055     }
1056
1057     for(pass=0; pass<25; pass++){
1058         int change= 0;
1059
1060         for(mb_y= 0; mb_y<b_height; mb_y++){
1061             for(mb_x= 0; mb_x<b_width; mb_x++){
1062                 int dia_change, i, j, ref;
1063                 int best_rd= INT_MAX, ref_rd;
1064                 BlockNode backup, ref_b;
1065                 const int index= mb_x + mb_y * b_stride;
1066                 BlockNode *block= &s->block[index];
1067                 BlockNode *tb =                   mb_y            ? &s->block[index-b_stride  ] : NULL;
1068                 BlockNode *lb = mb_x                              ? &s->block[index         -1] : NULL;
1069                 BlockNode *rb = mb_x+1<b_width                    ? &s->block[index         +1] : NULL;
1070                 BlockNode *bb =                   mb_y+1<b_height ? &s->block[index+b_stride  ] : NULL;
1071                 BlockNode *tlb= mb_x           && mb_y            ? &s->block[index-b_stride-1] : NULL;
1072                 BlockNode *trb= mb_x+1<b_width && mb_y            ? &s->block[index-b_stride+1] : NULL;
1073                 BlockNode *blb= mb_x           && mb_y+1<b_height ? &s->block[index+b_stride-1] : NULL;
1074                 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->block[index+b_stride+1] : NULL;
1075                 const int b_w= (MB_SIZE >> s->block_max_depth);
1076                 uint8_t obmc_edged[b_w*2][b_w*2];
1077
1078                 if(pass && (block->type & BLOCK_OPT))
1079                     continue;
1080                 block->type |= BLOCK_OPT;
1081
1082                 backup= *block;
1083
1084                 if(!s->me_cache_generation)
1085                     memset(s->me_cache, 0, sizeof(s->me_cache));
1086                 s->me_cache_generation += 1<<22;
1087
1088                 //FIXME precalculate
1089                 {
1090                     int x, y;
1091                     memcpy(obmc_edged, obmc_tab[s->block_max_depth], b_w*b_w*4);
1092                     if(mb_x==0)
1093                         for(y=0; y<b_w*2; y++)
1094                             memset(obmc_edged[y], obmc_edged[y][0] + obmc_edged[y][b_w-1], b_w);
1095                     if(mb_x==b_stride-1)
1096                         for(y=0; y<b_w*2; y++)
1097                             memset(obmc_edged[y]+b_w, obmc_edged[y][b_w] + obmc_edged[y][b_w*2-1], b_w);
1098                     if(mb_y==0){
1099                         for(x=0; x<b_w*2; x++)
1100                             obmc_edged[0][x] += obmc_edged[b_w-1][x];
1101                         for(y=1; y<b_w; y++)
1102                             memcpy(obmc_edged[y], obmc_edged[0], b_w*2);
1103                     }
1104                     if(mb_y==b_height-1){
1105                         for(x=0; x<b_w*2; x++)
1106                             obmc_edged[b_w*2-1][x] += obmc_edged[b_w][x];
1107                         for(y=b_w; y<b_w*2-1; y++)
1108                             memcpy(obmc_edged[y], obmc_edged[b_w*2-1], b_w*2);
1109                     }
1110                 }
1111
1112                 //skip stuff outside the picture
1113                 if(mb_x==0 || mb_y==0 || mb_x==b_width-1 || mb_y==b_height-1){
1114                     uint8_t *src= s->  input_picture.data[0];
1115                     uint8_t *dst= s->current_picture.data[0];
1116                     const int stride= s->current_picture.linesize[0];
1117                     const int block_w= MB_SIZE >> s->block_max_depth;
1118                     const int sx= block_w*mb_x - block_w/2;
1119                     const int sy= block_w*mb_y - block_w/2;
1120                     const int w= s->plane[0].width;
1121                     const int h= s->plane[0].height;
1122                     int y;
1123
1124                     for(y=sy; y<0; y++)
1125                         memcpy(dst + sx + y*stride, src + sx + y*stride, block_w*2);
1126                     for(y=h; y<sy+block_w*2; y++)
1127                         memcpy(dst + sx + y*stride, src + sx + y*stride, block_w*2);
1128                     if(sx<0){
1129                         for(y=sy; y<sy+block_w*2; y++)
1130                             memcpy(dst + sx + y*stride, src + sx + y*stride, -sx);
1131                     }
1132                     if(sx+block_w*2 > w){
1133                         for(y=sy; y<sy+block_w*2; y++)
1134                             memcpy(dst + w + y*stride, src + w + y*stride, sx+block_w*2 - w);
1135                     }
1136                 }
1137
1138                 // intra(black) = neighbors' contribution to the current block
1139                 for(i=0; i<3; i++)
1140                     color[i]= get_dc(s, mb_x, mb_y, i);
1141
1142                 // get previous score (cannot be cached due to OBMC)
1143                 if(pass > 0 && (block->type&BLOCK_INTRA)){
1144                     int color0[3]= {block->color[0], block->color[1], block->color[2]};
1145                     check_block(s, mb_x, mb_y, color0, 1, *obmc_edged, &best_rd);
1146                 }else
1147                     check_block_inter(s, mb_x, mb_y, block->mx, block->my, *obmc_edged, &best_rd);
1148
1149                 ref_b= *block;
1150                 ref_rd= best_rd;
1151                 for(ref=0; ref < s->ref_frames; ref++){
1152                     int16_t (*mvr)[2]= &s->ref_mvs[ref][index];
1153                     if(s->ref_scores[ref][index] > s->ref_scores[ref_b.ref][index]*3/2) //FIXME tune threshold
1154                         continue;
1155                     block->ref= ref;
1156                     best_rd= INT_MAX;
1157
1158                     check_block_inter(s, mb_x, mb_y, mvr[0][0], mvr[0][1], *obmc_edged, &best_rd);
1159                     check_block_inter(s, mb_x, mb_y, 0, 0, *obmc_edged, &best_rd);
1160                     if(tb)
1161                         check_block_inter(s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], *obmc_edged, &best_rd);
1162                     if(lb)
1163                         check_block_inter(s, mb_x, mb_y, mvr[-1][0], mvr[-1][1], *obmc_edged, &best_rd);
1164                     if(rb)
1165                         check_block_inter(s, mb_x, mb_y, mvr[1][0], mvr[1][1], *obmc_edged, &best_rd);
1166                     if(bb)
1167                         check_block_inter(s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], *obmc_edged, &best_rd);
1168
1169                     /* fullpel ME */
1170                     //FIXME avoid subpel interpolation / round to nearest integer
1171                     do{
1172                         dia_change=0;
1173                         for(i=0; i<FFMAX(s->avctx->dia_size, 1); i++){
1174                             for(j=0; j<i; j++){
1175                                 dia_change |= check_block_inter(s, mb_x, mb_y, block->mx+4*(i-j), block->my+(4*j), *obmc_edged, &best_rd);
1176                                 dia_change |= check_block_inter(s, mb_x, mb_y, block->mx-4*(i-j), block->my-(4*j), *obmc_edged, &best_rd);
1177                                 dia_change |= check_block_inter(s, mb_x, mb_y, block->mx+4*(i-j), block->my-(4*j), *obmc_edged, &best_rd);
1178                                 dia_change |= check_block_inter(s, mb_x, mb_y, block->mx-4*(i-j), block->my+(4*j), *obmc_edged, &best_rd);
1179                             }
1180                         }
1181                     }while(dia_change);
1182                     /* subpel ME */
1183                     do{
1184                         static const int square[8][2]= {{+1, 0},{-1, 0},{ 0,+1},{ 0,-1},{+1,+1},{-1,-1},{+1,-1},{-1,+1},};
1185                         dia_change=0;
1186                         for(i=0; i<8; i++)
1187                             dia_change |= check_block_inter(s, mb_x, mb_y, block->mx+square[i][0], block->my+square[i][1], *obmc_edged, &best_rd);
1188                     }while(dia_change);
1189                     //FIXME or try the standard 2 pass qpel or similar
1190
1191                     mvr[0][0]= block->mx;
1192                     mvr[0][1]= block->my;
1193                     if(ref_rd > best_rd){
1194                         ref_rd= best_rd;
1195                         ref_b= *block;
1196                     }
1197                 }
1198                 best_rd= ref_rd;
1199                 *block= ref_b;
1200                 check_block(s, mb_x, mb_y, color, 1, *obmc_edged, &best_rd);
1201                 //FIXME RD style color selection
1202                 if(!same_block(block, &backup)){
1203                     if(tb ) tb ->type &= ~BLOCK_OPT;
1204                     if(lb ) lb ->type &= ~BLOCK_OPT;
1205                     if(rb ) rb ->type &= ~BLOCK_OPT;
1206                     if(bb ) bb ->type &= ~BLOCK_OPT;
1207                     if(tlb) tlb->type &= ~BLOCK_OPT;
1208                     if(trb) trb->type &= ~BLOCK_OPT;
1209                     if(blb) blb->type &= ~BLOCK_OPT;
1210                     if(brb) brb->type &= ~BLOCK_OPT;
1211                     change ++;
1212                 }
1213             }
1214         }
1215         av_log(s->avctx, AV_LOG_ERROR, "pass:%d changed:%d\n", pass, change);
1216         if(!change)
1217             break;
1218     }
1219
1220     if(s->block_max_depth == 1){
1221         int change= 0;
1222         for(mb_y= 0; mb_y<b_height; mb_y+=2){
1223             for(mb_x= 0; mb_x<b_width; mb_x+=2){
1224                 int i;
1225                 int best_rd, init_rd;
1226                 const int index= mb_x + mb_y * b_stride;
1227                 BlockNode *b[4];
1228
1229                 b[0]= &s->block[index];
1230                 b[1]= b[0]+1;
1231                 b[2]= b[0]+b_stride;
1232                 b[3]= b[2]+1;
1233                 if(same_block(b[0], b[1]) &&
1234                    same_block(b[0], b[2]) &&
1235                    same_block(b[0], b[3]))
1236                     continue;
1237
1238                 if(!s->me_cache_generation)
1239                     memset(s->me_cache, 0, sizeof(s->me_cache));
1240                 s->me_cache_generation += 1<<22;
1241
1242                 init_rd= best_rd= get_4block_rd(s, mb_x, mb_y, 0);
1243
1244                 //FIXME more multiref search?
1245                 check_4block_inter(s, mb_x, mb_y,
1246                                    (b[0]->mx + b[1]->mx + b[2]->mx + b[3]->mx + 2) >> 2,
1247                                    (b[0]->my + b[1]->my + b[2]->my + b[3]->my + 2) >> 2, 0, &best_rd);
1248
1249                 for(i=0; i<4; i++)
1250                     if(!(b[i]->type&BLOCK_INTRA))
1251                         check_4block_inter(s, mb_x, mb_y, b[i]->mx, b[i]->my, b[i]->ref, &best_rd);
1252
1253                 if(init_rd != best_rd)
1254                     change++;
1255             }
1256         }
1257         av_log(s->avctx, AV_LOG_ERROR, "pass:4mv changed:%d\n", change*4);
1258     }
1259 }
1260
1261 static void encode_blocks(SnowContext *s, int search){
1262     int x, y;
1263     int w= s->b_width;
1264     int h= s->b_height;
1265
1266     if(s->avctx->me_method == ME_ITER && !s->keyframe && search)
1267         iterative_me(s);
1268
1269     for(y=0; y<h; y++){
1270         if(s->c.bytestream_end - s->c.bytestream < w*MB_SIZE*MB_SIZE*3){ //FIXME nicer limit
1271             av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
1272             return;
1273         }
1274         for(x=0; x<w; x++){
1275             if(s->avctx->me_method == ME_ITER || !search)
1276                 encode_q_branch2(s, 0, x, y);
1277             else
1278                 encode_q_branch (s, 0, x, y);
1279         }
1280     }
1281 }
1282
1283 static void quantize(SnowContext *s, SubBand *b, IDWTELEM *dst, DWTELEM *src, int stride, int bias){
1284     const int w= b->width;
1285     const int h= b->height;
1286     const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16);
1287     const int qmul= qexp[qlog&(QROOT-1)]<<((qlog>>QSHIFT) + ENCODER_EXTRA_BITS);
1288     int x,y, thres1, thres2;
1289
1290     if(s->qlog == LOSSLESS_QLOG){
1291         for(y=0; y<h; y++)
1292             for(x=0; x<w; x++)
1293                 dst[x + y*stride]= src[x + y*stride];
1294         return;
1295     }
1296
1297     bias= bias ? 0 : (3*qmul)>>3;
1298     thres1= ((qmul - bias)>>QEXPSHIFT) - 1;
1299     thres2= 2*thres1;
1300
1301     if(!bias){
1302         for(y=0; y<h; y++){
1303             for(x=0; x<w; x++){
1304                 int i= src[x + y*stride];
1305
1306                 if((unsigned)(i+thres1) > thres2){
1307                     if(i>=0){
1308                         i<<= QEXPSHIFT;
1309                         i/= qmul; //FIXME optimize
1310                         dst[x + y*stride]=  i;
1311                     }else{
1312                         i= -i;
1313                         i<<= QEXPSHIFT;
1314                         i/= qmul; //FIXME optimize
1315                         dst[x + y*stride]= -i;
1316                     }
1317                 }else
1318                     dst[x + y*stride]= 0;
1319             }
1320         }
1321     }else{
1322         for(y=0; y<h; y++){
1323             for(x=0; x<w; x++){
1324                 int i= src[x + y*stride];
1325
1326                 if((unsigned)(i+thres1) > thres2){
1327                     if(i>=0){
1328                         i<<= QEXPSHIFT;
1329                         i= (i + bias) / qmul; //FIXME optimize
1330                         dst[x + y*stride]=  i;
1331                     }else{
1332                         i= -i;
1333                         i<<= QEXPSHIFT;
1334                         i= (i + bias) / qmul; //FIXME optimize
1335                         dst[x + y*stride]= -i;
1336                     }
1337                 }else
1338                     dst[x + y*stride]= 0;
1339             }
1340         }
1341     }
1342 }
1343
1344 static void dequantize(SnowContext *s, SubBand *b, IDWTELEM *src, int stride){
1345     const int w= b->width;
1346     const int h= b->height;
1347     const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16);
1348     const int qmul= qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
1349     const int qadd= (s->qbias*qmul)>>QBIAS_SHIFT;
1350     int x,y;
1351
1352     if(s->qlog == LOSSLESS_QLOG) return;
1353
1354     for(y=0; y<h; y++){
1355         for(x=0; x<w; x++){
1356             int i= src[x + y*stride];
1357             if(i<0){
1358                 src[x + y*stride]= -((-i*qmul + qadd)>>(QEXPSHIFT)); //FIXME try different bias
1359             }else if(i>0){
1360                 src[x + y*stride]=  (( i*qmul + qadd)>>(QEXPSHIFT));
1361             }
1362         }
1363     }
1364 }
1365
1366 static void decorrelate(SnowContext *s, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median){
1367     const int w= b->width;
1368     const int h= b->height;
1369     int x,y;
1370
1371     for(y=h-1; y>=0; y--){
1372         for(x=w-1; x>=0; x--){
1373             int i= x + y*stride;
1374
1375             if(x){
1376                 if(use_median){
1377                     if(y && x+1<w) src[i] -= mid_pred(src[i - 1], src[i - stride], src[i - stride + 1]);
1378                     else  src[i] -= src[i - 1];
1379                 }else{
1380                     if(y) src[i] -= mid_pred(src[i - 1], src[i - stride], src[i - 1] + src[i - stride] - src[i - 1 - stride]);
1381                     else  src[i] -= src[i - 1];
1382                 }
1383             }else{
1384                 if(y) src[i] -= src[i - stride];
1385             }
1386         }
1387     }
1388 }
1389
1390 static void correlate(SnowContext *s, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median){
1391     const int w= b->width;
1392     const int h= b->height;
1393     int x,y;
1394
1395     for(y=0; y<h; y++){
1396         for(x=0; x<w; x++){
1397             int i= x + y*stride;
1398
1399             if(x){
1400                 if(use_median){
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];
1403                 }else{
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];
1406                 }
1407             }else{
1408                 if(y) src[i] += src[i - stride];
1409             }
1410         }
1411     }
1412 }
1413
1414 static void encode_qlogs(SnowContext *s){
1415     int plane_index, level, orientation;
1416
1417     for(plane_index=0; plane_index<2; plane_index++){
1418         for(level=0; level<s->spatial_decomposition_count; level++){
1419             for(orientation=level ? 1:0; orientation<4; orientation++){
1420                 if(orientation==2) continue;
1421                 put_symbol(&s->c, s->header_state, s->plane[plane_index].band[level][orientation].qlog, 1);
1422             }
1423         }
1424     }
1425 }
1426
1427 static void encode_header(SnowContext *s){
1428     int plane_index, i;
1429     uint8_t kstate[32];
1430
1431     memset(kstate, MID_STATE, sizeof(kstate));
1432
1433     put_rac(&s->c, kstate, s->keyframe);
1434     if(s->keyframe || s->always_reset){
1435         ff_snow_reset_contexts(s);
1436         s->last_spatial_decomposition_type=
1437         s->last_qlog=
1438         s->last_qbias=
1439         s->last_mv_scale=
1440         s->last_block_max_depth= 0;
1441         for(plane_index=0; plane_index<2; plane_index++){
1442             Plane *p= &s->plane[plane_index];
1443             p->last_htaps=0;
1444             p->last_diag_mc=0;
1445             memset(p->last_hcoeff, 0, sizeof(p->last_hcoeff));
1446         }
1447     }
1448     if(s->keyframe){
1449         put_symbol(&s->c, s->header_state, s->version, 0);
1450         put_rac(&s->c, s->header_state, s->always_reset);
1451         put_symbol(&s->c, s->header_state, s->temporal_decomposition_type, 0);
1452         put_symbol(&s->c, s->header_state, s->temporal_decomposition_count, 0);
1453         put_symbol(&s->c, s->header_state, s->spatial_decomposition_count, 0);
1454         put_symbol(&s->c, s->header_state, s->colorspace_type, 0);
1455         put_symbol(&s->c, s->header_state, s->chroma_h_shift, 0);
1456         put_symbol(&s->c, s->header_state, s->chroma_v_shift, 0);
1457         put_rac(&s->c, s->header_state, s->spatial_scalability);
1458 //        put_rac(&s->c, s->header_state, s->rate_scalability);
1459         put_symbol(&s->c, s->header_state, s->max_ref_frames-1, 0);
1460
1461         encode_qlogs(s);
1462     }
1463
1464     if(!s->keyframe){
1465         int update_mc=0;
1466         for(plane_index=0; plane_index<2; plane_index++){
1467             Plane *p= &s->plane[plane_index];
1468             update_mc |= p->last_htaps   != p->htaps;
1469             update_mc |= p->last_diag_mc != p->diag_mc;
1470             update_mc |= !!memcmp(p->last_hcoeff, p->hcoeff, sizeof(p->hcoeff));
1471         }
1472         put_rac(&s->c, s->header_state, update_mc);
1473         if(update_mc){
1474             for(plane_index=0; plane_index<2; plane_index++){
1475                 Plane *p= &s->plane[plane_index];
1476                 put_rac(&s->c, s->header_state, p->diag_mc);
1477                 put_symbol(&s->c, s->header_state, p->htaps/2-1, 0);
1478                 for(i= p->htaps/2; i; i--)
1479                     put_symbol(&s->c, s->header_state, FFABS(p->hcoeff[i]), 0);
1480             }
1481         }
1482         if(s->last_spatial_decomposition_count != s->spatial_decomposition_count){
1483             put_rac(&s->c, s->header_state, 1);
1484             put_symbol(&s->c, s->header_state, s->spatial_decomposition_count, 0);
1485             encode_qlogs(s);
1486         }else
1487             put_rac(&s->c, s->header_state, 0);
1488     }
1489
1490     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->qlog            - s->last_qlog    , 1);
1492     put_symbol(&s->c, s->header_state, s->mv_scale        - s->last_mv_scale, 1);
1493     put_symbol(&s->c, s->header_state, s->qbias           - s->last_qbias   , 1);
1494     put_symbol(&s->c, s->header_state, s->block_max_depth - s->last_block_max_depth, 1);
1495
1496 }
1497
1498 static void update_last_header_values(SnowContext *s){
1499     int plane_index;
1500
1501     if(!s->keyframe){
1502         for(plane_index=0; plane_index<2; plane_index++){
1503             Plane *p= &s->plane[plane_index];
1504             p->last_diag_mc= p->diag_mc;
1505             p->last_htaps  = p->htaps;
1506             memcpy(p->last_hcoeff, p->hcoeff, sizeof(p->hcoeff));
1507         }
1508     }
1509
1510     s->last_spatial_decomposition_type  = s->spatial_decomposition_type;
1511     s->last_qlog                        = s->qlog;
1512     s->last_qbias                       = s->qbias;
1513     s->last_mv_scale                    = s->mv_scale;
1514     s->last_block_max_depth             = s->block_max_depth;
1515     s->last_spatial_decomposition_count = s->spatial_decomposition_count;
1516 }
1517
1518 static int qscale2qlog(int qscale){
1519     return rint(QROOT*log(qscale / (float)FF_QP2LAMBDA)/log(2))
1520            + 61*QROOT/8; ///< 64 > 60
1521 }
1522
1523 static int ratecontrol_1pass(SnowContext *s, AVFrame *pict)
1524 {
1525     /* Estimate the frame's complexity as a sum of weighted dwt coefficients.
1526      * FIXME we know exact mv bits at this point,
1527      * but ratecontrol isn't set up to include them. */
1528     uint32_t coef_sum= 0;
1529     int level, orientation, delta_qlog;
1530
1531     for(level=0; level<s->spatial_decomposition_count; level++){
1532         for(orientation=level ? 1 : 0; orientation<4; orientation++){
1533             SubBand *b= &s->plane[0].band[level][orientation];
1534             IDWTELEM *buf= b->ibuf;
1535             const int w= b->width;
1536             const int h= b->height;
1537             const int stride= b->stride;
1538             const int qlog= av_clip(2*QROOT + b->qlog, 0, QROOT*16);
1539             const int qmul= qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT);
1540             const int qdiv= (1<<16)/qmul;
1541             int x, y;
1542             //FIXME this is ugly
1543             for(y=0; y<h; y++)
1544                 for(x=0; x<w; x++)
1545                     buf[x+y*stride]= b->buf[x+y*stride];
1546             if(orientation==0)
1547                 decorrelate(s, b, buf, stride, 1, 0);
1548             for(y=0; y<h; y++)
1549                 for(x=0; x<w; x++)
1550                     coef_sum+= abs(buf[x+y*stride]) * qdiv >> 16;
1551         }
1552     }
1553
1554     /* ugly, ratecontrol just takes a sqrt again */
1555     coef_sum = (uint64_t)coef_sum * coef_sum >> 16;
1556     assert(coef_sum < INT_MAX);
1557
1558     if(pict->pict_type == AV_PICTURE_TYPE_I){
1559         s->m.current_picture.mb_var_sum= coef_sum;
1560         s->m.current_picture.mc_mb_var_sum= 0;
1561     }else{
1562         s->m.current_picture.mc_mb_var_sum= coef_sum;
1563         s->m.current_picture.mb_var_sum= 0;
1564     }
1565
1566     pict->quality= ff_rate_estimate_qscale(&s->m, 1);
1567     if (pict->quality < 0)
1568         return INT_MIN;
1569     s->lambda= pict->quality * 3/2;
1570     delta_qlog= qscale2qlog(pict->quality) - s->qlog;
1571     s->qlog+= delta_qlog;
1572     return delta_qlog;
1573 }
1574
1575 static void calculate_visual_weight(SnowContext *s, Plane *p){
1576     int width = p->width;
1577     int height= p->height;
1578     int level, orientation, x, y;
1579
1580     for(level=0; level<s->spatial_decomposition_count; level++){
1581         for(orientation=level ? 1 : 0; orientation<4; orientation++){
1582             SubBand *b= &p->band[level][orientation];
1583             IDWTELEM *ibuf= b->ibuf;
1584             int64_t error=0;
1585
1586             memset(s->spatial_idwt_buffer, 0, sizeof(*s->spatial_idwt_buffer)*width*height);
1587             ibuf[b->width/2 + b->height/2*b->stride]= 256*16;
1588             ff_spatial_idwt(s->spatial_idwt_buffer, width, height, width, s->spatial_decomposition_type, s->spatial_decomposition_count);
1589             for(y=0; y<height; y++){
1590                 for(x=0; x<width; x++){
1591                     int64_t d= s->spatial_idwt_buffer[x + y*width]*16;
1592                     error += d*d;
1593                 }
1594             }
1595
1596             b->qlog= (int)(log(352256.0/sqrt(error)) / log(pow(2.0, 1.0/QROOT))+0.5);
1597         }
1598     }
1599 }
1600
1601 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
1602     SnowContext *s = avctx->priv_data;
1603     RangeCoder * const c= &s->c;
1604     AVFrame *pict = data;
1605     const int width= s->avctx->width;
1606     const int height= s->avctx->height;
1607     int level, orientation, plane_index, i, y;
1608     uint8_t rc_header_bak[sizeof(s->header_state)];
1609     uint8_t rc_block_bak[sizeof(s->block_state)];
1610
1611     ff_init_range_encoder(c, buf, buf_size);
1612     ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
1613
1614     for(i=0; i<3; i++){
1615         int shift= !!i;
1616         for(y=0; y<(height>>shift); y++)
1617             memcpy(&s->input_picture.data[i][y * s->input_picture.linesize[i]],
1618                    &pict->data[i][y * pict->linesize[i]],
1619                    width>>shift);
1620     }
1621     s->new_picture = *pict;
1622
1623     s->m.picture_number= avctx->frame_number;
1624     if(avctx->flags&CODEC_FLAG_PASS2){
1625         s->m.pict_type =
1626         pict->pict_type= s->m.rc_context.entry[avctx->frame_number].new_pict_type;
1627         s->keyframe= pict->pict_type==AV_PICTURE_TYPE_I;
1628         if(!(avctx->flags&CODEC_FLAG_QSCALE)) {
1629             pict->quality= ff_rate_estimate_qscale(&s->m, 0);
1630             if (pict->quality < 0)
1631                 return -1;
1632         }
1633     }else{
1634         s->keyframe= avctx->gop_size==0 || avctx->frame_number % avctx->gop_size == 0;
1635         s->m.pict_type=
1636         pict->pict_type= s->keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
1637     }
1638
1639     if(s->pass1_rc && avctx->frame_number == 0)
1640         pict->quality= 2*FF_QP2LAMBDA;
1641     if(pict->quality){
1642         s->qlog= qscale2qlog(pict->quality);
1643         s->lambda = pict->quality * 3/2;
1644     }
1645     if(s->qlog < 0 || (!pict->quality && (avctx->flags & CODEC_FLAG_QSCALE))){
1646         s->qlog= LOSSLESS_QLOG;
1647         s->lambda = 0;
1648     }//else keep previous frame's qlog until after motion estimation
1649
1650     ff_snow_frame_start(s);
1651
1652     s->m.current_picture_ptr= &s->m.current_picture;
1653     s->m.last_picture.f.pts = s->m.current_picture.f.pts;
1654     s->m.current_picture.f.pts = pict->pts;
1655     if(pict->pict_type == AV_PICTURE_TYPE_P){
1656         int block_width = (width +15)>>4;
1657         int block_height= (height+15)>>4;
1658         int stride= s->current_picture.linesize[0];
1659
1660         assert(s->current_picture.data[0]);
1661         assert(s->last_picture[0].data[0]);
1662
1663         s->m.avctx= s->avctx;
1664         s->m.current_picture.f.data[0] = s->current_picture.data[0];
1665         s->m.   last_picture.f.data[0] = s->last_picture[0].data[0];
1666         s->m.    new_picture.f.data[0] = s->  input_picture.data[0];
1667         s->m.   last_picture_ptr= &s->m.   last_picture;
1668         s->m.linesize=
1669         s->m.   last_picture.f.linesize[0] =
1670         s->m.    new_picture.f.linesize[0] =
1671         s->m.current_picture.f.linesize[0] = stride;
1672         s->m.uvlinesize= s->current_picture.linesize[1];
1673         s->m.width = width;
1674         s->m.height= height;
1675         s->m.mb_width = block_width;
1676         s->m.mb_height= block_height;
1677         s->m.mb_stride=   s->m.mb_width+1;
1678         s->m.b8_stride= 2*s->m.mb_width+1;
1679         s->m.f_code=1;
1680         s->m.pict_type= pict->pict_type;
1681         s->m.me_method= s->avctx->me_method;
1682         s->m.me.scene_change_score=0;
1683         s->m.flags= s->avctx->flags;
1684         s->m.quarter_sample= (s->avctx->flags & CODEC_FLAG_QPEL)!=0;
1685         s->m.out_format= FMT_H263;
1686         s->m.unrestricted_mv= 1;
1687
1688         s->m.lambda = s->lambda;
1689         s->m.qscale= (s->m.lambda*139 + FF_LAMBDA_SCALE*64) >> (FF_LAMBDA_SHIFT + 7);
1690         s->lambda2= s->m.lambda2= (s->m.lambda*s->m.lambda + FF_LAMBDA_SCALE/2) >> FF_LAMBDA_SHIFT;
1691
1692         s->m.dsp= s->dsp; //move
1693         ff_init_me(&s->m);
1694         s->dsp= s->m.dsp;
1695     }
1696
1697     if(s->pass1_rc){
1698         memcpy(rc_header_bak, s->header_state, sizeof(s->header_state));
1699         memcpy(rc_block_bak, s->block_state, sizeof(s->block_state));
1700     }
1701
1702 redo_frame:
1703
1704     if(pict->pict_type == AV_PICTURE_TYPE_I)
1705         s->spatial_decomposition_count= 5;
1706     else
1707         s->spatial_decomposition_count= 5;
1708
1709     s->m.pict_type = pict->pict_type;
1710     s->qbias= pict->pict_type == AV_PICTURE_TYPE_P ? 2 : 0;
1711
1712     ff_snow_common_init_after_header(avctx);
1713
1714     if(s->last_spatial_decomposition_count != s->spatial_decomposition_count){
1715         for(plane_index=0; plane_index<3; plane_index++){
1716             calculate_visual_weight(s, &s->plane[plane_index]);
1717         }
1718     }
1719
1720     encode_header(s);
1721     s->m.misc_bits = 8*(s->c.bytestream - s->c.bytestream_start);
1722     encode_blocks(s, 1);
1723     s->m.mv_bits = 8*(s->c.bytestream - s->c.bytestream_start) - s->m.misc_bits;
1724
1725     for(plane_index=0; plane_index<3; plane_index++){
1726         Plane *p= &s->plane[plane_index];
1727         int w= p->width;
1728         int h= p->height;
1729         int x, y;
1730 //        int bits= put_bits_count(&s->c.pb);
1731
1732         if (!s->memc_only) {
1733             //FIXME optimize
1734             if(pict->data[plane_index]) //FIXME gray hack
1735                 for(y=0; y<h; y++){
1736                     for(x=0; x<w; x++){
1737                         s->spatial_idwt_buffer[y*w + x]= pict->data[plane_index][y*pict->linesize[plane_index] + x]<<FRAC_BITS;
1738                     }
1739                 }
1740             predict_plane(s, s->spatial_idwt_buffer, plane_index, 0);
1741
1742             if(   plane_index==0
1743                && pict->pict_type == AV_PICTURE_TYPE_P
1744                && !(avctx->flags&CODEC_FLAG_PASS2)
1745                && s->m.me.scene_change_score > s->avctx->scenechange_threshold){
1746                 ff_init_range_encoder(c, buf, buf_size);
1747                 ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
1748                 pict->pict_type= AV_PICTURE_TYPE_I;
1749                 s->keyframe=1;
1750                 s->current_picture.key_frame=1;
1751                 goto redo_frame;
1752             }
1753
1754             if(s->qlog == LOSSLESS_QLOG){
1755                 for(y=0; y<h; y++){
1756                     for(x=0; x<w; x++){
1757                         s->spatial_dwt_buffer[y*w + x]= (s->spatial_idwt_buffer[y*w + x] + (1<<(FRAC_BITS-1))-1)>>FRAC_BITS;
1758                     }
1759                 }
1760             }else{
1761                 for(y=0; y<h; y++){
1762                     for(x=0; x<w; x++){
1763                         s->spatial_dwt_buffer[y*w + x]=s->spatial_idwt_buffer[y*w + x]<<ENCODER_EXTRA_BITS;
1764                     }
1765                 }
1766             }
1767
1768             /*  if(QUANTIZE2)
1769                 dwt_quantize(s, p, s->spatial_dwt_buffer, w, h, w, s->spatial_decomposition_type);
1770             else*/
1771                 ff_spatial_dwt(s->spatial_dwt_buffer, w, h, w, s->spatial_decomposition_type, s->spatial_decomposition_count);
1772
1773             if(s->pass1_rc && plane_index==0){
1774                 int delta_qlog = ratecontrol_1pass(s, pict);
1775                 if (delta_qlog <= INT_MIN)
1776                     return -1;
1777                 if(delta_qlog){
1778                     //reordering qlog in the bitstream would eliminate this reset
1779                     ff_init_range_encoder(c, buf, buf_size);
1780                     memcpy(s->header_state, rc_header_bak, sizeof(s->header_state));
1781                     memcpy(s->block_state, rc_block_bak, sizeof(s->block_state));
1782                     encode_header(s);
1783                     encode_blocks(s, 0);
1784                 }
1785             }
1786
1787             for(level=0; level<s->spatial_decomposition_count; level++){
1788                 for(orientation=level ? 1 : 0; orientation<4; orientation++){
1789                     SubBand *b= &p->band[level][orientation];
1790
1791                     if(!QUANTIZE2)
1792                         quantize(s, b, b->ibuf, b->buf, b->stride, s->qbias);
1793                     if(orientation==0)
1794                         decorrelate(s, b, b->ibuf, b->stride, pict->pict_type == AV_PICTURE_TYPE_P, 0);
1795                     encode_subband(s, b, b->ibuf, b->parent ? b->parent->ibuf : NULL, b->stride, orientation);
1796                     assert(b->parent==NULL || b->parent->stride == b->stride*2);
1797                     if(orientation==0)
1798                         correlate(s, b, b->ibuf, b->stride, 1, 0);
1799                 }
1800             }
1801
1802             for(level=0; level<s->spatial_decomposition_count; level++){
1803                 for(orientation=level ? 1 : 0; orientation<4; orientation++){
1804                     SubBand *b= &p->band[level][orientation];
1805
1806                     dequantize(s, b, b->ibuf, b->stride);
1807                 }
1808             }
1809
1810             ff_spatial_idwt(s->spatial_idwt_buffer, w, h, w, s->spatial_decomposition_type, s->spatial_decomposition_count);
1811             if(s->qlog == LOSSLESS_QLOG){
1812                 for(y=0; y<h; y++){
1813                     for(x=0; x<w; x++){
1814                         s->spatial_idwt_buffer[y*w + x]<<=FRAC_BITS;
1815                     }
1816                 }
1817             }
1818             predict_plane(s, s->spatial_idwt_buffer, plane_index, 1);
1819         }else{
1820             //ME/MC only
1821             if(pict->pict_type == AV_PICTURE_TYPE_I){
1822                 for(y=0; y<h; y++){
1823                     for(x=0; x<w; x++){
1824                         s->current_picture.data[plane_index][y*s->current_picture.linesize[plane_index] + x]=
1825                             pict->data[plane_index][y*pict->linesize[plane_index] + x];
1826                     }
1827                 }
1828             }else{
1829                 memset(s->spatial_idwt_buffer, 0, sizeof(IDWTELEM)*w*h);
1830                 predict_plane(s, s->spatial_idwt_buffer, plane_index, 1);
1831             }
1832         }
1833         if(s->avctx->flags&CODEC_FLAG_PSNR){
1834             int64_t error= 0;
1835
1836             if(pict->data[plane_index]) //FIXME gray hack
1837                 for(y=0; y<h; y++){
1838                     for(x=0; x<w; x++){
1839                         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];
1840                         error += d*d;
1841                     }
1842                 }
1843             s->avctx->error[plane_index] += error;
1844             s->current_picture.error[plane_index] = error;
1845         }
1846
1847     }
1848
1849     update_last_header_values(s);
1850
1851     ff_snow_release_buffer(avctx);
1852
1853     s->current_picture.coded_picture_number = avctx->frame_number;
1854     s->current_picture.pict_type = pict->pict_type;
1855     s->current_picture.quality = pict->quality;
1856     s->m.frame_bits = 8*(s->c.bytestream - s->c.bytestream_start);
1857     s->m.p_tex_bits = s->m.frame_bits - s->m.misc_bits - s->m.mv_bits;
1858     s->m.current_picture.f.display_picture_number =
1859     s->m.current_picture.f.coded_picture_number   = avctx->frame_number;
1860     s->m.current_picture.f.quality                = pict->quality;
1861     s->m.total_bits += 8*(s->c.bytestream - s->c.bytestream_start);
1862     if(s->pass1_rc)
1863         if (ff_rate_estimate_qscale(&s->m, 0) < 0)
1864             return -1;
1865     if(avctx->flags&CODEC_FLAG_PASS1)
1866         ff_write_pass1_stats(&s->m);
1867     s->m.last_pict_type = s->m.pict_type;
1868     avctx->frame_bits = s->m.frame_bits;
1869     avctx->mv_bits = s->m.mv_bits;
1870     avctx->misc_bits = s->m.misc_bits;
1871     avctx->p_tex_bits = s->m.p_tex_bits;
1872
1873     emms_c();
1874
1875     return ff_rac_terminate(c);
1876 }
1877
1878 static av_cold int encode_end(AVCodecContext *avctx)
1879 {
1880     SnowContext *s = avctx->priv_data;
1881
1882     ff_snow_common_end(s);
1883     if (s->input_picture.data[0])
1884         avctx->release_buffer(avctx, &s->input_picture);
1885     av_free(avctx->stats_out);
1886
1887     return 0;
1888 }
1889
1890 #define OFFSET(x) offsetof(SnowContext, x)
1891 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1892 static const AVOption options[] = {
1893     { "memc_only",      "Only do ME/MC (I frames -> ref, P frame -> ME+MC).",   OFFSET(memc_only), AV_OPT_TYPE_INT, { 0 }, 0, 1, VE },
1894     { NULL },
1895 };
1896
1897 static const AVClass snowenc_class = {
1898     .class_name = "snow encoder",
1899     .item_name  = av_default_item_name,
1900     .option     = options,
1901     .version    = LIBAVUTIL_VERSION_INT,
1902 };
1903
1904 AVCodec ff_snow_encoder = {
1905     .name           = "snow",
1906     .type           = AVMEDIA_TYPE_VIDEO,
1907     .id             = CODEC_ID_SNOW,
1908     .priv_data_size = sizeof(SnowContext),
1909     .init           = encode_init,
1910     .encode         = encode_frame,
1911     .close          = encode_end,
1912     .long_name = NULL_IF_CONFIG_SMALL("Snow"),
1913     .priv_class     = &snowenc_class,
1914 };
1915 #endif