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