]> git.sesse.net Git - ffmpeg/blob - libavcodec/snow.h
Merge commit '373a6dda5422186bc057297342a9e559a564595e'
[ffmpeg] / libavcodec / snow.h
1 /*
2  * Copyright (C) 2004 Michael Niedermayer <michaelni@gmx.at>
3  * Copyright (C) 2006 Robert Edele <yartrebo@earthlink.net>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #ifndef AVCODEC_SNOW_H
23 #define AVCODEC_SNOW_H
24
25 #include "dsputil.h"
26 #include "hpeldsp.h"
27 #include "qpeldsp.h"
28 #include "snow_dwt.h"
29
30 #include "rangecoder.h"
31 #include "mathops.h"
32 #include "mpegvideo.h"
33 #include "h264qpel.h"
34
35 #define MID_STATE 128
36
37 #define MAX_PLANES 4
38 #define QSHIFT 5
39 #define QROOT (1<<QSHIFT)
40 #define LOSSLESS_QLOG -128
41 #define FRAC_BITS 4
42 #define MAX_REF_FRAMES 8
43
44 #define LOG2_OBMC_MAX 8
45 #define OBMC_MAX (1<<(LOG2_OBMC_MAX))
46 typedef struct BlockNode{
47     int16_t mx;
48     int16_t my;
49     uint8_t ref;
50     uint8_t color[3];
51     uint8_t type;
52 //#define TYPE_SPLIT    1
53 #define BLOCK_INTRA   1
54 #define BLOCK_OPT     2
55 //#define TYPE_NOCOLOR  4
56     uint8_t level; //FIXME merge into type?
57 }BlockNode;
58
59 static const BlockNode null_block= { //FIXME add border maybe
60     .color= {128,128,128},
61     .mx= 0,
62     .my= 0,
63     .ref= 0,
64     .type= 0,
65     .level= 0,
66 };
67
68 #define LOG2_MB_SIZE 4
69 #define MB_SIZE (1<<LOG2_MB_SIZE)
70 #define ENCODER_EXTRA_BITS 4
71 #define HTAPS_MAX 8
72
73 typedef struct x_and_coeff{
74     int16_t x;
75     uint16_t coeff;
76 } x_and_coeff;
77
78 typedef struct SubBand{
79     int level;
80     int stride;
81     int width;
82     int height;
83     int qlog;        ///< log(qscale)/log[2^(1/6)]
84     DWTELEM *buf;
85     IDWTELEM *ibuf;
86     int buf_x_offset;
87     int buf_y_offset;
88     int stride_line; ///< Stride measured in lines, not pixels.
89     x_and_coeff * x_coeff;
90     struct SubBand *parent;
91     uint8_t state[/*7*2*/ 7 + 512][32];
92 }SubBand;
93
94 typedef struct Plane{
95     int width;
96     int height;
97     SubBand band[MAX_DECOMPOSITIONS][4];
98
99     int htaps;
100     int8_t hcoeff[HTAPS_MAX/2];
101     int diag_mc;
102     int fast_mc;
103
104     int last_htaps;
105     int8_t last_hcoeff[HTAPS_MAX/2];
106     int last_diag_mc;
107 }Plane;
108
109 typedef struct SnowContext{
110     AVClass *class;
111     AVCodecContext *avctx;
112     RangeCoder c;
113     DSPContext dsp;
114     HpelDSPContext hdsp;
115     QpelDSPContext qdsp;
116     VideoDSPContext vdsp;
117     H264QpelContext h264qpel;
118     SnowDWTContext dwt;
119     AVFrame *new_picture;
120     AVFrame *input_picture;              ///< new_picture with the internal linesizes
121     AVFrame *current_picture;
122     AVFrame *last_picture[MAX_REF_FRAMES];
123     uint8_t *halfpel_plane[MAX_REF_FRAMES][4][4];
124     AVFrame *mconly_picture;
125 //     uint8_t q_context[16];
126     uint8_t header_state[32];
127     uint8_t block_state[128 + 32*128];
128     int keyframe;
129     int always_reset;
130     int version;
131     int spatial_decomposition_type;
132     int last_spatial_decomposition_type;
133     int temporal_decomposition_type;
134     int spatial_decomposition_count;
135     int last_spatial_decomposition_count;
136     int temporal_decomposition_count;
137     int max_ref_frames;
138     int ref_frames;
139     int16_t (*ref_mvs[MAX_REF_FRAMES])[2];
140     uint32_t *ref_scores[MAX_REF_FRAMES];
141     DWTELEM *spatial_dwt_buffer;
142     DWTELEM *temp_dwt_buffer;
143     IDWTELEM *spatial_idwt_buffer;
144     IDWTELEM *temp_idwt_buffer;
145     int *run_buffer;
146     int colorspace_type;
147     int chroma_h_shift;
148     int chroma_v_shift;
149     int spatial_scalability;
150     int qlog;
151     int last_qlog;
152     int lambda;
153     int lambda2;
154     int pass1_rc;
155     int mv_scale;
156     int last_mv_scale;
157     int qbias;
158     int last_qbias;
159 #define QBIAS_SHIFT 3
160     int b_width;
161     int b_height;
162     int block_max_depth;
163     int last_block_max_depth;
164     int nb_planes;
165     Plane plane[MAX_PLANES];
166     BlockNode *block;
167 #define ME_CACHE_SIZE 1024
168     unsigned me_cache[ME_CACHE_SIZE];
169     unsigned me_cache_generation;
170     slice_buffer sb;
171     int memc_only;
172     int no_bitstream;
173
174     MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to eventually make the motion estimation independent of MpegEncContext, so this will be removed then (FIXME/XXX)
175
176     uint8_t *scratchbuf;
177     uint8_t *emu_edge_buffer;
178 }SnowContext;
179
180 /* Tables */
181 extern const uint8_t * const ff_obmc_tab[4];
182 extern uint8_t ff_qexp[QROOT];
183 extern int ff_scale_mv_ref[MAX_REF_FRAMES][MAX_REF_FRAMES];
184
185 /* C bits used by mmx/sse2/altivec */
186
187 static av_always_inline void snow_interleave_line_header(int * i, int width, IDWTELEM * low, IDWTELEM * high){
188     (*i) = (width) - 2;
189
190     if (width & 1){
191         low[(*i)+1] = low[((*i)+1)>>1];
192         (*i)--;
193     }
194 }
195
196 static av_always_inline void snow_interleave_line_footer(int * i, IDWTELEM * low, IDWTELEM * high){
197     for (; (*i)>=0; (*i)-=2){
198         low[(*i)+1] = high[(*i)>>1];
199         low[*i] = low[(*i)>>1];
200     }
201 }
202
203 static av_always_inline void snow_horizontal_compose_lift_lead_out(int i, IDWTELEM * dst, IDWTELEM * src, IDWTELEM * ref, int width, int w, int lift_high, int mul, int add, int shift){
204     for(; i<w; i++){
205         dst[i] = src[i] - ((mul * (ref[i] + ref[i + 1]) + add) >> shift);
206     }
207
208     if((width^lift_high)&1){
209         dst[w] = src[w] - ((mul * 2 * ref[w] + add) >> shift);
210     }
211 }
212
213 static av_always_inline void snow_horizontal_compose_liftS_lead_out(int i, IDWTELEM * dst, IDWTELEM * src, IDWTELEM * ref, int width, int w){
214         for(; i<w; i++){
215             dst[i] = src[i] + ((ref[i] + ref[(i+1)]+W_BO + 4 * src[i]) >> W_BS);
216         }
217
218         if(width&1){
219             dst[w] = src[w] + ((2 * ref[w] + W_BO + 4 * src[w]) >> W_BS);
220         }
221 }
222
223 /* common code */
224
225 int ff_snow_common_init(AVCodecContext *avctx);
226 int ff_snow_common_init_after_header(AVCodecContext *avctx);
227 void ff_snow_common_end(SnowContext *s);
228 void ff_snow_release_buffer(AVCodecContext *avctx);
229 void ff_snow_reset_contexts(SnowContext *s);
230 int ff_snow_alloc_blocks(SnowContext *s);
231 int ff_snow_frame_start(SnowContext *s);
232 void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, ptrdiff_t stride,
233                      int sx, int sy, int b_w, int b_h, BlockNode *block,
234                      int plane_index, int w, int h);
235 int ff_snow_get_buffer(SnowContext *s, AVFrame *frame);
236 /* common inline functions */
237 //XXX doublecheck all of them should stay inlined
238
239 static inline void snow_set_blocks(SnowContext *s, int level, int x, int y, int l, int cb, int cr, int mx, int my, int ref, int type){
240     const int w= s->b_width << s->block_max_depth;
241     const int rem_depth= s->block_max_depth - level;
242     const int index= (x + y*w) << rem_depth;
243     const int block_w= 1<<rem_depth;
244     BlockNode block;
245     int i,j;
246
247     block.color[0]= l;
248     block.color[1]= cb;
249     block.color[2]= cr;
250     block.mx= mx;
251     block.my= my;
252     block.ref= ref;
253     block.type= type;
254     block.level= level;
255
256     for(j=0; j<block_w; j++){
257         for(i=0; i<block_w; i++){
258             s->block[index + i + j*w]= block;
259         }
260     }
261 }
262
263 static inline void pred_mv(SnowContext *s, int *mx, int *my, int ref,
264                            const BlockNode *left, const BlockNode *top, const BlockNode *tr){
265     if(s->ref_frames == 1){
266         *mx = mid_pred(left->mx, top->mx, tr->mx);
267         *my = mid_pred(left->my, top->my, tr->my);
268     }else{
269         const int *scale = ff_scale_mv_ref[ref];
270         *mx = mid_pred((left->mx * scale[left->ref] + 128) >>8,
271                        (top ->mx * scale[top ->ref] + 128) >>8,
272                        (tr  ->mx * scale[tr  ->ref] + 128) >>8);
273         *my = mid_pred((left->my * scale[left->ref] + 128) >>8,
274                        (top ->my * scale[top ->ref] + 128) >>8,
275                        (tr  ->my * scale[tr  ->ref] + 128) >>8);
276     }
277 }
278
279 static av_always_inline int same_block(BlockNode *a, BlockNode *b){
280     if((a->type&BLOCK_INTRA) && (b->type&BLOCK_INTRA)){
281         return !((a->color[0] - b->color[0]) | (a->color[1] - b->color[1]) | (a->color[2] - b->color[2]));
282     }else{
283         return !((a->mx - b->mx) | (a->my - b->my) | (a->ref - b->ref) | ((a->type ^ b->type)&BLOCK_INTRA));
284     }
285 }
286
287 //FIXME name cleanup (b_w, block_w, b_width stuff)
288 //XXX should we really inline it?
289 static av_always_inline void add_yblock(SnowContext *s, int sliced, slice_buffer *sb, IDWTELEM *dst, uint8_t *dst8, const uint8_t *obmc, int src_x, int src_y, int b_w, int b_h, int w, int h, int dst_stride, int src_stride, int obmc_stride, int b_x, int b_y, int add, int offset_dst, int plane_index){
290     const int b_width = s->b_width  << s->block_max_depth;
291     const int b_height= s->b_height << s->block_max_depth;
292     const int b_stride= b_width;
293     BlockNode *lt= &s->block[b_x + b_y*b_stride];
294     BlockNode *rt= lt+1;
295     BlockNode *lb= lt+b_stride;
296     BlockNode *rb= lb+1;
297     uint8_t *block[4];
298     int tmp_step= src_stride >= 7*MB_SIZE ? MB_SIZE : MB_SIZE*src_stride;
299     uint8_t *tmp = s->scratchbuf;
300     uint8_t *ptmp;
301     int x,y;
302
303     if(b_x<0){
304         lt= rt;
305         lb= rb;
306     }else if(b_x + 1 >= b_width){
307         rt= lt;
308         rb= lb;
309     }
310     if(b_y<0){
311         lt= lb;
312         rt= rb;
313     }else if(b_y + 1 >= b_height){
314         lb= lt;
315         rb= rt;
316     }
317
318     if(src_x<0){ //FIXME merge with prev & always round internal width up to *16
319         obmc -= src_x;
320         b_w += src_x;
321         if(!sliced && !offset_dst)
322             dst -= src_x;
323         src_x=0;
324     }
325     if(src_x + b_w > w){
326         b_w = w - src_x;
327     }
328     if(src_y<0){
329         obmc -= src_y*obmc_stride;
330         b_h += src_y;
331         if(!sliced && !offset_dst)
332             dst -= src_y*dst_stride;
333         src_y=0;
334     }
335     if(src_y + b_h> h){
336         b_h = h - src_y;
337     }
338
339     if(b_w<=0 || b_h<=0) return;
340
341     av_assert2(src_stride > 2*MB_SIZE + 5);
342
343     if(!sliced && offset_dst)
344         dst += src_x + src_y*dst_stride;
345     dst8+= src_x + src_y*src_stride;
346 //    src += src_x + src_y*src_stride;
347
348     ptmp= tmp + 3*tmp_step;
349     block[0]= ptmp;
350     ptmp+=tmp_step;
351     ff_snow_pred_block(s, block[0], tmp, src_stride, src_x, src_y, b_w, b_h, lt, plane_index, w, h);
352
353     if(same_block(lt, rt)){
354         block[1]= block[0];
355     }else{
356         block[1]= ptmp;
357         ptmp+=tmp_step;
358         ff_snow_pred_block(s, block[1], tmp, src_stride, src_x, src_y, b_w, b_h, rt, plane_index, w, h);
359     }
360
361     if(same_block(lt, lb)){
362         block[2]= block[0];
363     }else if(same_block(rt, lb)){
364         block[2]= block[1];
365     }else{
366         block[2]= ptmp;
367         ptmp+=tmp_step;
368         ff_snow_pred_block(s, block[2], tmp, src_stride, src_x, src_y, b_w, b_h, lb, plane_index, w, h);
369     }
370
371     if(same_block(lt, rb) ){
372         block[3]= block[0];
373     }else if(same_block(rt, rb)){
374         block[3]= block[1];
375     }else if(same_block(lb, rb)){
376         block[3]= block[2];
377     }else{
378         block[3]= ptmp;
379         ff_snow_pred_block(s, block[3], tmp, src_stride, src_x, src_y, b_w, b_h, rb, plane_index, w, h);
380     }
381     if(sliced){
382         s->dwt.inner_add_yblock(obmc, obmc_stride, block, b_w, b_h, src_x,src_y, src_stride, sb, add, dst8);
383     }else{
384         for(y=0; y<b_h; y++){
385             //FIXME ugly misuse of obmc_stride
386             const uint8_t *obmc1= obmc + y*obmc_stride;
387             const uint8_t *obmc2= obmc1+ (obmc_stride>>1);
388             const uint8_t *obmc3= obmc1+ obmc_stride*(obmc_stride>>1);
389             const uint8_t *obmc4= obmc3+ (obmc_stride>>1);
390             for(x=0; x<b_w; x++){
391                 int v=   obmc1[x] * block[3][x + y*src_stride]
392                         +obmc2[x] * block[2][x + y*src_stride]
393                         +obmc3[x] * block[1][x + y*src_stride]
394                         +obmc4[x] * block[0][x + y*src_stride];
395
396                 v <<= 8 - LOG2_OBMC_MAX;
397                 if(FRAC_BITS != 8){
398                     v >>= 8 - FRAC_BITS;
399                 }
400                 if(add){
401                     v += dst[x + y*dst_stride];
402                     v = (v + (1<<(FRAC_BITS-1))) >> FRAC_BITS;
403                     if(v&(~255)) v= ~(v>>31);
404                     dst8[x + y*src_stride] = v;
405                 }else{
406                     dst[x + y*dst_stride] -= v;
407                 }
408             }
409         }
410     }
411 }
412
413 static av_always_inline void predict_slice(SnowContext *s, IDWTELEM *buf, int plane_index, int add, int mb_y){
414     Plane *p= &s->plane[plane_index];
415     const int mb_w= s->b_width  << s->block_max_depth;
416     const int mb_h= s->b_height << s->block_max_depth;
417     int x, y, mb_x;
418     int block_size = MB_SIZE >> s->block_max_depth;
419     int block_w    = plane_index ? block_size>>s->chroma_h_shift : block_size;
420     int block_h    = plane_index ? block_size>>s->chroma_v_shift : block_size;
421     const uint8_t *obmc  = plane_index ? ff_obmc_tab[s->block_max_depth+s->chroma_h_shift] : ff_obmc_tab[s->block_max_depth];
422     const int obmc_stride= plane_index ? (2*block_size)>>s->chroma_h_shift : 2*block_size;
423     int ref_stride= s->current_picture->linesize[plane_index];
424     uint8_t *dst8= s->current_picture->data[plane_index];
425     int w= p->width;
426     int h= p->height;
427     av_assert2(s->chroma_h_shift == s->chroma_v_shift); // obmc params assume squares
428     if(s->keyframe || (s->avctx->debug&512)){
429         if(mb_y==mb_h)
430             return;
431
432         if(add){
433             for(y=block_h*mb_y; y<FFMIN(h,block_h*(mb_y+1)); y++){
434                 for(x=0; x<w; x++){
435                     int v= buf[x + y*w] + (128<<FRAC_BITS) + (1<<(FRAC_BITS-1));
436                     v >>= FRAC_BITS;
437                     if(v&(~255)) v= ~(v>>31);
438                     dst8[x + y*ref_stride]= v;
439                 }
440             }
441         }else{
442             for(y=block_h*mb_y; y<FFMIN(h,block_h*(mb_y+1)); y++){
443                 for(x=0; x<w; x++){
444                     buf[x + y*w]-= 128<<FRAC_BITS;
445                 }
446             }
447         }
448
449         return;
450     }
451
452     for(mb_x=0; mb_x<=mb_w; mb_x++){
453         add_yblock(s, 0, NULL, buf, dst8, obmc,
454                    block_w*mb_x - block_w/2,
455                    block_h*mb_y - block_h/2,
456                    block_w, block_h,
457                    w, h,
458                    w, ref_stride, obmc_stride,
459                    mb_x - 1, mb_y - 1,
460                    add, 1, plane_index);
461     }
462 }
463
464 static av_always_inline void predict_plane(SnowContext *s, IDWTELEM *buf, int plane_index, int add){
465     const int mb_h= s->b_height << s->block_max_depth;
466     int mb_y;
467     for(mb_y=0; mb_y<=mb_h; mb_y++)
468         predict_slice(s, buf, plane_index, add, mb_y);
469 }
470
471 static inline void set_blocks(SnowContext *s, int level, int x, int y, int l, int cb, int cr, int mx, int my, int ref, int type){
472     const int w= s->b_width << s->block_max_depth;
473     const int rem_depth= s->block_max_depth - level;
474     const int index= (x + y*w) << rem_depth;
475     const int block_w= 1<<rem_depth;
476     const int block_h= 1<<rem_depth; //FIXME "w!=h"
477     BlockNode block;
478     int i,j;
479
480     block.color[0]= l;
481     block.color[1]= cb;
482     block.color[2]= cr;
483     block.mx= mx;
484     block.my= my;
485     block.ref= ref;
486     block.type= type;
487     block.level= level;
488
489     for(j=0; j<block_h; j++){
490         for(i=0; i<block_w; i++){
491             s->block[index + i + j*w]= block;
492         }
493     }
494 }
495
496 static inline void init_ref(MotionEstContext *c, uint8_t *src[3], uint8_t *ref[3], uint8_t *ref2[3], int x, int y, int ref_index){
497     SnowContext *s = c->avctx->priv_data;
498     const int offset[3]= {
499           y*c->  stride + x,
500         ((y*c->uvstride + x)>>s->chroma_h_shift),
501         ((y*c->uvstride + x)>>s->chroma_h_shift),
502     };
503     int i;
504     for(i=0; i<3; i++){
505         c->src[0][i]= src [i];
506         c->ref[0][i]= ref [i] + offset[i];
507     }
508     av_assert2(!ref_index);
509 }
510
511
512 /* bitstream functions */
513
514 extern const int8_t ff_quant3bA[256];
515
516 #define QEXPSHIFT (7-FRAC_BITS+8) //FIXME try to change this to 0
517
518 static inline void put_symbol(RangeCoder *c, uint8_t *state, int v, int is_signed){
519     int i;
520
521     if(v){
522         const int a= FFABS(v);
523         const int e= av_log2(a);
524         const int el= FFMIN(e, 10);
525         put_rac(c, state+0, 0);
526
527         for(i=0; i<el; i++){
528             put_rac(c, state+1+i, 1);  //1..10
529         }
530         for(; i<e; i++){
531             put_rac(c, state+1+9, 1);  //1..10
532         }
533         put_rac(c, state+1+FFMIN(i,9), 0);
534
535         for(i=e-1; i>=el; i--){
536             put_rac(c, state+22+9, (a>>i)&1); //22..31
537         }
538         for(; i>=0; i--){
539             put_rac(c, state+22+i, (a>>i)&1); //22..31
540         }
541
542         if(is_signed)
543             put_rac(c, state+11 + el, v < 0); //11..21
544     }else{
545         put_rac(c, state+0, 1);
546     }
547 }
548
549 static inline int get_symbol(RangeCoder *c, uint8_t *state, int is_signed){
550     if(get_rac(c, state+0))
551         return 0;
552     else{
553         int i, e, a;
554         e= 0;
555         while(get_rac(c, state+1 + FFMIN(e,9))){ //1..10
556             e++;
557         }
558
559         a= 1;
560         for(i=e-1; i>=0; i--){
561             a += a + get_rac(c, state+22 + FFMIN(i,9)); //22..31
562         }
563
564         e= -(is_signed && get_rac(c, state+11 + FFMIN(e,10))); //11..21
565         return (a^e)-e;
566     }
567 }
568
569 static inline void put_symbol2(RangeCoder *c, uint8_t *state, int v, int log2){
570     int i;
571     int r= log2>=0 ? 1<<log2 : 1;
572
573     av_assert2(v>=0);
574     av_assert2(log2>=-4);
575
576     while(v >= r){
577         put_rac(c, state+4+log2, 1);
578         v -= r;
579         log2++;
580         if(log2>0) r+=r;
581     }
582     put_rac(c, state+4+log2, 0);
583
584     for(i=log2-1; i>=0; i--){
585         put_rac(c, state+31-i, (v>>i)&1);
586     }
587 }
588
589 static inline int get_symbol2(RangeCoder *c, uint8_t *state, int log2){
590     int i;
591     int r= log2>=0 ? 1<<log2 : 1;
592     int v=0;
593
594     av_assert2(log2>=-4);
595
596     while(log2<28 && get_rac(c, state+4+log2)){
597         v+= r;
598         log2++;
599         if(log2>0) r+=r;
600     }
601
602     for(i=log2-1; i>=0; i--){
603         v+= get_rac(c, state+31-i)<<i;
604     }
605
606     return v;
607 }
608
609 static inline void unpack_coeffs(SnowContext *s, SubBand *b, SubBand * parent, int orientation){
610     const int w= b->width;
611     const int h= b->height;
612     int x,y;
613
614     int run, runs;
615     x_and_coeff *xc= b->x_coeff;
616     x_and_coeff *prev_xc= NULL;
617     x_and_coeff *prev2_xc= xc;
618     x_and_coeff *parent_xc= parent ? parent->x_coeff : NULL;
619     x_and_coeff *prev_parent_xc= parent_xc;
620
621     runs= get_symbol2(&s->c, b->state[30], 0);
622     if(runs-- > 0) run= get_symbol2(&s->c, b->state[1], 3);
623     else           run= INT_MAX;
624
625     for(y=0; y<h; y++){
626         int v=0;
627         int lt=0, t=0, rt=0;
628
629         if(y && prev_xc->x == 0){
630             rt= prev_xc->coeff;
631         }
632         for(x=0; x<w; x++){
633             int p=0;
634             const int l= v;
635
636             lt= t; t= rt;
637
638             if(y){
639                 if(prev_xc->x <= x)
640                     prev_xc++;
641                 if(prev_xc->x == x + 1)
642                     rt= prev_xc->coeff;
643                 else
644                     rt=0;
645             }
646             if(parent_xc){
647                 if(x>>1 > parent_xc->x){
648                     parent_xc++;
649                 }
650                 if(x>>1 == parent_xc->x){
651                     p= parent_xc->coeff;
652                 }
653             }
654             if(/*ll|*/l|lt|t|rt|p){
655                 int context= av_log2(/*FFABS(ll) + */3*(l>>1) + (lt>>1) + (t&~1) + (rt>>1) + (p>>1));
656
657                 v=get_rac(&s->c, &b->state[0][context]);
658                 if(v){
659                     v= 2*(get_symbol2(&s->c, b->state[context + 2], context-4) + 1);
660                     v+=get_rac(&s->c, &b->state[0][16 + 1 + 3 + ff_quant3bA[l&0xFF] + 3*ff_quant3bA[t&0xFF]]);
661
662                     xc->x=x;
663                     (xc++)->coeff= v;
664                 }
665             }else{
666                 if(!run){
667                     if(runs-- > 0) run= get_symbol2(&s->c, b->state[1], 3);
668                     else           run= INT_MAX;
669                     v= 2*(get_symbol2(&s->c, b->state[0 + 2], 0-4) + 1);
670                     v+=get_rac(&s->c, &b->state[0][16 + 1 + 3]);
671
672                     xc->x=x;
673                     (xc++)->coeff= v;
674                 }else{
675                     int max_run;
676                     run--;
677                     v=0;
678                     av_assert2(run >= 0);
679                     if(y) max_run= FFMIN(run, prev_xc->x - x - 2);
680                     else  max_run= FFMIN(run, w-x-1);
681                     if(parent_xc)
682                         max_run= FFMIN(max_run, 2*parent_xc->x - x - 1);
683                     av_assert2(max_run >= 0 && max_run <= run);
684
685                     x+= max_run;
686                     run-= max_run;
687                 }
688             }
689         }
690         (xc++)->x= w+1; //end marker
691         prev_xc= prev2_xc;
692         prev2_xc= xc;
693
694         if(parent_xc){
695             if(y&1){
696                 while(parent_xc->x != parent->width+1)
697                     parent_xc++;
698                 parent_xc++;
699                 prev_parent_xc= parent_xc;
700             }else{
701                 parent_xc= prev_parent_xc;
702             }
703         }
704     }
705
706     (xc++)->x= w+1; //end marker
707 }
708
709 #endif /* AVCODEC_SNOW_H */