]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
Quote path expression to take care of $(prefix) possibly containing spaces.
[ffmpeg] / libavcodec / h264.c
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20  
21 /**
22  * @file h264.c
23  * H.264 / AVC / MPEG4 part10 codec.
24  * @author Michael Niedermayer <michaelni@gmx.at>
25  */
26
27 #include "common.h"
28 #include "dsputil.h"
29 #include "avcodec.h"
30 #include "mpegvideo.h"
31 #include "h264data.h"
32 #include "golomb.h"
33
34 #include "cabac.h"
35
36 #undef NDEBUG
37 #include <assert.h>
38
39 #define interlaced_dct interlaced_dct_is_a_bad_name
40 #define mb_intra mb_intra_isnt_initalized_see_mb_type
41
42 #define LUMA_DC_BLOCK_INDEX   25
43 #define CHROMA_DC_BLOCK_INDEX 26
44
45 #define CHROMA_DC_COEFF_TOKEN_VLC_BITS 8
46 #define COEFF_TOKEN_VLC_BITS           8
47 #define TOTAL_ZEROS_VLC_BITS           9
48 #define CHROMA_DC_TOTAL_ZEROS_VLC_BITS 3
49 #define RUN_VLC_BITS                   3
50 #define RUN7_VLC_BITS                  6
51
52 #define MAX_SPS_COUNT 32
53 #define MAX_PPS_COUNT 256
54
55 #define MAX_MMCO_COUNT 66
56
57 /**
58  * Sequence parameter set
59  */
60 typedef struct SPS{
61     
62     int profile_idc;
63     int level_idc;
64     int log2_max_frame_num;            ///< log2_max_frame_num_minus4 + 4
65     int poc_type;                      ///< pic_order_cnt_type
66     int log2_max_poc_lsb;              ///< log2_max_pic_order_cnt_lsb_minus4
67     int delta_pic_order_always_zero_flag;
68     int offset_for_non_ref_pic;
69     int offset_for_top_to_bottom_field;
70     int poc_cycle_length;              ///< num_ref_frames_in_pic_order_cnt_cycle
71     int ref_frame_count;               ///< num_ref_frames
72     int gaps_in_frame_num_allowed_flag;
73     int mb_width;                      ///< frame_width_in_mbs_minus1 + 1
74     int mb_height;                     ///< frame_height_in_mbs_minus1 + 1
75     int frame_mbs_only_flag;
76     int mb_aff;                        ///<mb_adaptive_frame_field_flag
77     int direct_8x8_inference_flag;
78     int crop;                   ///< frame_cropping_flag
79     int crop_left;              ///< frame_cropping_rect_left_offset
80     int crop_right;             ///< frame_cropping_rect_right_offset
81     int crop_top;               ///< frame_cropping_rect_top_offset
82     int crop_bottom;            ///< frame_cropping_rect_bottom_offset
83     int vui_parameters_present_flag;
84     AVRational sar;
85     int timing_info_present_flag;
86     uint32_t num_units_in_tick;
87     uint32_t time_scale;
88     int fixed_frame_rate_flag;
89     short offset_for_ref_frame[256]; //FIXME dyn aloc?
90 }SPS;
91
92 /**
93  * Picture parameter set
94  */
95 typedef struct PPS{
96     int sps_id;
97     int cabac;                  ///< entropy_coding_mode_flag
98     int pic_order_present;      ///< pic_order_present_flag
99     int slice_group_count;      ///< num_slice_groups_minus1 + 1
100     int mb_slice_group_map_type;
101     int ref_count[2];           ///< num_ref_idx_l0/1_active_minus1 + 1
102     int weighted_pred;          ///< weighted_pred_flag
103     int weighted_bipred_idc;
104     int init_qp;                ///< pic_init_qp_minus26 + 26
105     int init_qs;                ///< pic_init_qs_minus26 + 26
106     int chroma_qp_index_offset;
107     int deblocking_filter_parameters_present; ///< deblocking_filter_parameters_present_flag
108     int constrained_intra_pred; ///< constrained_intra_pred_flag
109     int redundant_pic_cnt_present; ///< redundant_pic_cnt_present_flag
110 }PPS;
111
112 /**
113  * Memory management control operation opcode.
114  */
115 typedef enum MMCOOpcode{
116     MMCO_END=0,
117     MMCO_SHORT2UNUSED,
118     MMCO_LONG2UNUSED,
119     MMCO_SHORT2LONG,
120     MMCO_SET_MAX_LONG,
121     MMCO_RESET, 
122     MMCO_LONG,
123 } MMCOOpcode;
124
125 /**
126  * Memory management control operation.
127  */
128 typedef struct MMCO{
129     MMCOOpcode opcode;
130     int short_frame_num;
131     int long_index;
132 } MMCO;
133
134 /**
135  * H264Context
136  */
137 typedef struct H264Context{
138     MpegEncContext s;
139     int nal_ref_idc;    
140     int nal_unit_type;
141 #define NAL_SLICE               1
142 #define NAL_DPA                 2
143 #define NAL_DPB                 3
144 #define NAL_DPC                 4
145 #define NAL_IDR_SLICE           5
146 #define NAL_SEI                 6
147 #define NAL_SPS                 7
148 #define NAL_PPS                 8
149 #define NAL_PICTURE_DELIMITER   9
150 #define NAL_FILTER_DATA         10
151     uint8_t *rbsp_buffer;
152     int rbsp_buffer_size;
153
154     /**
155       * Used to parse AVC variant of h264
156       */
157     int is_avc; ///< this flag is != 0 if codec is avc1
158     int got_avcC; ///< flag used to parse avcC data only once
159     int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4)
160
161     int chroma_qp; //QPc
162
163     int prev_mb_skiped; //FIXME remove (IMHO not used)
164
165     //prediction stuff
166     int chroma_pred_mode;
167     int intra16x16_pred_mode;
168     
169     int8_t intra4x4_pred_mode_cache[5*8];
170     int8_t (*intra4x4_pred_mode)[8];
171     void (*pred4x4  [9+3])(uint8_t *src, uint8_t *topright, int stride);//FIXME move to dsp?
172     void (*pred8x8  [4+3])(uint8_t *src, int stride);
173     void (*pred16x16[4+3])(uint8_t *src, int stride);
174     unsigned int topleft_samples_available;
175     unsigned int top_samples_available;
176     unsigned int topright_samples_available;
177     unsigned int left_samples_available;
178     uint8_t (*top_border)[16+2*8];
179     uint8_t left_border[17+2*9];
180
181     /**
182      * non zero coeff count cache.
183      * is 64 if not available.
184      */
185     uint8_t non_zero_count_cache[6*8];
186     uint8_t (*non_zero_count)[16];
187
188     /**
189      * Motion vector cache.
190      */
191     int16_t mv_cache[2][5*8][2];
192     int8_t ref_cache[2][5*8];
193 #define LIST_NOT_USED -1 //FIXME rename?
194 #define PART_NOT_AVAILABLE -2
195     
196     /**
197      * is 1 if the specific list MV&references are set to 0,0,-2.
198      */
199     int mv_cache_clean[2];
200
201     int block_offset[16+8];
202     int chroma_subblock_offset[16]; //FIXME remove
203     
204     uint16_t *mb2b_xy; //FIXME are these 4 a good idea?
205     uint16_t *mb2b8_xy;
206     int b_stride; //FIXME use s->b4_stride
207     int b8_stride;
208
209     int halfpel_flag;
210     int thirdpel_flag;
211
212     int unknown_svq3_flag;
213     int next_slice_index;
214
215     SPS sps_buffer[MAX_SPS_COUNT];
216     SPS sps; ///< current sps
217     
218     PPS pps_buffer[MAX_PPS_COUNT];
219     /**
220      * current pps
221      */
222     PPS pps; //FIXME move tp Picture perhaps? (->no) do we need that?
223
224     int slice_num;
225     uint8_t *slice_table_base;
226     uint8_t *slice_table;      ///< slice_table_base + mb_stride + 1
227     int slice_type;
228     int slice_type_fixed;
229     
230     //interlacing specific flags
231     int mb_field_decoding_flag;
232     
233     int sub_mb_type[4];
234     
235     //POC stuff
236     int poc_lsb;
237     int poc_msb;
238     int delta_poc_bottom;
239     int delta_poc[2];
240     int frame_num;
241     int prev_poc_msb;             ///< poc_msb of the last reference pic for POC type 0
242     int prev_poc_lsb;             ///< poc_lsb of the last reference pic for POC type 0
243     int frame_num_offset;         ///< for POC type 2
244     int prev_frame_num_offset;    ///< for POC type 2
245     int prev_frame_num;           ///< frame_num of the last pic for POC type 1/2
246
247     /**
248      * frame_num for frames or 2*frame_num for field pics.
249      */
250     int curr_pic_num;
251     
252     /**
253      * max_frame_num or 2*max_frame_num for field pics.
254      */
255     int max_pic_num;
256
257     //Weighted pred stuff
258     int use_weight;
259     int use_weight_chroma;
260     int luma_log2_weight_denom;
261     int chroma_log2_weight_denom;
262     int luma_weight[2][16];
263     int luma_offset[2][16];
264     int chroma_weight[2][16][2];
265     int chroma_offset[2][16][2];
266     int implicit_weight[16][16];
267    
268     //deblock
269     int deblocking_filter;         ///< disable_deblocking_filter_idc with 1<->0 
270     int slice_alpha_c0_offset;
271     int slice_beta_offset;
272      
273     int redundant_pic_count;
274     
275     int direct_spatial_mv_pred;
276     int dist_scale_factor[16];
277
278     /**
279      * num_ref_idx_l0/1_active_minus1 + 1
280      */
281     int ref_count[2];// FIXME split for AFF
282     Picture *short_ref[16];
283     Picture *long_ref[16];
284     Picture default_ref_list[2][32];
285     Picture ref_list[2][32]; //FIXME size?
286     Picture field_ref_list[2][32]; //FIXME size?
287     Picture *delayed_pic[16]; //FIXME size?
288     
289     /**
290      * memory management control operations buffer.
291      */
292     MMCO mmco[MAX_MMCO_COUNT];
293     int mmco_index;
294     
295     int long_ref_count;  ///< number of actual long term references
296     int short_ref_count; ///< number of actual short term references
297     
298     //data partitioning
299     GetBitContext intra_gb;
300     GetBitContext inter_gb;
301     GetBitContext *intra_gb_ptr;
302     GetBitContext *inter_gb_ptr;
303     
304     DCTELEM mb[16*24] __align8;
305
306     /**
307      * Cabac
308      */
309     CABACContext cabac;
310     uint8_t      cabac_state[399];
311     int          cabac_init_idc;
312
313     /* 0x100 -> non null luma_dc, 0x80/0x40 -> non null chroma_dc (cb/cr), 0x?0 -> chroma_cbp(0,1,2), 0x0? luma_cbp */
314     uint16_t     *cbp_table;
315     int top_cbp;
316     int left_cbp;
317     /* chroma_pred_mode for i4x4 or i16x16, else 0 */
318     uint8_t     *chroma_pred_mode_table;
319     int         last_qscale_diff;
320     int16_t     (*mvd_table[2])[2];
321     int16_t     mvd_cache[2][5*8][2];
322     uint8_t     *direct_table;
323     uint8_t     direct_cache[5*8];
324
325 }H264Context;
326
327 static VLC coeff_token_vlc[4];
328 static VLC chroma_dc_coeff_token_vlc;
329
330 static VLC total_zeros_vlc[15];
331 static VLC chroma_dc_total_zeros_vlc[3];
332
333 static VLC run_vlc[6];
334 static VLC run7_vlc;
335
336 static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp);
337 static void svq3_add_idct_c(uint8_t *dst, DCTELEM *block, int stride, int qp, int dc);
338 static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr);
339
340 static inline uint32_t pack16to32(int a, int b){
341 #ifdef WORDS_BIGENDIAN
342    return (b&0xFFFF) + (a<<16);
343 #else
344    return (a&0xFFFF) + (b<<16);
345 #endif
346 }
347
348 /**
349  * fill a rectangle.
350  * @param h height of the rectangle, should be a constant
351  * @param w width of the rectangle, should be a constant
352  * @param size the size of val (1 or 4), should be a constant
353  */
354 static inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t val, int size){ //FIXME ensure this IS inlined
355     uint8_t *p= (uint8_t*)vp;
356     assert(size==1 || size==4);
357     
358     w      *= size;
359     stride *= size;
360     
361 //FIXME check what gcc generates for 64 bit on x86 and possible write a 32 bit ver of it
362     if(w==2 && h==2){
363         *(uint16_t*)(p + 0)=
364         *(uint16_t*)(p + stride)= size==4 ? val : val*0x0101;
365     }else if(w==2 && h==4){
366         *(uint16_t*)(p + 0*stride)=
367         *(uint16_t*)(p + 1*stride)=
368         *(uint16_t*)(p + 2*stride)=
369         *(uint16_t*)(p + 3*stride)= size==4 ? val : val*0x0101;
370     }else if(w==4 && h==1){
371         *(uint32_t*)(p + 0*stride)= size==4 ? val : val*0x01010101;
372     }else if(w==4 && h==2){
373         *(uint32_t*)(p + 0*stride)=
374         *(uint32_t*)(p + 1*stride)= size==4 ? val : val*0x01010101;
375     }else if(w==4 && h==4){
376         *(uint32_t*)(p + 0*stride)=
377         *(uint32_t*)(p + 1*stride)=
378         *(uint32_t*)(p + 2*stride)=
379         *(uint32_t*)(p + 3*stride)= size==4 ? val : val*0x01010101;
380     }else if(w==8 && h==1){
381         *(uint32_t*)(p + 0)=
382         *(uint32_t*)(p + 4)= size==4 ? val : val*0x01010101;
383     }else if(w==8 && h==2){
384         *(uint32_t*)(p + 0 + 0*stride)=
385         *(uint32_t*)(p + 4 + 0*stride)=
386         *(uint32_t*)(p + 0 + 1*stride)=
387         *(uint32_t*)(p + 4 + 1*stride)=  size==4 ? val : val*0x01010101;
388     }else if(w==8 && h==4){
389         *(uint64_t*)(p + 0*stride)=
390         *(uint64_t*)(p + 1*stride)=
391         *(uint64_t*)(p + 2*stride)=
392         *(uint64_t*)(p + 3*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL;
393     }else if(w==16 && h==2){
394         *(uint64_t*)(p + 0+0*stride)=
395         *(uint64_t*)(p + 8+0*stride)=
396         *(uint64_t*)(p + 0+1*stride)=
397         *(uint64_t*)(p + 8+1*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL;
398     }else if(w==16 && h==4){
399         *(uint64_t*)(p + 0+0*stride)=
400         *(uint64_t*)(p + 8+0*stride)=
401         *(uint64_t*)(p + 0+1*stride)=
402         *(uint64_t*)(p + 8+1*stride)=
403         *(uint64_t*)(p + 0+2*stride)=
404         *(uint64_t*)(p + 8+2*stride)=
405         *(uint64_t*)(p + 0+3*stride)=
406         *(uint64_t*)(p + 8+3*stride)= size==4 ? val*0x0100000001ULL : val*0x0101010101010101ULL;
407     }else
408         assert(0);
409 }
410
411 static inline void fill_caches(H264Context *h, int mb_type){
412     MpegEncContext * const s = &h->s;
413     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
414     int topleft_xy, top_xy, topright_xy, left_xy[2];
415     int topleft_type, top_type, topright_type, left_type[2];
416     int left_block[4];
417     int i;
418
419     //wow what a mess, why didnt they simplify the interlacing&intra stuff, i cant imagine that these complex rules are worth it 
420     
421     if(h->sps.mb_aff){
422     //FIXME
423         topleft_xy = 0; /* avoid warning */
424         top_xy = 0; /* avoid warning */
425         topright_xy = 0; /* avoid warning */
426     }else{
427         topleft_xy = mb_xy-1 - s->mb_stride;
428         top_xy     = mb_xy   - s->mb_stride;
429         topright_xy= mb_xy+1 - s->mb_stride;
430         left_xy[0]   = mb_xy-1;
431         left_xy[1]   = mb_xy-1;
432         left_block[0]= 0;
433         left_block[1]= 1;
434         left_block[2]= 2;
435         left_block[3]= 3;
436     }
437
438     topleft_type = h->slice_table[topleft_xy ] == h->slice_num ? s->current_picture.mb_type[topleft_xy] : 0;
439     top_type     = h->slice_table[top_xy     ] == h->slice_num ? s->current_picture.mb_type[top_xy]     : 0;
440     topright_type= h->slice_table[topright_xy] == h->slice_num ? s->current_picture.mb_type[topright_xy]: 0;
441     left_type[0] = h->slice_table[left_xy[0] ] == h->slice_num ? s->current_picture.mb_type[left_xy[0]] : 0;
442     left_type[1] = h->slice_table[left_xy[1] ] == h->slice_num ? s->current_picture.mb_type[left_xy[1]] : 0;
443
444     if(IS_INTRA(mb_type)){
445         h->topleft_samples_available= 
446         h->top_samples_available= 
447         h->left_samples_available= 0xFFFF;
448         h->topright_samples_available= 0xEEEA;
449
450         if(!IS_INTRA(top_type) && (top_type==0 || h->pps.constrained_intra_pred)){
451             h->topleft_samples_available= 0xB3FF;
452             h->top_samples_available= 0x33FF;
453             h->topright_samples_available= 0x26EA;
454         }
455         for(i=0; i<2; i++){
456             if(!IS_INTRA(left_type[i]) && (left_type[i]==0 || h->pps.constrained_intra_pred)){
457                 h->topleft_samples_available&= 0xDF5F;
458                 h->left_samples_available&= 0x5F5F;
459             }
460         }
461         
462         if(!IS_INTRA(topleft_type) && (topleft_type==0 || h->pps.constrained_intra_pred))
463             h->topleft_samples_available&= 0x7FFF;
464         
465         if(!IS_INTRA(topright_type) && (topright_type==0 || h->pps.constrained_intra_pred))
466             h->topright_samples_available&= 0xFBFF;
467     
468         if(IS_INTRA4x4(mb_type)){
469             if(IS_INTRA4x4(top_type)){
470                 h->intra4x4_pred_mode_cache[4+8*0]= h->intra4x4_pred_mode[top_xy][4];
471                 h->intra4x4_pred_mode_cache[5+8*0]= h->intra4x4_pred_mode[top_xy][5];
472                 h->intra4x4_pred_mode_cache[6+8*0]= h->intra4x4_pred_mode[top_xy][6];
473                 h->intra4x4_pred_mode_cache[7+8*0]= h->intra4x4_pred_mode[top_xy][3];
474             }else{
475                 int pred;
476                 if(IS_INTRA16x16(top_type) || (IS_INTER(top_type) && !h->pps.constrained_intra_pred))
477                     pred= 2;
478                 else{
479                     pred= -1;
480                 }
481                 h->intra4x4_pred_mode_cache[4+8*0]=
482                 h->intra4x4_pred_mode_cache[5+8*0]=
483                 h->intra4x4_pred_mode_cache[6+8*0]=
484                 h->intra4x4_pred_mode_cache[7+8*0]= pred;
485             }
486             for(i=0; i<2; i++){
487                 if(IS_INTRA4x4(left_type[i])){
488                     h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[0+2*i]];
489                     h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= h->intra4x4_pred_mode[left_xy[i]][left_block[1+2*i]];
490                 }else{
491                     int pred;
492                     if(IS_INTRA16x16(left_type[i]) || (IS_INTER(left_type[i]) && !h->pps.constrained_intra_pred))
493                         pred= 2;
494                     else{
495                         pred= -1;
496                     }
497                     h->intra4x4_pred_mode_cache[3+8*1 + 2*8*i]=
498                     h->intra4x4_pred_mode_cache[3+8*2 + 2*8*i]= pred;
499                 }
500             }
501         }
502     }
503     
504     
505 /*
506 0 . T T. T T T T 
507 1 L . .L . . . . 
508 2 L . .L . . . . 
509 3 . T TL . . . . 
510 4 L . .L . . . . 
511 5 L . .. . . . . 
512 */
513 //FIXME constraint_intra_pred & partitioning & nnz (lets hope this is just a typo in the spec)
514     if(top_type){
515         h->non_zero_count_cache[4+8*0]= h->non_zero_count[top_xy][0];
516         h->non_zero_count_cache[5+8*0]= h->non_zero_count[top_xy][1];
517         h->non_zero_count_cache[6+8*0]= h->non_zero_count[top_xy][2];
518         h->non_zero_count_cache[7+8*0]= h->non_zero_count[top_xy][3];
519     
520         h->non_zero_count_cache[1+8*0]= h->non_zero_count[top_xy][7];
521         h->non_zero_count_cache[2+8*0]= h->non_zero_count[top_xy][8];
522     
523         h->non_zero_count_cache[1+8*3]= h->non_zero_count[top_xy][10];
524         h->non_zero_count_cache[2+8*3]= h->non_zero_count[top_xy][11];
525         
526         h->top_cbp= h->cbp_table[top_xy];
527     }else{
528         h->non_zero_count_cache[4+8*0]=      
529         h->non_zero_count_cache[5+8*0]=
530         h->non_zero_count_cache[6+8*0]=
531         h->non_zero_count_cache[7+8*0]=
532     
533         h->non_zero_count_cache[1+8*0]=
534         h->non_zero_count_cache[2+8*0]=
535     
536         h->non_zero_count_cache[1+8*3]=
537         h->non_zero_count_cache[2+8*3]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64;
538         
539         if(IS_INTRA(mb_type)) h->top_cbp= 0x1C0;
540         else                  h->top_cbp= 0;
541     }
542     
543     if(left_type[0]){
544         h->non_zero_count_cache[3+8*1]= h->non_zero_count[left_xy[0]][6];
545         h->non_zero_count_cache[3+8*2]= h->non_zero_count[left_xy[0]][5];
546         h->non_zero_count_cache[0+8*1]= h->non_zero_count[left_xy[0]][9]; //FIXME left_block
547         h->non_zero_count_cache[0+8*4]= h->non_zero_count[left_xy[0]][12];
548         h->left_cbp= h->cbp_table[left_xy[0]]; //FIXME interlacing
549     }else{
550         h->non_zero_count_cache[3+8*1]= 
551         h->non_zero_count_cache[3+8*2]= 
552         h->non_zero_count_cache[0+8*1]= 
553         h->non_zero_count_cache[0+8*4]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64;
554         
555         if(IS_INTRA(mb_type)) h->left_cbp= 0x1C0;//FIXME interlacing
556         else                  h->left_cbp= 0;
557     }
558     
559     if(left_type[1]){
560         h->non_zero_count_cache[3+8*3]= h->non_zero_count[left_xy[1]][4];
561         h->non_zero_count_cache[3+8*4]= h->non_zero_count[left_xy[1]][3];
562         h->non_zero_count_cache[0+8*2]= h->non_zero_count[left_xy[1]][8];
563         h->non_zero_count_cache[0+8*5]= h->non_zero_count[left_xy[1]][11];
564     }else{
565         h->non_zero_count_cache[3+8*3]= 
566         h->non_zero_count_cache[3+8*4]= 
567         h->non_zero_count_cache[0+8*2]= 
568         h->non_zero_count_cache[0+8*5]= h->pps.cabac && !IS_INTRA(mb_type) ? 0 : 64;
569     }
570     
571 #if 1
572     //FIXME direct mb can skip much of this
573     if(IS_INTER(mb_type) || (IS_DIRECT(mb_type) && h->direct_spatial_mv_pred)){
574         int list;
575         for(list=0; list<2; list++){
576             if((!IS_8X8(mb_type)) && !USES_LIST(mb_type, list) && !IS_DIRECT(mb_type)){
577                 /*if(!h->mv_cache_clean[list]){
578                     memset(h->mv_cache [list],  0, 8*5*2*sizeof(int16_t)); //FIXME clean only input? clean at all?
579                     memset(h->ref_cache[list], PART_NOT_AVAILABLE, 8*5*sizeof(int8_t));
580                     h->mv_cache_clean[list]= 1;
581                 }*/
582                 continue;
583             }
584             h->mv_cache_clean[list]= 0;
585             
586             if(IS_INTER(topleft_type)){
587                 const int b_xy = h->mb2b_xy[topleft_xy] + 3 + 3*h->b_stride;
588                 const int b8_xy= h->mb2b8_xy[topleft_xy] + 1 + h->b8_stride;
589                 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy];
590                 h->ref_cache[list][scan8[0] - 1 - 1*8]= s->current_picture.ref_index[list][b8_xy];
591             }else{
592                 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 - 1*8]= 0;
593                 h->ref_cache[list][scan8[0] - 1 - 1*8]= topleft_type ? LIST_NOT_USED : PART_NOT_AVAILABLE;
594             }
595             
596             if(IS_INTER(top_type)){
597                 const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride;
598                 const int b8_xy= h->mb2b8_xy[top_xy] + h->b8_stride;
599                 *(uint32_t*)h->mv_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 0];
600                 *(uint32_t*)h->mv_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 1];
601                 *(uint32_t*)h->mv_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 2];
602                 *(uint32_t*)h->mv_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + 3];
603                 h->ref_cache[list][scan8[0] + 0 - 1*8]=
604                 h->ref_cache[list][scan8[0] + 1 - 1*8]= s->current_picture.ref_index[list][b8_xy + 0];
605                 h->ref_cache[list][scan8[0] + 2 - 1*8]=
606                 h->ref_cache[list][scan8[0] + 3 - 1*8]= s->current_picture.ref_index[list][b8_xy + 1];
607             }else{
608                 *(uint32_t*)h->mv_cache [list][scan8[0] + 0 - 1*8]= 
609                 *(uint32_t*)h->mv_cache [list][scan8[0] + 1 - 1*8]= 
610                 *(uint32_t*)h->mv_cache [list][scan8[0] + 2 - 1*8]= 
611                 *(uint32_t*)h->mv_cache [list][scan8[0] + 3 - 1*8]= 0;
612                 *(uint32_t*)&h->ref_cache[list][scan8[0] + 0 - 1*8]= ((top_type ? LIST_NOT_USED : PART_NOT_AVAILABLE)&0xFF)*0x01010101;
613             }
614
615             if(IS_INTER(topright_type)){
616                 const int b_xy= h->mb2b_xy[topright_xy] + 3*h->b_stride;
617                 const int b8_xy= h->mb2b8_xy[topright_xy] + h->b8_stride;
618                 *(uint32_t*)h->mv_cache[list][scan8[0] + 4 - 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy];
619                 h->ref_cache[list][scan8[0] + 4 - 1*8]= s->current_picture.ref_index[list][b8_xy];
620             }else{
621                 *(uint32_t*)h->mv_cache [list][scan8[0] + 4 - 1*8]= 0;
622                 h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE;
623             }
624             
625             //FIXME unify cleanup or sth
626             if(IS_INTER(left_type[0])){
627                 const int b_xy= h->mb2b_xy[left_xy[0]] + 3;
628                 const int b8_xy= h->mb2b8_xy[left_xy[0]] + 1;
629                 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 0*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[0]];
630                 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 1*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[1]];
631                 h->ref_cache[list][scan8[0] - 1 + 0*8]= 
632                 h->ref_cache[list][scan8[0] - 1 + 1*8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[0]>>1)];
633             }else{
634                 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 0*8]=
635                 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 1*8]= 0;
636                 h->ref_cache[list][scan8[0] - 1 + 0*8]=
637                 h->ref_cache[list][scan8[0] - 1 + 1*8]= left_type[0] ? LIST_NOT_USED : PART_NOT_AVAILABLE;
638             }
639             
640             if(IS_INTER(left_type[1])){
641                 const int b_xy= h->mb2b_xy[left_xy[1]] + 3;
642                 const int b8_xy= h->mb2b8_xy[left_xy[1]] + 1;
643                 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 2*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[2]];
644                 *(uint32_t*)h->mv_cache[list][scan8[0] - 1 + 3*8]= *(uint32_t*)s->current_picture.motion_val[list][b_xy + h->b_stride*left_block[3]];
645                 h->ref_cache[list][scan8[0] - 1 + 2*8]= 
646                 h->ref_cache[list][scan8[0] - 1 + 3*8]= s->current_picture.ref_index[list][b8_xy + h->b8_stride*(left_block[2]>>1)];
647             }else{
648                 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 2*8]=
649                 *(uint32_t*)h->mv_cache [list][scan8[0] - 1 + 3*8]= 0;
650                 h->ref_cache[list][scan8[0] - 1 + 2*8]=
651                 h->ref_cache[list][scan8[0] - 1 + 3*8]= left_type[0] ? LIST_NOT_USED : PART_NOT_AVAILABLE;
652             }
653
654             h->ref_cache[list][scan8[5 ]+1] = 
655             h->ref_cache[list][scan8[7 ]+1] = 
656             h->ref_cache[list][scan8[13]+1] =  //FIXME remove past 3 (init somewher else)
657             h->ref_cache[list][scan8[4 ]] = 
658             h->ref_cache[list][scan8[12]] = PART_NOT_AVAILABLE;
659             *(uint32_t*)h->mv_cache [list][scan8[5 ]+1]=
660             *(uint32_t*)h->mv_cache [list][scan8[7 ]+1]=
661             *(uint32_t*)h->mv_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewher else)
662             *(uint32_t*)h->mv_cache [list][scan8[4 ]]=
663             *(uint32_t*)h->mv_cache [list][scan8[12]]= 0;
664
665             if( h->pps.cabac ) {
666                 /* XXX beurk, Load mvd */
667                 if(IS_INTER(topleft_type)){
668                     const int b_xy = h->mb2b_xy[topleft_xy] + 3 + 3*h->b_stride;
669                     *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy];
670                 }else{
671                     *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 - 1*8]= 0;
672                 }
673
674                 if(IS_INTER(top_type)){
675                     const int b_xy= h->mb2b_xy[top_xy] + 3*h->b_stride;
676                     *(uint32_t*)h->mvd_cache[list][scan8[0] + 0 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 0];
677                     *(uint32_t*)h->mvd_cache[list][scan8[0] + 1 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 1];
678                     *(uint32_t*)h->mvd_cache[list][scan8[0] + 2 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 2];
679                     *(uint32_t*)h->mvd_cache[list][scan8[0] + 3 - 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + 3];
680                 }else{
681                     *(uint32_t*)h->mvd_cache [list][scan8[0] + 0 - 1*8]= 
682                     *(uint32_t*)h->mvd_cache [list][scan8[0] + 1 - 1*8]= 
683                     *(uint32_t*)h->mvd_cache [list][scan8[0] + 2 - 1*8]= 
684                     *(uint32_t*)h->mvd_cache [list][scan8[0] + 3 - 1*8]= 0;
685                 }
686                 if(IS_INTER(left_type[0])){
687                     const int b_xy= h->mb2b_xy[left_xy[0]] + 3;
688                     *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 0*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[0]];
689                     *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 1*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[1]];
690                 }else{
691                     *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 0*8]=
692                     *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 1*8]= 0;
693                 }
694                 if(IS_INTER(left_type[1])){
695                     const int b_xy= h->mb2b_xy[left_xy[1]] + 3;
696                     *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 2*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[2]];
697                     *(uint32_t*)h->mvd_cache[list][scan8[0] - 1 + 3*8]= *(uint32_t*)h->mvd_table[list][b_xy + h->b_stride*left_block[3]];
698                 }else{
699                     *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 2*8]=
700                     *(uint32_t*)h->mvd_cache [list][scan8[0] - 1 + 3*8]= 0;
701                 }
702                 *(uint32_t*)h->mvd_cache [list][scan8[5 ]+1]=
703                 *(uint32_t*)h->mvd_cache [list][scan8[7 ]+1]=
704                 *(uint32_t*)h->mvd_cache [list][scan8[13]+1]= //FIXME remove past 3 (init somewher else)
705                 *(uint32_t*)h->mvd_cache [list][scan8[4 ]]=
706                 *(uint32_t*)h->mvd_cache [list][scan8[12]]= 0;
707
708                 if(h->slice_type == B_TYPE){
709                     fill_rectangle(&h->direct_cache[scan8[0]], 4, 4, 8, 0, 1);
710
711                     if(IS_DIRECT(top_type)){
712                         *(uint32_t*)&h->direct_cache[scan8[0] - 1*8]= 0x01010101;
713                     }else if(IS_8X8(top_type)){
714                         int b8_xy = h->mb2b8_xy[top_xy] + h->b8_stride;
715                         h->direct_cache[scan8[0] + 0 - 1*8]= h->direct_table[b8_xy];
716                         h->direct_cache[scan8[0] + 2 - 1*8]= h->direct_table[b8_xy + 1];
717                     }else{
718                         *(uint32_t*)&h->direct_cache[scan8[0] - 1*8]= 0;
719                     }
720                     
721                     //FIXME interlacing
722                     if(IS_DIRECT(left_type[0])){
723                         h->direct_cache[scan8[0] - 1 + 0*8]=
724                         h->direct_cache[scan8[0] - 1 + 2*8]= 1;
725                     }else if(IS_8X8(left_type[0])){
726                         int b8_xy = h->mb2b8_xy[left_xy[0]] + 1;
727                         h->direct_cache[scan8[0] - 1 + 0*8]= h->direct_table[b8_xy];
728                         h->direct_cache[scan8[0] - 1 + 2*8]= h->direct_table[b8_xy + h->b8_stride];
729                     }else{
730                         h->direct_cache[scan8[0] - 1 + 0*8]=
731                         h->direct_cache[scan8[0] - 1 + 2*8]= 0;
732                     }
733                 }
734             }
735         }
736     }
737 #endif
738 }
739
740 static inline void write_back_intra_pred_mode(H264Context *h){
741     MpegEncContext * const s = &h->s;
742     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
743
744     h->intra4x4_pred_mode[mb_xy][0]= h->intra4x4_pred_mode_cache[7+8*1];
745     h->intra4x4_pred_mode[mb_xy][1]= h->intra4x4_pred_mode_cache[7+8*2];
746     h->intra4x4_pred_mode[mb_xy][2]= h->intra4x4_pred_mode_cache[7+8*3];
747     h->intra4x4_pred_mode[mb_xy][3]= h->intra4x4_pred_mode_cache[7+8*4];
748     h->intra4x4_pred_mode[mb_xy][4]= h->intra4x4_pred_mode_cache[4+8*4];
749     h->intra4x4_pred_mode[mb_xy][5]= h->intra4x4_pred_mode_cache[5+8*4];
750     h->intra4x4_pred_mode[mb_xy][6]= h->intra4x4_pred_mode_cache[6+8*4];
751 }
752
753 /**
754  * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
755  */
756 static inline int check_intra4x4_pred_mode(H264Context *h){
757     MpegEncContext * const s = &h->s;
758     static const int8_t top [12]= {-1, 0,LEFT_DC_PRED,-1,-1,-1,-1,-1, 0};
759     static const int8_t left[12]= { 0,-1, TOP_DC_PRED, 0,-1,-1,-1, 0,-1,DC_128_PRED};
760     int i;
761     
762     if(!(h->top_samples_available&0x8000)){
763         for(i=0; i<4; i++){
764             int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ];
765             if(status<0){
766                 av_log(h->s.avctx, AV_LOG_ERROR, "top block unavailable for requested intra4x4 mode %d at %d %d\n", status, s->mb_x, s->mb_y);
767                 return -1;
768             } else if(status){
769                 h->intra4x4_pred_mode_cache[scan8[0] + i]= status;
770             }
771         }
772     }
773     
774     if(!(h->left_samples_available&0x8000)){
775         for(i=0; i<4; i++){
776             int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ];
777             if(status<0){
778                 av_log(h->s.avctx, AV_LOG_ERROR, "left block unavailable for requested intra4x4 mode %d at %d %d\n", status, s->mb_x, s->mb_y);
779                 return -1;
780             } else if(status){
781                 h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status;
782             }
783         }
784     }
785
786     return 0;
787 } //FIXME cleanup like next
788
789 /**
790  * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
791  */
792 static inline int check_intra_pred_mode(H264Context *h, int mode){
793     MpegEncContext * const s = &h->s;
794     static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1};
795     static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8};
796     
797     if(mode < 0 || mode > 6) {
798         av_log(h->s.avctx, AV_LOG_ERROR, "out of range intra chroma pred mode at %d %d\n", s->mb_x, s->mb_y);
799         return -1;
800     }
801     
802     if(!(h->top_samples_available&0x8000)){
803         mode= top[ mode ];
804         if(mode<0){
805             av_log(h->s.avctx, AV_LOG_ERROR, "top block unavailable for requested intra mode at %d %d\n", s->mb_x, s->mb_y);
806             return -1;
807         }
808     }
809     
810     if(!(h->left_samples_available&0x8000)){
811         mode= left[ mode ];
812         if(mode<0){
813             av_log(h->s.avctx, AV_LOG_ERROR, "left block unavailable for requested intra mode at %d %d\n", s->mb_x, s->mb_y);
814             return -1;
815         } 
816     }
817
818     return mode;
819 }
820
821 /**
822  * gets the predicted intra4x4 prediction mode.
823  */
824 static inline int pred_intra_mode(H264Context *h, int n){
825     const int index8= scan8[n];
826     const int left= h->intra4x4_pred_mode_cache[index8 - 1];
827     const int top = h->intra4x4_pred_mode_cache[index8 - 8];
828     const int min= FFMIN(left, top);
829
830     tprintf("mode:%d %d min:%d\n", left ,top, min);
831
832     if(min<0) return DC_PRED;
833     else      return min;
834 }
835
836 static inline void write_back_non_zero_count(H264Context *h){
837     MpegEncContext * const s = &h->s;
838     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
839
840     h->non_zero_count[mb_xy][0]= h->non_zero_count_cache[4+8*4];
841     h->non_zero_count[mb_xy][1]= h->non_zero_count_cache[5+8*4];
842     h->non_zero_count[mb_xy][2]= h->non_zero_count_cache[6+8*4];
843     h->non_zero_count[mb_xy][3]= h->non_zero_count_cache[7+8*4];
844     h->non_zero_count[mb_xy][4]= h->non_zero_count_cache[7+8*3];
845     h->non_zero_count[mb_xy][5]= h->non_zero_count_cache[7+8*2];
846     h->non_zero_count[mb_xy][6]= h->non_zero_count_cache[7+8*1];
847     
848     h->non_zero_count[mb_xy][7]= h->non_zero_count_cache[1+8*2];
849     h->non_zero_count[mb_xy][8]= h->non_zero_count_cache[2+8*2];
850     h->non_zero_count[mb_xy][9]= h->non_zero_count_cache[2+8*1];
851
852     h->non_zero_count[mb_xy][10]=h->non_zero_count_cache[1+8*5];
853     h->non_zero_count[mb_xy][11]=h->non_zero_count_cache[2+8*5];
854     h->non_zero_count[mb_xy][12]=h->non_zero_count_cache[2+8*4];
855 }
856
857 /**
858  * gets the predicted number of non zero coefficients.
859  * @param n block index
860  */
861 static inline int pred_non_zero_count(H264Context *h, int n){
862     const int index8= scan8[n];
863     const int left= h->non_zero_count_cache[index8 - 1];
864     const int top = h->non_zero_count_cache[index8 - 8];
865     int i= left + top;
866     
867     if(i<64) i= (i+1)>>1;
868
869     tprintf("pred_nnz L%X T%X n%d s%d P%X\n", left, top, n, scan8[n], i&31);
870
871     return i&31;
872 }
873
874 static inline int fetch_diagonal_mv(H264Context *h, const int16_t **C, int i, int list, int part_width){
875     const int topright_ref= h->ref_cache[list][ i - 8 + part_width ];
876
877     if(topright_ref != PART_NOT_AVAILABLE){
878         *C= h->mv_cache[list][ i - 8 + part_width ];
879         return topright_ref;
880     }else{
881         tprintf("topright MV not available\n");
882
883         *C= h->mv_cache[list][ i - 8 - 1 ];
884         return h->ref_cache[list][ i - 8 - 1 ];
885     }
886 }
887
888 /**
889  * gets the predicted MV.
890  * @param n the block index
891  * @param part_width the width of the partition (4, 8,16) -> (1, 2, 4)
892  * @param mx the x component of the predicted motion vector
893  * @param my the y component of the predicted motion vector
894  */
895 static inline void pred_motion(H264Context * const h, int n, int part_width, int list, int ref, int * const mx, int * const my){
896     const int index8= scan8[n];
897     const int top_ref=      h->ref_cache[list][ index8 - 8 ];
898     const int left_ref=     h->ref_cache[list][ index8 - 1 ];
899     const int16_t * const A= h->mv_cache[list][ index8 - 1 ];
900     const int16_t * const B= h->mv_cache[list][ index8 - 8 ];
901     const int16_t * C;
902     int diagonal_ref, match_count;
903
904     assert(part_width==1 || part_width==2 || part_width==4);
905
906 /* mv_cache
907   B . . A T T T T 
908   U . . L . . , .
909   U . . L . . . .
910   U . . L . . , .
911   . . . L . . . .
912 */
913
914     diagonal_ref= fetch_diagonal_mv(h, &C, index8, list, part_width);
915     match_count= (diagonal_ref==ref) + (top_ref==ref) + (left_ref==ref);
916     if(match_count > 1){ //most common
917         *mx= mid_pred(A[0], B[0], C[0]);
918         *my= mid_pred(A[1], B[1], C[1]);
919     }else if(match_count==1){
920         if(left_ref==ref){
921             *mx= A[0];
922             *my= A[1];        
923         }else if(top_ref==ref){
924             *mx= B[0];
925             *my= B[1];        
926         }else{
927             *mx= C[0];
928             *my= C[1];        
929         }
930     }else{
931         if(top_ref == PART_NOT_AVAILABLE && diagonal_ref == PART_NOT_AVAILABLE && left_ref != PART_NOT_AVAILABLE){
932             *mx= A[0];
933             *my= A[1];        
934         }else{
935             *mx= mid_pred(A[0], B[0], C[0]);
936             *my= mid_pred(A[1], B[1], C[1]);
937         }
938     }
939         
940     tprintf("pred_motion (%2d %2d %2d) (%2d %2d %2d) (%2d %2d %2d) -> (%2d %2d %2d) at %2d %2d %d list %d\n", top_ref, B[0], B[1],                    diagonal_ref, C[0], C[1], left_ref, A[0], A[1], ref, *mx, *my, h->s.mb_x, h->s.mb_y, n, list);
941 }
942
943 /**
944  * gets the directionally predicted 16x8 MV.
945  * @param n the block index
946  * @param mx the x component of the predicted motion vector
947  * @param my the y component of the predicted motion vector
948  */
949 static inline void pred_16x8_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){
950     if(n==0){
951         const int top_ref=      h->ref_cache[list][ scan8[0] - 8 ];
952         const int16_t * const B= h->mv_cache[list][ scan8[0] - 8 ];
953
954         tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n", top_ref, B[0], B[1], h->s.mb_x, h->s.mb_y, n, list);
955         
956         if(top_ref == ref){
957             *mx= B[0];
958             *my= B[1];
959             return;
960         }
961     }else{
962         const int left_ref=     h->ref_cache[list][ scan8[8] - 1 ];
963         const int16_t * const A= h->mv_cache[list][ scan8[8] - 1 ];
964         
965         tprintf("pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list);
966
967         if(left_ref == ref){
968             *mx= A[0];
969             *my= A[1];
970             return;
971         }
972     }
973
974     //RARE
975     pred_motion(h, n, 4, list, ref, mx, my);
976 }
977
978 /**
979  * gets the directionally predicted 8x16 MV.
980  * @param n the block index
981  * @param mx the x component of the predicted motion vector
982  * @param my the y component of the predicted motion vector
983  */
984 static inline void pred_8x16_motion(H264Context * const h, int n, int list, int ref, int * const mx, int * const my){
985     if(n==0){
986         const int left_ref=      h->ref_cache[list][ scan8[0] - 1 ];
987         const int16_t * const A=  h->mv_cache[list][ scan8[0] - 1 ];
988         
989         tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", left_ref, A[0], A[1], h->s.mb_x, h->s.mb_y, n, list);
990
991         if(left_ref == ref){
992             *mx= A[0];
993             *my= A[1];
994             return;
995         }
996     }else{
997         const int16_t * C;
998         int diagonal_ref;
999
1000         diagonal_ref= fetch_diagonal_mv(h, &C, scan8[4], list, 2);
1001         
1002         tprintf("pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n", diagonal_ref, C[0], C[1], h->s.mb_x, h->s.mb_y, n, list);
1003
1004         if(diagonal_ref == ref){ 
1005             *mx= C[0];
1006             *my= C[1];
1007             return;
1008         }
1009     }
1010
1011     //RARE
1012     pred_motion(h, n, 2, list, ref, mx, my);
1013 }
1014
1015 static inline void pred_pskip_motion(H264Context * const h, int * const mx, int * const my){
1016     const int top_ref = h->ref_cache[0][ scan8[0] - 8 ];
1017     const int left_ref= h->ref_cache[0][ scan8[0] - 1 ];
1018
1019     tprintf("pred_pskip: (%d) (%d) at %2d %2d\n", top_ref, left_ref, h->s.mb_x, h->s.mb_y);
1020
1021     if(top_ref == PART_NOT_AVAILABLE || left_ref == PART_NOT_AVAILABLE
1022        || (top_ref == 0  && *(uint32_t*)h->mv_cache[0][ scan8[0] - 8 ] == 0)
1023        || (left_ref == 0 && *(uint32_t*)h->mv_cache[0][ scan8[0] - 1 ] == 0)){
1024        
1025         *mx = *my = 0;
1026         return;
1027     }
1028         
1029     pred_motion(h, 0, 4, 0, 0, mx, my);
1030
1031     return;
1032 }
1033
1034 static inline void direct_dist_scale_factor(H264Context * const h){
1035     const int poc = h->s.current_picture_ptr->poc;
1036     const int poc1 = h->ref_list[1][0].poc;
1037     int i;
1038     for(i=0; i<h->ref_count[0]; i++){
1039         int poc0 = h->ref_list[0][i].poc;
1040         int td = clip(poc1 - poc0, -128, 127);
1041         if(td == 0 /* FIXME || pic0 is a long-term ref */){
1042             h->dist_scale_factor[i] = 256;
1043         }else{
1044             int tb = clip(poc - poc0, -128, 127);
1045             int tx = (16384 + (ABS(td) >> 1)) / td;
1046             h->dist_scale_factor[i] = clip((tb*tx + 32) >> 6, -1024, 1023);
1047         }
1048     }
1049 }
1050
1051 static inline void pred_direct_motion(H264Context * const h, int *mb_type){
1052     MpegEncContext * const s = &h->s;
1053     const int mb_xy =   s->mb_x +   s->mb_y*s->mb_stride;
1054     const int b8_xy = 2*s->mb_x + 2*s->mb_y*h->b8_stride;
1055     const int b4_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride;
1056     const int mb_type_col = h->ref_list[1][0].mb_type[mb_xy];
1057     const int16_t (*l1mv0)[2] = (const int16_t (*)[2]) &h->ref_list[1][0].motion_val[0][b4_xy];
1058     const int8_t *l1ref0 = &h->ref_list[1][0].ref_index[0][b8_xy];
1059     const int is_b8x8 = IS_8X8(*mb_type);
1060     int sub_mb_type;
1061     int i8, i4;
1062
1063     if(IS_8X8(mb_type_col) && !h->sps.direct_8x8_inference_flag){
1064         /* FIXME save sub mb types from previous frames (or derive from MVs)
1065          * so we know exactly what block size to use */
1066         sub_mb_type = MB_TYPE_8x8|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_4x4 */
1067         *mb_type =    MB_TYPE_8x8;
1068     }else if(!is_b8x8 && (IS_16X16(mb_type_col) || IS_INTRA(mb_type_col))){
1069         sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
1070         *mb_type =    MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_16x16 */
1071     }else{
1072         sub_mb_type = MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2; /* B_SUB_8x8 */
1073         *mb_type =    MB_TYPE_8x8;
1074     }
1075     if(!is_b8x8)
1076         *mb_type |= MB_TYPE_DIRECT2;
1077
1078     if(h->direct_spatial_mv_pred){
1079         int ref[2];
1080         int mv[2][2];
1081         int list;
1082
1083         /* ref = min(neighbors) */
1084         for(list=0; list<2; list++){
1085             int refa = h->ref_cache[list][scan8[0] - 1];
1086             int refb = h->ref_cache[list][scan8[0] - 8];
1087             int refc = h->ref_cache[list][scan8[0] - 8 + 4];
1088             if(refc == -2)
1089                 refc = h->ref_cache[list][scan8[0] - 8 - 1];
1090             ref[list] = refa;
1091             if(ref[list] < 0 || (refb < ref[list] && refb >= 0))
1092                 ref[list] = refb;
1093             if(ref[list] < 0 || (refc < ref[list] && refc >= 0))
1094                 ref[list] = refc;
1095             if(ref[list] < 0)
1096                 ref[list] = -1;
1097         }
1098
1099         if(ref[0] < 0 && ref[1] < 0){
1100             ref[0] = ref[1] = 0;
1101             mv[0][0] = mv[0][1] =
1102             mv[1][0] = mv[1][1] = 0;
1103         }else{
1104             for(list=0; list<2; list++){
1105                 if(ref[list] >= 0)
1106                     pred_motion(h, 0, 4, list, ref[list], &mv[list][0], &mv[list][1]);
1107                 else
1108                     mv[list][0] = mv[list][1] = 0;
1109             }
1110         }
1111
1112         if(ref[1] < 0){
1113             *mb_type &= ~MB_TYPE_P0L1;
1114             sub_mb_type &= ~MB_TYPE_P0L1;
1115         }else if(ref[0] < 0){
1116             *mb_type &= ~MB_TYPE_P0L0;
1117             sub_mb_type &= ~MB_TYPE_P0L0;
1118         }
1119
1120         if(IS_16X16(*mb_type)){
1121             fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref[0], 1);
1122             fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, ref[1], 1);
1123             if(!IS_INTRA(mb_type_col) && l1ref0[0] == 0 &&
1124                 ABS(l1mv0[0][0]) <= 1 && ABS(l1mv0[0][1]) <= 1){
1125                 if(ref[0] > 0)
1126                     fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv[0][0],mv[0][1]), 4);
1127                 else
1128                     fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, 0, 4);
1129                 if(ref[1] > 0)
1130                     fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv[1][0],mv[1][1]), 4);
1131                 else
1132                     fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, 0, 4);
1133             }else{
1134                 fill_rectangle(&h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv[0][0],mv[0][1]), 4);
1135                 fill_rectangle(&h->mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv[1][0],mv[1][1]), 4);
1136             }
1137         }else{
1138             for(i8=0; i8<4; i8++){
1139                 const int x8 = i8&1;
1140                 const int y8 = i8>>1;
1141     
1142                 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
1143                     continue;
1144                 h->sub_mb_type[i8] = sub_mb_type;
1145     
1146                 fill_rectangle(&h->mv_cache[0][scan8[i8*4]], 2, 2, 8, pack16to32(mv[0][0],mv[0][1]), 4);
1147                 fill_rectangle(&h->mv_cache[1][scan8[i8*4]], 2, 2, 8, pack16to32(mv[1][0],mv[1][1]), 4);
1148                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref[0], 1);
1149                 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, ref[1], 1);
1150     
1151                 /* col_zero_flag */
1152                 if(!IS_INTRA(mb_type_col) && l1ref0[x8 + y8*h->b8_stride] == 0){
1153                     for(i4=0; i4<4; i4++){
1154                         const int16_t *mv_col = l1mv0[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride];
1155                         if(ABS(mv_col[0]) <= 1 && ABS(mv_col[1]) <= 1){
1156                             if(ref[0] == 0)
1157                                 *(uint32_t*)h->mv_cache[0][scan8[i8*4+i4]] = 0;
1158                             if(ref[1] == 0)
1159                                 *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] = 0;
1160                         }
1161                     }
1162                 }
1163             }
1164         }
1165     }else{ /* direct temporal mv pred */
1166         /* FIXME assumes that L1ref0 used the same ref lists as current frame */
1167         if(IS_16X16(*mb_type)){
1168             fill_rectangle(&h->ref_cache[1][scan8[0]], 4, 4, 8, 0, 1);
1169             if(IS_INTRA(mb_type_col)){
1170                 fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1);
1171                 fill_rectangle(&h-> mv_cache[0][scan8[0]], 4, 4, 8, 0, 4);
1172                 fill_rectangle(&h-> mv_cache[1][scan8[0]], 4, 4, 8, 0, 4);
1173             }else{
1174                 const int ref0 = l1ref0[0];
1175                 const int dist_scale_factor = h->dist_scale_factor[ref0];
1176                 const int16_t *mv_col = l1mv0[0];
1177                 int mv_l0[2];
1178                 mv_l0[0] = (dist_scale_factor * mv_col[0] + 128) >> 8;
1179                 mv_l0[1] = (dist_scale_factor * mv_col[1] + 128) >> 8;
1180                 fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, ref0, 1);
1181                 fill_rectangle(&h-> mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mv_l0[0],mv_l0[1]), 4);
1182                 fill_rectangle(&h-> mv_cache[1][scan8[0]], 4, 4, 8, pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]), 4);
1183             }
1184         }else{
1185             for(i8=0; i8<4; i8++){
1186                 const int x8 = i8&1;
1187                 const int y8 = i8>>1;
1188                 int ref0, dist_scale_factor;
1189     
1190                 if(is_b8x8 && !IS_DIRECT(h->sub_mb_type[i8]))
1191                     continue;
1192                 h->sub_mb_type[i8] = sub_mb_type;
1193                 if(IS_INTRA(mb_type_col)){
1194                     fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, 0, 1);
1195                     fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);
1196                     fill_rectangle(&h-> mv_cache[0][scan8[i8*4]], 2, 2, 8, 0, 4);
1197                     fill_rectangle(&h-> mv_cache[1][scan8[i8*4]], 2, 2, 8, 0, 4);
1198                     continue;
1199                 }
1200     
1201                 ref0 = l1ref0[x8 + y8*h->b8_stride];
1202                 dist_scale_factor = h->dist_scale_factor[ref0];
1203     
1204                 fill_rectangle(&h->ref_cache[0][scan8[i8*4]], 2, 2, 8, ref0, 1);
1205                 fill_rectangle(&h->ref_cache[1][scan8[i8*4]], 2, 2, 8, 0, 1);
1206                 for(i4=0; i4<4; i4++){
1207                     const int16_t *mv_col = l1mv0[x8*2 + (i4&1) + (y8*2 + (i4>>1))*h->b_stride];
1208                     int16_t *mv_l0 = h->mv_cache[0][scan8[i8*4+i4]];
1209                     mv_l0[0] = (dist_scale_factor * mv_col[0] + 128) >> 8;
1210                     mv_l0[1] = (dist_scale_factor * mv_col[1] + 128) >> 8;
1211                     *(uint32_t*)h->mv_cache[1][scan8[i8*4+i4]] =
1212                         pack16to32(mv_l0[0]-mv_col[0],mv_l0[1]-mv_col[1]);
1213                 }
1214             }
1215         }
1216     }
1217 }
1218
1219 static inline void write_back_motion(H264Context *h, int mb_type){
1220     MpegEncContext * const s = &h->s;
1221     const int b_xy = 4*s->mb_x + 4*s->mb_y*h->b_stride;
1222     const int b8_xy= 2*s->mb_x + 2*s->mb_y*h->b8_stride;
1223     int list;
1224
1225     for(list=0; list<2; list++){
1226         int y;
1227         if((!IS_8X8(mb_type)) && !USES_LIST(mb_type, list)){
1228             if(1){ //FIXME skip or never read if mb_type doesnt use it
1229                 for(y=0; y<4; y++){
1230                     *(uint64_t*)s->current_picture.motion_val[list][b_xy + 0 + y*h->b_stride]=
1231                     *(uint64_t*)s->current_picture.motion_val[list][b_xy + 2 + y*h->b_stride]= 0;
1232                 }
1233                 if( h->pps.cabac ) {
1234                     /* FIXME needed ? */
1235                     for(y=0; y<4; y++){
1236                         *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]=
1237                         *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= 0;
1238                     }
1239                 }
1240                 for(y=0; y<2; y++){
1241                     *(uint16_t*)&s->current_picture.ref_index[list][b8_xy + y*h->b8_stride]= (LIST_NOT_USED&0xFF)*0x0101;
1242                 }
1243             }
1244             continue;
1245         }
1246         
1247         for(y=0; y<4; y++){
1248             *(uint64_t*)s->current_picture.motion_val[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mv_cache[list][scan8[0]+0 + 8*y];
1249             *(uint64_t*)s->current_picture.motion_val[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mv_cache[list][scan8[0]+2 + 8*y];
1250         }
1251         if( h->pps.cabac ) {
1252             for(y=0; y<4; y++){
1253                 *(uint64_t*)h->mvd_table[list][b_xy + 0 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+0 + 8*y];
1254                 *(uint64_t*)h->mvd_table[list][b_xy + 2 + y*h->b_stride]= *(uint64_t*)h->mvd_cache[list][scan8[0]+2 + 8*y];
1255             }
1256         }
1257         for(y=0; y<2; y++){
1258             s->current_picture.ref_index[list][b8_xy + 0 + y*h->b8_stride]= h->ref_cache[list][scan8[0]+0 + 16*y];
1259             s->current_picture.ref_index[list][b8_xy + 1 + y*h->b8_stride]= h->ref_cache[list][scan8[0]+2 + 16*y];
1260         }
1261     }
1262     
1263     if(h->slice_type == B_TYPE && h->pps.cabac){
1264         if(IS_8X8(mb_type)){
1265             h->direct_table[b8_xy+1+0*h->b8_stride] = IS_DIRECT(h->sub_mb_type[1]) ? 1 : 0;
1266             h->direct_table[b8_xy+0+1*h->b8_stride] = IS_DIRECT(h->sub_mb_type[2]) ? 1 : 0;
1267             h->direct_table[b8_xy+1+1*h->b8_stride] = IS_DIRECT(h->sub_mb_type[3]) ? 1 : 0;
1268         }
1269     }
1270 }
1271
1272 /**
1273  * Decodes a network abstraction layer unit.
1274  * @param consumed is the number of bytes used as input
1275  * @param length is the length of the array
1276  * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp ttailing?
1277  * @returns decoded bytes, might be src+1 if no escapes 
1278  */
1279 static uint8_t *decode_nal(H264Context *h, uint8_t *src, int *dst_length, int *consumed, int length){
1280     int i, si, di;
1281     uint8_t *dst;
1282
1283 //    src[0]&0x80;              //forbidden bit
1284     h->nal_ref_idc= src[0]>>5;
1285     h->nal_unit_type= src[0]&0x1F;
1286
1287     src++; length--;
1288 #if 0    
1289     for(i=0; i<length; i++)
1290         printf("%2X ", src[i]);
1291 #endif
1292     for(i=0; i+1<length; i+=2){
1293         if(src[i]) continue;
1294         if(i>0 && src[i-1]==0) i--;
1295         if(i+2<length && src[i+1]==0 && src[i+2]<=3){
1296             if(src[i+2]!=3){
1297                 /* startcode, so we must be past the end */
1298                 length=i;
1299             }
1300             break;
1301         }
1302     }
1303
1304     if(i>=length-1){ //no escaped 0
1305         *dst_length= length;
1306         *consumed= length+1; //+1 for the header
1307         return src; 
1308     }
1309
1310     h->rbsp_buffer= av_fast_realloc(h->rbsp_buffer, &h->rbsp_buffer_size, length);
1311     dst= h->rbsp_buffer;
1312
1313 //printf("deoding esc\n");
1314     si=di=0;
1315     while(si<length){ 
1316         //remove escapes (very rare 1:2^22)
1317         if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){
1318             if(src[si+2]==3){ //escape
1319                 dst[di++]= 0;
1320                 dst[di++]= 0;
1321                 si+=3;
1322                 continue;
1323             }else //next start code
1324                 break;
1325         }
1326
1327         dst[di++]= src[si++];
1328     }
1329
1330     *dst_length= di;
1331     *consumed= si + 1;//+1 for the header
1332 //FIXME store exact number of bits in the getbitcontext (its needed for decoding)
1333     return dst;
1334 }
1335
1336 #if 0
1337 /**
1338  * @param src the data which should be escaped
1339  * @param dst the target buffer, dst+1 == src is allowed as a special case
1340  * @param length the length of the src data
1341  * @param dst_length the length of the dst array
1342  * @returns length of escaped data in bytes or -1 if an error occured
1343  */
1344 static int encode_nal(H264Context *h, uint8_t *dst, uint8_t *src, int length, int dst_length){
1345     int i, escape_count, si, di;
1346     uint8_t *temp;
1347     
1348     assert(length>=0);
1349     assert(dst_length>0);
1350     
1351     dst[0]= (h->nal_ref_idc<<5) + h->nal_unit_type;
1352
1353     if(length==0) return 1;
1354
1355     escape_count= 0;
1356     for(i=0; i<length; i+=2){
1357         if(src[i]) continue;
1358         if(i>0 && src[i-1]==0) 
1359             i--;
1360         if(i+2<length && src[i+1]==0 && src[i+2]<=3){
1361             escape_count++;
1362             i+=2;
1363         }
1364     }
1365     
1366     if(escape_count==0){ 
1367         if(dst+1 != src)
1368             memcpy(dst+1, src, length);
1369         return length + 1;
1370     }
1371     
1372     if(length + escape_count + 1> dst_length)
1373         return -1;
1374
1375     //this should be damn rare (hopefully)
1376
1377     h->rbsp_buffer= av_fast_realloc(h->rbsp_buffer, &h->rbsp_buffer_size, length + escape_count);
1378     temp= h->rbsp_buffer;
1379 //printf("encoding esc\n");
1380     
1381     si= 0;
1382     di= 0;
1383     while(si < length){
1384         if(si+2<length && src[si]==0 && src[si+1]==0 && src[si+2]<=3){
1385             temp[di++]= 0; si++;
1386             temp[di++]= 0; si++;
1387             temp[di++]= 3; 
1388             temp[di++]= src[si++];
1389         }
1390         else
1391             temp[di++]= src[si++];
1392     }
1393     memcpy(dst+1, temp, length+escape_count);
1394     
1395     assert(di == length+escape_count);
1396     
1397     return di + 1;
1398 }
1399
1400 /**
1401  * write 1,10,100,1000,... for alignment, yes its exactly inverse to mpeg4
1402  */
1403 static void encode_rbsp_trailing(PutBitContext *pb){
1404     int length;
1405     put_bits(pb, 1, 1);
1406     length= (-put_bits_count(pb))&7;
1407     if(length) put_bits(pb, length, 0);
1408 }
1409 #endif
1410
1411 /**
1412  * identifies the exact end of the bitstream
1413  * @return the length of the trailing, or 0 if damaged
1414  */
1415 static int decode_rbsp_trailing(uint8_t *src){
1416     int v= *src;
1417     int r;
1418
1419     tprintf("rbsp trailing %X\n", v);
1420
1421     for(r=1; r<9; r++){
1422         if(v&1) return r;
1423         v>>=1;
1424     }
1425     return 0;
1426 }
1427
1428 /**
1429  * idct tranforms the 16 dc values and dequantize them.
1430  * @param qp quantization parameter
1431  */
1432 static void h264_luma_dc_dequant_idct_c(DCTELEM *block, int qp){
1433     const int qmul= dequant_coeff[qp][0];
1434 #define stride 16
1435     int i;
1436     int temp[16]; //FIXME check if this is a good idea
1437     static const int x_offset[4]={0, 1*stride, 4* stride,  5*stride};
1438     static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
1439
1440 //memset(block, 64, 2*256);
1441 //return;
1442     for(i=0; i<4; i++){
1443         const int offset= y_offset[i];
1444         const int z0= block[offset+stride*0] + block[offset+stride*4];
1445         const int z1= block[offset+stride*0] - block[offset+stride*4];
1446         const int z2= block[offset+stride*1] - block[offset+stride*5];
1447         const int z3= block[offset+stride*1] + block[offset+stride*5];
1448
1449         temp[4*i+0]= z0+z3;
1450         temp[4*i+1]= z1+z2;
1451         temp[4*i+2]= z1-z2;
1452         temp[4*i+3]= z0-z3;
1453     }
1454
1455     for(i=0; i<4; i++){
1456         const int offset= x_offset[i];
1457         const int z0= temp[4*0+i] + temp[4*2+i];
1458         const int z1= temp[4*0+i] - temp[4*2+i];
1459         const int z2= temp[4*1+i] - temp[4*3+i];
1460         const int z3= temp[4*1+i] + temp[4*3+i];
1461
1462         block[stride*0 +offset]= ((z0 + z3)*qmul + 2)>>2; //FIXME think about merging this into decode_resdual
1463         block[stride*2 +offset]= ((z1 + z2)*qmul + 2)>>2;
1464         block[stride*8 +offset]= ((z1 - z2)*qmul + 2)>>2;
1465         block[stride*10+offset]= ((z0 - z3)*qmul + 2)>>2;
1466     }
1467 }
1468
1469 #if 0
1470 /**
1471  * dct tranforms the 16 dc values.
1472  * @param qp quantization parameter ??? FIXME
1473  */
1474 static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){
1475 //    const int qmul= dequant_coeff[qp][0];
1476     int i;
1477     int temp[16]; //FIXME check if this is a good idea
1478     static const int x_offset[4]={0, 1*stride, 4* stride,  5*stride};
1479     static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
1480
1481     for(i=0; i<4; i++){
1482         const int offset= y_offset[i];
1483         const int z0= block[offset+stride*0] + block[offset+stride*4];
1484         const int z1= block[offset+stride*0] - block[offset+stride*4];
1485         const int z2= block[offset+stride*1] - block[offset+stride*5];
1486         const int z3= block[offset+stride*1] + block[offset+stride*5];
1487
1488         temp[4*i+0]= z0+z3;
1489         temp[4*i+1]= z1+z2;
1490         temp[4*i+2]= z1-z2;
1491         temp[4*i+3]= z0-z3;
1492     }
1493
1494     for(i=0; i<4; i++){
1495         const int offset= x_offset[i];
1496         const int z0= temp[4*0+i] + temp[4*2+i];
1497         const int z1= temp[4*0+i] - temp[4*2+i];
1498         const int z2= temp[4*1+i] - temp[4*3+i];
1499         const int z3= temp[4*1+i] + temp[4*3+i];
1500
1501         block[stride*0 +offset]= (z0 + z3)>>1;
1502         block[stride*2 +offset]= (z1 + z2)>>1;
1503         block[stride*8 +offset]= (z1 - z2)>>1;
1504         block[stride*10+offset]= (z0 - z3)>>1;
1505     }
1506 }
1507 #endif
1508
1509 #undef xStride
1510 #undef stride
1511
1512 static void chroma_dc_dequant_idct_c(DCTELEM *block, int qp){
1513     const int qmul= dequant_coeff[qp][0];
1514     const int stride= 16*2;
1515     const int xStride= 16;
1516     int a,b,c,d,e;
1517
1518     a= block[stride*0 + xStride*0];
1519     b= block[stride*0 + xStride*1];
1520     c= block[stride*1 + xStride*0];
1521     d= block[stride*1 + xStride*1];
1522
1523     e= a-b;
1524     a= a+b;
1525     b= c-d;
1526     c= c+d;
1527
1528     block[stride*0 + xStride*0]= ((a+c)*qmul + 0)>>1;
1529     block[stride*0 + xStride*1]= ((e+b)*qmul + 0)>>1;
1530     block[stride*1 + xStride*0]= ((a-c)*qmul + 0)>>1;
1531     block[stride*1 + xStride*1]= ((e-b)*qmul + 0)>>1;
1532 }
1533
1534 #if 0
1535 static void chroma_dc_dct_c(DCTELEM *block){
1536     const int stride= 16*2;
1537     const int xStride= 16;
1538     int a,b,c,d,e;
1539
1540     a= block[stride*0 + xStride*0];
1541     b= block[stride*0 + xStride*1];
1542     c= block[stride*1 + xStride*0];
1543     d= block[stride*1 + xStride*1];
1544
1545     e= a-b;
1546     a= a+b;
1547     b= c-d;
1548     c= c+d;
1549
1550     block[stride*0 + xStride*0]= (a+c);
1551     block[stride*0 + xStride*1]= (e+b);
1552     block[stride*1 + xStride*0]= (a-c);
1553     block[stride*1 + xStride*1]= (e-b);
1554 }
1555 #endif
1556
1557 /**
1558  * gets the chroma qp.
1559  */
1560 static inline int get_chroma_qp(H264Context *h, int qscale){
1561     
1562     return chroma_qp[clip(qscale + h->pps.chroma_qp_index_offset, 0, 51)];
1563 }
1564
1565
1566 #if 0
1567 static void h264_diff_dct_c(DCTELEM *block, uint8_t *src1, uint8_t *src2, int stride){
1568     int i;
1569     //FIXME try int temp instead of block
1570     
1571     for(i=0; i<4; i++){
1572         const int d0= src1[0 + i*stride] - src2[0 + i*stride];
1573         const int d1= src1[1 + i*stride] - src2[1 + i*stride];
1574         const int d2= src1[2 + i*stride] - src2[2 + i*stride];
1575         const int d3= src1[3 + i*stride] - src2[3 + i*stride];
1576         const int z0= d0 + d3;
1577         const int z3= d0 - d3;
1578         const int z1= d1 + d2;
1579         const int z2= d1 - d2;
1580         
1581         block[0 + 4*i]=   z0 +   z1;
1582         block[1 + 4*i]= 2*z3 +   z2;
1583         block[2 + 4*i]=   z0 -   z1;
1584         block[3 + 4*i]=   z3 - 2*z2;
1585     }    
1586
1587     for(i=0; i<4; i++){
1588         const int z0= block[0*4 + i] + block[3*4 + i];
1589         const int z3= block[0*4 + i] - block[3*4 + i];
1590         const int z1= block[1*4 + i] + block[2*4 + i];
1591         const int z2= block[1*4 + i] - block[2*4 + i];
1592         
1593         block[0*4 + i]=   z0 +   z1;
1594         block[1*4 + i]= 2*z3 +   z2;
1595         block[2*4 + i]=   z0 -   z1;
1596         block[3*4 + i]=   z3 - 2*z2;
1597     }
1598 }
1599 #endif
1600
1601 //FIXME need to check that this doesnt overflow signed 32 bit for low qp, iam not sure, its very close
1602 //FIXME check that gcc inlines this (and optimizes intra & seperate_dc stuff away)
1603 static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, int intra, int seperate_dc){
1604     int i;
1605     const int * const quant_table= quant_coeff[qscale];
1606     const int bias= intra ? (1<<QUANT_SHIFT)/3 : (1<<QUANT_SHIFT)/6;
1607     const unsigned int threshold1= (1<<QUANT_SHIFT) - bias - 1;
1608     const unsigned int threshold2= (threshold1<<1);
1609     int last_non_zero;
1610
1611     if(seperate_dc){
1612         if(qscale<=18){
1613             //avoid overflows
1614             const int dc_bias= intra ? (1<<(QUANT_SHIFT-2))/3 : (1<<(QUANT_SHIFT-2))/6;
1615             const unsigned int dc_threshold1= (1<<(QUANT_SHIFT-2)) - dc_bias - 1;
1616             const unsigned int dc_threshold2= (dc_threshold1<<1);
1617
1618             int level= block[0]*quant_coeff[qscale+18][0];
1619             if(((unsigned)(level+dc_threshold1))>dc_threshold2){
1620                 if(level>0){
1621                     level= (dc_bias + level)>>(QUANT_SHIFT-2);
1622                     block[0]= level;
1623                 }else{
1624                     level= (dc_bias - level)>>(QUANT_SHIFT-2);
1625                     block[0]= -level;
1626                 }
1627 //                last_non_zero = i;
1628             }else{
1629                 block[0]=0;
1630             }
1631         }else{
1632             const int dc_bias= intra ? (1<<(QUANT_SHIFT+1))/3 : (1<<(QUANT_SHIFT+1))/6;
1633             const unsigned int dc_threshold1= (1<<(QUANT_SHIFT+1)) - dc_bias - 1;
1634             const unsigned int dc_threshold2= (dc_threshold1<<1);
1635
1636             int level= block[0]*quant_table[0];
1637             if(((unsigned)(level+dc_threshold1))>dc_threshold2){
1638                 if(level>0){
1639                     level= (dc_bias + level)>>(QUANT_SHIFT+1);
1640                     block[0]= level;
1641                 }else{
1642                     level= (dc_bias - level)>>(QUANT_SHIFT+1);
1643                     block[0]= -level;
1644                 }
1645 //                last_non_zero = i;
1646             }else{
1647                 block[0]=0;
1648             }
1649         }
1650         last_non_zero= 0;
1651         i=1;
1652     }else{
1653         last_non_zero= -1;
1654         i=0;
1655     }
1656
1657     for(; i<16; i++){
1658         const int j= scantable[i];
1659         int level= block[j]*quant_table[j];
1660
1661 //        if(   bias+level >= (1<<(QMAT_SHIFT - 3))
1662 //           || bias-level >= (1<<(QMAT_SHIFT - 3))){
1663         if(((unsigned)(level+threshold1))>threshold2){
1664             if(level>0){
1665                 level= (bias + level)>>QUANT_SHIFT;
1666                 block[j]= level;
1667             }else{
1668                 level= (bias - level)>>QUANT_SHIFT;
1669                 block[j]= -level;
1670             }
1671             last_non_zero = i;
1672         }else{
1673             block[j]=0;
1674         }
1675     }
1676
1677     return last_non_zero;
1678 }
1679
1680 static void pred4x4_vertical_c(uint8_t *src, uint8_t *topright, int stride){
1681     const uint32_t a= ((uint32_t*)(src-stride))[0];
1682     ((uint32_t*)(src+0*stride))[0]= a;
1683     ((uint32_t*)(src+1*stride))[0]= a;
1684     ((uint32_t*)(src+2*stride))[0]= a;
1685     ((uint32_t*)(src+3*stride))[0]= a;
1686 }
1687
1688 static void pred4x4_horizontal_c(uint8_t *src, uint8_t *topright, int stride){
1689     ((uint32_t*)(src+0*stride))[0]= src[-1+0*stride]*0x01010101;
1690     ((uint32_t*)(src+1*stride))[0]= src[-1+1*stride]*0x01010101;
1691     ((uint32_t*)(src+2*stride))[0]= src[-1+2*stride]*0x01010101;
1692     ((uint32_t*)(src+3*stride))[0]= src[-1+3*stride]*0x01010101;
1693 }
1694
1695 static void pred4x4_dc_c(uint8_t *src, uint8_t *topright, int stride){
1696     const int dc= (  src[-stride] + src[1-stride] + src[2-stride] + src[3-stride]
1697                    + src[-1+0*stride] + src[-1+1*stride] + src[-1+2*stride] + src[-1+3*stride] + 4) >>3;
1698     
1699     ((uint32_t*)(src+0*stride))[0]= 
1700     ((uint32_t*)(src+1*stride))[0]= 
1701     ((uint32_t*)(src+2*stride))[0]= 
1702     ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; 
1703 }
1704
1705 static void pred4x4_left_dc_c(uint8_t *src, uint8_t *topright, int stride){
1706     const int dc= (  src[-1+0*stride] + src[-1+1*stride] + src[-1+2*stride] + src[-1+3*stride] + 2) >>2;
1707     
1708     ((uint32_t*)(src+0*stride))[0]= 
1709     ((uint32_t*)(src+1*stride))[0]= 
1710     ((uint32_t*)(src+2*stride))[0]= 
1711     ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; 
1712 }
1713
1714 static void pred4x4_top_dc_c(uint8_t *src, uint8_t *topright, int stride){
1715     const int dc= (  src[-stride] + src[1-stride] + src[2-stride] + src[3-stride] + 2) >>2;
1716     
1717     ((uint32_t*)(src+0*stride))[0]= 
1718     ((uint32_t*)(src+1*stride))[0]= 
1719     ((uint32_t*)(src+2*stride))[0]= 
1720     ((uint32_t*)(src+3*stride))[0]= dc* 0x01010101; 
1721 }
1722
1723 static void pred4x4_128_dc_c(uint8_t *src, uint8_t *topright, int stride){
1724     ((uint32_t*)(src+0*stride))[0]= 
1725     ((uint32_t*)(src+1*stride))[0]= 
1726     ((uint32_t*)(src+2*stride))[0]= 
1727     ((uint32_t*)(src+3*stride))[0]= 128U*0x01010101U;
1728 }
1729
1730
1731 #define LOAD_TOP_RIGHT_EDGE\
1732     const int t4= topright[0];\
1733     const int t5= topright[1];\
1734     const int t6= topright[2];\
1735     const int t7= topright[3];\
1736
1737 #define LOAD_LEFT_EDGE\
1738     const int l0= src[-1+0*stride];\
1739     const int l1= src[-1+1*stride];\
1740     const int l2= src[-1+2*stride];\
1741     const int l3= src[-1+3*stride];\
1742
1743 #define LOAD_TOP_EDGE\
1744     const int t0= src[ 0-1*stride];\
1745     const int t1= src[ 1-1*stride];\
1746     const int t2= src[ 2-1*stride];\
1747     const int t3= src[ 3-1*stride];\
1748
1749 static void pred4x4_down_right_c(uint8_t *src, uint8_t *topright, int stride){
1750     const int lt= src[-1-1*stride];
1751     LOAD_TOP_EDGE
1752     LOAD_LEFT_EDGE
1753
1754     src[0+3*stride]=(l3 + 2*l2 + l1 + 2)>>2; 
1755     src[0+2*stride]=
1756     src[1+3*stride]=(l2 + 2*l1 + l0 + 2)>>2; 
1757     src[0+1*stride]=
1758     src[1+2*stride]=
1759     src[2+3*stride]=(l1 + 2*l0 + lt + 2)>>2; 
1760     src[0+0*stride]=
1761     src[1+1*stride]=
1762     src[2+2*stride]=
1763     src[3+3*stride]=(l0 + 2*lt + t0 + 2)>>2; 
1764     src[1+0*stride]=
1765     src[2+1*stride]=
1766     src[3+2*stride]=(lt + 2*t0 + t1 + 2)>>2;
1767     src[2+0*stride]=
1768     src[3+1*stride]=(t0 + 2*t1 + t2 + 2)>>2;
1769     src[3+0*stride]=(t1 + 2*t2 + t3 + 2)>>2;
1770 }
1771
1772 static void pred4x4_down_left_c(uint8_t *src, uint8_t *topright, int stride){
1773     LOAD_TOP_EDGE    
1774     LOAD_TOP_RIGHT_EDGE    
1775 //    LOAD_LEFT_EDGE    
1776
1777     src[0+0*stride]=(t0 + t2 + 2*t1 + 2)>>2;
1778     src[1+0*stride]=
1779     src[0+1*stride]=(t1 + t3 + 2*t2 + 2)>>2;
1780     src[2+0*stride]=
1781     src[1+1*stride]=
1782     src[0+2*stride]=(t2 + t4 + 2*t3 + 2)>>2;
1783     src[3+0*stride]=
1784     src[2+1*stride]=
1785     src[1+2*stride]=
1786     src[0+3*stride]=(t3 + t5 + 2*t4 + 2)>>2;
1787     src[3+1*stride]=
1788     src[2+2*stride]=
1789     src[1+3*stride]=(t4 + t6 + 2*t5 + 2)>>2;
1790     src[3+2*stride]=
1791     src[2+3*stride]=(t5 + t7 + 2*t6 + 2)>>2;
1792     src[3+3*stride]=(t6 + 3*t7 + 2)>>2;
1793 }
1794
1795 static void pred4x4_vertical_right_c(uint8_t *src, uint8_t *topright, int stride){
1796     const int lt= src[-1-1*stride];
1797     LOAD_TOP_EDGE    
1798     LOAD_LEFT_EDGE    
1799     const __attribute__((unused)) int unu= l3;
1800
1801     src[0+0*stride]=
1802     src[1+2*stride]=(lt + t0 + 1)>>1;
1803     src[1+0*stride]=
1804     src[2+2*stride]=(t0 + t1 + 1)>>1;
1805     src[2+0*stride]=
1806     src[3+2*stride]=(t1 + t2 + 1)>>1;
1807     src[3+0*stride]=(t2 + t3 + 1)>>1;
1808     src[0+1*stride]=
1809     src[1+3*stride]=(l0 + 2*lt + t0 + 2)>>2;
1810     src[1+1*stride]=
1811     src[2+3*stride]=(lt + 2*t0 + t1 + 2)>>2;
1812     src[2+1*stride]=
1813     src[3+3*stride]=(t0 + 2*t1 + t2 + 2)>>2;
1814     src[3+1*stride]=(t1 + 2*t2 + t3 + 2)>>2;
1815     src[0+2*stride]=(lt + 2*l0 + l1 + 2)>>2;
1816     src[0+3*stride]=(l0 + 2*l1 + l2 + 2)>>2;
1817 }
1818
1819 static void pred4x4_vertical_left_c(uint8_t *src, uint8_t *topright, int stride){
1820     LOAD_TOP_EDGE    
1821     LOAD_TOP_RIGHT_EDGE    
1822     const __attribute__((unused)) int unu= t7;
1823
1824     src[0+0*stride]=(t0 + t1 + 1)>>1;
1825     src[1+0*stride]=
1826     src[0+2*stride]=(t1 + t2 + 1)>>1;
1827     src[2+0*stride]=
1828     src[1+2*stride]=(t2 + t3 + 1)>>1;
1829     src[3+0*stride]=
1830     src[2+2*stride]=(t3 + t4+ 1)>>1;
1831     src[3+2*stride]=(t4 + t5+ 1)>>1;
1832     src[0+1*stride]=(t0 + 2*t1 + t2 + 2)>>2;
1833     src[1+1*stride]=
1834     src[0+3*stride]=(t1 + 2*t2 + t3 + 2)>>2;
1835     src[2+1*stride]=
1836     src[1+3*stride]=(t2 + 2*t3 + t4 + 2)>>2;
1837     src[3+1*stride]=
1838     src[2+3*stride]=(t3 + 2*t4 + t5 + 2)>>2;
1839     src[3+3*stride]=(t4 + 2*t5 + t6 + 2)>>2;
1840 }
1841
1842 static void pred4x4_horizontal_up_c(uint8_t *src, uint8_t *topright, int stride){
1843     LOAD_LEFT_EDGE    
1844
1845     src[0+0*stride]=(l0 + l1 + 1)>>1;
1846     src[1+0*stride]=(l0 + 2*l1 + l2 + 2)>>2;
1847     src[2+0*stride]=
1848     src[0+1*stride]=(l1 + l2 + 1)>>1;
1849     src[3+0*stride]=
1850     src[1+1*stride]=(l1 + 2*l2 + l3 + 2)>>2;
1851     src[2+1*stride]=
1852     src[0+2*stride]=(l2 + l3 + 1)>>1;
1853     src[3+1*stride]=
1854     src[1+2*stride]=(l2 + 2*l3 + l3 + 2)>>2;
1855     src[3+2*stride]=
1856     src[1+3*stride]=
1857     src[0+3*stride]=
1858     src[2+2*stride]=
1859     src[2+3*stride]=
1860     src[3+3*stride]=l3;
1861 }
1862     
1863 static void pred4x4_horizontal_down_c(uint8_t *src, uint8_t *topright, int stride){
1864     const int lt= src[-1-1*stride];
1865     LOAD_TOP_EDGE    
1866     LOAD_LEFT_EDGE    
1867     const __attribute__((unused)) int unu= t3;
1868
1869     src[0+0*stride]=
1870     src[2+1*stride]=(lt + l0 + 1)>>1;
1871     src[1+0*stride]=
1872     src[3+1*stride]=(l0 + 2*lt + t0 + 2)>>2;
1873     src[2+0*stride]=(lt + 2*t0 + t1 + 2)>>2;
1874     src[3+0*stride]=(t0 + 2*t1 + t2 + 2)>>2;
1875     src[0+1*stride]=
1876     src[2+2*stride]=(l0 + l1 + 1)>>1;
1877     src[1+1*stride]=
1878     src[3+2*stride]=(lt + 2*l0 + l1 + 2)>>2;
1879     src[0+2*stride]=
1880     src[2+3*stride]=(l1 + l2+ 1)>>1;
1881     src[1+2*stride]=
1882     src[3+3*stride]=(l0 + 2*l1 + l2 + 2)>>2;
1883     src[0+3*stride]=(l2 + l3 + 1)>>1;
1884     src[1+3*stride]=(l1 + 2*l2 + l3 + 2)>>2;
1885 }
1886
1887 static void pred16x16_vertical_c(uint8_t *src, int stride){
1888     int i;
1889     const uint32_t a= ((uint32_t*)(src-stride))[0];
1890     const uint32_t b= ((uint32_t*)(src-stride))[1];
1891     const uint32_t c= ((uint32_t*)(src-stride))[2];
1892     const uint32_t d= ((uint32_t*)(src-stride))[3];
1893     
1894     for(i=0; i<16; i++){
1895         ((uint32_t*)(src+i*stride))[0]= a;
1896         ((uint32_t*)(src+i*stride))[1]= b;
1897         ((uint32_t*)(src+i*stride))[2]= c;
1898         ((uint32_t*)(src+i*stride))[3]= d;
1899     }
1900 }
1901
1902 static void pred16x16_horizontal_c(uint8_t *src, int stride){
1903     int i;
1904
1905     for(i=0; i<16; i++){
1906         ((uint32_t*)(src+i*stride))[0]=
1907         ((uint32_t*)(src+i*stride))[1]=
1908         ((uint32_t*)(src+i*stride))[2]=
1909         ((uint32_t*)(src+i*stride))[3]= src[-1+i*stride]*0x01010101;
1910     }
1911 }
1912
1913 static void pred16x16_dc_c(uint8_t *src, int stride){
1914     int i, dc=0;
1915
1916     for(i=0;i<16; i++){
1917         dc+= src[-1+i*stride];
1918     }
1919     
1920     for(i=0;i<16; i++){
1921         dc+= src[i-stride];
1922     }
1923
1924     dc= 0x01010101*((dc + 16)>>5);
1925
1926     for(i=0; i<16; i++){
1927         ((uint32_t*)(src+i*stride))[0]=
1928         ((uint32_t*)(src+i*stride))[1]=
1929         ((uint32_t*)(src+i*stride))[2]=
1930         ((uint32_t*)(src+i*stride))[3]= dc;
1931     }
1932 }
1933
1934 static void pred16x16_left_dc_c(uint8_t *src, int stride){
1935     int i, dc=0;
1936
1937     for(i=0;i<16; i++){
1938         dc+= src[-1+i*stride];
1939     }
1940     
1941     dc= 0x01010101*((dc + 8)>>4);
1942
1943     for(i=0; i<16; i++){
1944         ((uint32_t*)(src+i*stride))[0]=
1945         ((uint32_t*)(src+i*stride))[1]=
1946         ((uint32_t*)(src+i*stride))[2]=
1947         ((uint32_t*)(src+i*stride))[3]= dc;
1948     }
1949 }
1950
1951 static void pred16x16_top_dc_c(uint8_t *src, int stride){
1952     int i, dc=0;
1953
1954     for(i=0;i<16; i++){
1955         dc+= src[i-stride];
1956     }
1957     dc= 0x01010101*((dc + 8)>>4);
1958
1959     for(i=0; i<16; i++){
1960         ((uint32_t*)(src+i*stride))[0]=
1961         ((uint32_t*)(src+i*stride))[1]=
1962         ((uint32_t*)(src+i*stride))[2]=
1963         ((uint32_t*)(src+i*stride))[3]= dc;
1964     }
1965 }
1966
1967 static void pred16x16_128_dc_c(uint8_t *src, int stride){
1968     int i;
1969
1970     for(i=0; i<16; i++){
1971         ((uint32_t*)(src+i*stride))[0]=
1972         ((uint32_t*)(src+i*stride))[1]=
1973         ((uint32_t*)(src+i*stride))[2]=
1974         ((uint32_t*)(src+i*stride))[3]= 0x01010101U*128U;
1975     }
1976 }
1977
1978 static inline void pred16x16_plane_compat_c(uint8_t *src, int stride, const int svq3){
1979   int i, j, k;
1980   int a;
1981   uint8_t *cm = cropTbl + MAX_NEG_CROP;
1982   const uint8_t * const src0 = src+7-stride;
1983   const uint8_t *src1 = src+8*stride-1;
1984   const uint8_t *src2 = src1-2*stride;      // == src+6*stride-1;
1985   int H = src0[1] - src0[-1];
1986   int V = src1[0] - src2[ 0];
1987   for(k=2; k<=8; ++k) {
1988     src1 += stride; src2 -= stride;
1989     H += k*(src0[k] - src0[-k]);
1990     V += k*(src1[0] - src2[ 0]);
1991   }
1992   if(svq3){
1993     H = ( 5*(H/4) ) / 16;
1994     V = ( 5*(V/4) ) / 16;
1995
1996     /* required for 100% accuracy */
1997     i = H; H = V; V = i;
1998   }else{
1999     H = ( 5*H+32 ) >> 6;
2000     V = ( 5*V+32 ) >> 6;
2001   }
2002
2003   a = 16*(src1[0] + src2[16] + 1) - 7*(V+H);
2004   for(j=16; j>0; --j) {
2005     int b = a;
2006     a += V;
2007     for(i=-16; i<0; i+=4) {
2008       src[16+i] = cm[ (b    ) >> 5 ];
2009       src[17+i] = cm[ (b+  H) >> 5 ];
2010       src[18+i] = cm[ (b+2*H) >> 5 ];
2011       src[19+i] = cm[ (b+3*H) >> 5 ];
2012       b += 4*H;
2013     }
2014     src += stride;
2015   }
2016 }
2017
2018 static void pred16x16_plane_c(uint8_t *src, int stride){
2019     pred16x16_plane_compat_c(src, stride, 0);
2020 }
2021
2022 static void pred8x8_vertical_c(uint8_t *src, int stride){
2023     int i;
2024     const uint32_t a= ((uint32_t*)(src-stride))[0];
2025     const uint32_t b= ((uint32_t*)(src-stride))[1];
2026     
2027     for(i=0; i<8; i++){
2028         ((uint32_t*)(src+i*stride))[0]= a;
2029         ((uint32_t*)(src+i*stride))[1]= b;
2030     }
2031 }
2032
2033 static void pred8x8_horizontal_c(uint8_t *src, int stride){
2034     int i;
2035
2036     for(i=0; i<8; i++){
2037         ((uint32_t*)(src+i*stride))[0]=
2038         ((uint32_t*)(src+i*stride))[1]= src[-1+i*stride]*0x01010101;
2039     }
2040 }
2041
2042 static void pred8x8_128_dc_c(uint8_t *src, int stride){
2043     int i;
2044
2045     for(i=0; i<4; i++){
2046         ((uint32_t*)(src+i*stride))[0]= 
2047         ((uint32_t*)(src+i*stride))[1]= 0x01010101U*128U;
2048     }
2049     for(i=4; i<8; i++){
2050         ((uint32_t*)(src+i*stride))[0]= 
2051         ((uint32_t*)(src+i*stride))[1]= 0x01010101U*128U;
2052     }
2053 }
2054
2055 static void pred8x8_left_dc_c(uint8_t *src, int stride){
2056     int i;
2057     int dc0, dc2;
2058
2059     dc0=dc2=0;
2060     for(i=0;i<4; i++){
2061         dc0+= src[-1+i*stride];
2062         dc2+= src[-1+(i+4)*stride];
2063     }
2064     dc0= 0x01010101*((dc0 + 2)>>2);
2065     dc2= 0x01010101*((dc2 + 2)>>2);
2066
2067     for(i=0; i<4; i++){
2068         ((uint32_t*)(src+i*stride))[0]=
2069         ((uint32_t*)(src+i*stride))[1]= dc0;
2070     }
2071     for(i=4; i<8; i++){
2072         ((uint32_t*)(src+i*stride))[0]=
2073         ((uint32_t*)(src+i*stride))[1]= dc2;
2074     }
2075 }
2076
2077 static void pred8x8_top_dc_c(uint8_t *src, int stride){
2078     int i;
2079     int dc0, dc1;
2080
2081     dc0=dc1=0;
2082     for(i=0;i<4; i++){
2083         dc0+= src[i-stride];
2084         dc1+= src[4+i-stride];
2085     }
2086     dc0= 0x01010101*((dc0 + 2)>>2);
2087     dc1= 0x01010101*((dc1 + 2)>>2);
2088
2089     for(i=0; i<4; i++){
2090         ((uint32_t*)(src+i*stride))[0]= dc0;
2091         ((uint32_t*)(src+i*stride))[1]= dc1;
2092     }
2093     for(i=4; i<8; i++){
2094         ((uint32_t*)(src+i*stride))[0]= dc0;
2095         ((uint32_t*)(src+i*stride))[1]= dc1;
2096     }
2097 }
2098
2099
2100 static void pred8x8_dc_c(uint8_t *src, int stride){
2101     int i;
2102     int dc0, dc1, dc2, dc3;
2103
2104     dc0=dc1=dc2=0;
2105     for(i=0;i<4; i++){
2106         dc0+= src[-1+i*stride] + src[i-stride];
2107         dc1+= src[4+i-stride];
2108         dc2+= src[-1+(i+4)*stride];
2109     }
2110     dc3= 0x01010101*((dc1 + dc2 + 4)>>3);
2111     dc0= 0x01010101*((dc0 + 4)>>3);
2112     dc1= 0x01010101*((dc1 + 2)>>2);
2113     dc2= 0x01010101*((dc2 + 2)>>2);
2114
2115     for(i=0; i<4; i++){
2116         ((uint32_t*)(src+i*stride))[0]= dc0;
2117         ((uint32_t*)(src+i*stride))[1]= dc1;
2118     }
2119     for(i=4; i<8; i++){
2120         ((uint32_t*)(src+i*stride))[0]= dc2;
2121         ((uint32_t*)(src+i*stride))[1]= dc3;
2122     }
2123 }
2124
2125 static void pred8x8_plane_c(uint8_t *src, int stride){
2126   int j, k;
2127   int a;
2128   uint8_t *cm = cropTbl + MAX_NEG_CROP;
2129   const uint8_t * const src0 = src+3-stride;
2130   const uint8_t *src1 = src+4*stride-1;
2131   const uint8_t *src2 = src1-2*stride;      // == src+2*stride-1;
2132   int H = src0[1] - src0[-1];
2133   int V = src1[0] - src2[ 0];
2134   for(k=2; k<=4; ++k) {
2135     src1 += stride; src2 -= stride;
2136     H += k*(src0[k] - src0[-k]);
2137     V += k*(src1[0] - src2[ 0]);
2138   }
2139   H = ( 17*H+16 ) >> 5;
2140   V = ( 17*V+16 ) >> 5;
2141
2142   a = 16*(src1[0] + src2[8]+1) - 3*(V+H);
2143   for(j=8; j>0; --j) {
2144     int b = a;
2145     a += V;
2146     src[0] = cm[ (b    ) >> 5 ];
2147     src[1] = cm[ (b+  H) >> 5 ];
2148     src[2] = cm[ (b+2*H) >> 5 ];
2149     src[3] = cm[ (b+3*H) >> 5 ];
2150     src[4] = cm[ (b+4*H) >> 5 ];
2151     src[5] = cm[ (b+5*H) >> 5 ];
2152     src[6] = cm[ (b+6*H) >> 5 ];
2153     src[7] = cm[ (b+7*H) >> 5 ];
2154     src += stride;
2155   }
2156 }
2157
2158 static inline void mc_dir_part(H264Context *h, Picture *pic, int n, int square, int chroma_height, int delta, int list,
2159                            uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
2160                            int src_x_offset, int src_y_offset,
2161                            qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op){
2162     MpegEncContext * const s = &h->s;
2163     const int mx= h->mv_cache[list][ scan8[n] ][0] + src_x_offset*8;
2164     const int my= h->mv_cache[list][ scan8[n] ][1] + src_y_offset*8;
2165     const int luma_xy= (mx&3) + ((my&3)<<2);
2166     uint8_t * src_y = pic->data[0] + (mx>>2) + (my>>2)*s->linesize;
2167     uint8_t * src_cb= pic->data[1] + (mx>>3) + (my>>3)*s->uvlinesize;
2168     uint8_t * src_cr= pic->data[2] + (mx>>3) + (my>>3)*s->uvlinesize;
2169     int extra_width= (s->flags&CODEC_FLAG_EMU_EDGE) ? 0 : 16; //FIXME increase edge?, IMHO not worth it
2170     int extra_height= extra_width;
2171     int emu=0;
2172     const int full_mx= mx>>2;
2173     const int full_my= my>>2;
2174     
2175     assert(pic->data[0]);
2176     
2177     if(mx&7) extra_width -= 3;
2178     if(my&7) extra_height -= 3;
2179     
2180     if(   full_mx < 0-extra_width 
2181        || full_my < 0-extra_height 
2182        || full_mx + 16/*FIXME*/ > s->width + extra_width 
2183        || full_my + 16/*FIXME*/ > s->height + extra_height){
2184         ff_emulated_edge_mc(s->edge_emu_buffer, src_y - 2 - 2*s->linesize, s->linesize, 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, s->width, s->height);
2185             src_y= s->edge_emu_buffer + 2 + 2*s->linesize;
2186         emu=1;
2187     }
2188     
2189     qpix_op[luma_xy](dest_y, src_y, s->linesize); //FIXME try variable height perhaps?
2190     if(!square){
2191         qpix_op[luma_xy](dest_y + delta, src_y + delta, s->linesize);
2192     }
2193     
2194     if(s->flags&CODEC_FLAG_GRAY) return;
2195     
2196     if(emu){
2197         ff_emulated_edge_mc(s->edge_emu_buffer, src_cb, s->uvlinesize, 9, 9/*FIXME*/, (mx>>3), (my>>3), s->width>>1, s->height>>1);
2198             src_cb= s->edge_emu_buffer;
2199     }
2200     chroma_op(dest_cb, src_cb, s->uvlinesize, chroma_height, mx&7, my&7);
2201
2202     if(emu){
2203         ff_emulated_edge_mc(s->edge_emu_buffer, src_cr, s->uvlinesize, 9, 9/*FIXME*/, (mx>>3), (my>>3), s->width>>1, s->height>>1);
2204             src_cr= s->edge_emu_buffer;
2205     }
2206     chroma_op(dest_cr, src_cr, s->uvlinesize, chroma_height, mx&7, my&7);
2207 }
2208
2209 static inline void mc_part_std(H264Context *h, int n, int square, int chroma_height, int delta,
2210                            uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
2211                            int x_offset, int y_offset,
2212                            qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
2213                            qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
2214                            int list0, int list1){
2215     MpegEncContext * const s = &h->s;
2216     qpel_mc_func *qpix_op=  qpix_put;
2217     h264_chroma_mc_func chroma_op= chroma_put;
2218     
2219     dest_y  += 2*x_offset + 2*y_offset*s->  linesize;
2220     dest_cb +=   x_offset +   y_offset*s->uvlinesize;
2221     dest_cr +=   x_offset +   y_offset*s->uvlinesize;
2222     x_offset += 8*s->mb_x;
2223     y_offset += 8*s->mb_y;
2224     
2225     if(list0){
2226         Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ];
2227         mc_dir_part(h, ref, n, square, chroma_height, delta, 0,
2228                            dest_y, dest_cb, dest_cr, x_offset, y_offset,
2229                            qpix_op, chroma_op);
2230
2231         qpix_op=  qpix_avg;
2232         chroma_op= chroma_avg;
2233     }
2234
2235     if(list1){
2236         Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ];
2237         mc_dir_part(h, ref, n, square, chroma_height, delta, 1,
2238                            dest_y, dest_cb, dest_cr, x_offset, y_offset,
2239                            qpix_op, chroma_op);
2240     }
2241 }
2242
2243 static inline void mc_part_weighted(H264Context *h, int n, int square, int chroma_height, int delta,
2244                            uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
2245                            int x_offset, int y_offset,
2246                            qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
2247                            h264_weight_func luma_weight_op, h264_weight_func chroma_weight_op,
2248                            h264_biweight_func luma_weight_avg, h264_biweight_func chroma_weight_avg,
2249                            int list0, int list1){
2250     MpegEncContext * const s = &h->s;
2251
2252     dest_y  += 2*x_offset + 2*y_offset*s->  linesize;
2253     dest_cb +=   x_offset +   y_offset*s->uvlinesize;
2254     dest_cr +=   x_offset +   y_offset*s->uvlinesize;
2255     x_offset += 8*s->mb_x;
2256     y_offset += 8*s->mb_y;
2257     
2258     if(list0 && list1){
2259         /* don't optimize for luma-only case, since B-frames usually
2260          * use implicit weights => chroma too. */
2261         uint8_t *tmp_cb = s->obmc_scratchpad;
2262         uint8_t *tmp_cr = tmp_cb + 8*s->uvlinesize;
2263         uint8_t *tmp_y  = tmp_cr + 8*s->uvlinesize;
2264         int refn0 = h->ref_cache[0][ scan8[n] ];
2265         int refn1 = h->ref_cache[1][ scan8[n] ];
2266
2267         mc_dir_part(h, &h->ref_list[0][refn0], n, square, chroma_height, delta, 0,
2268                     dest_y, dest_cb, dest_cr,
2269                     x_offset, y_offset, qpix_put, chroma_put);
2270         mc_dir_part(h, &h->ref_list[1][refn1], n, square, chroma_height, delta, 1,
2271                     tmp_y, tmp_cb, tmp_cr,
2272                     x_offset, y_offset, qpix_put, chroma_put);
2273
2274         if(h->use_weight == 2){
2275             int weight0 = h->implicit_weight[refn0][refn1];
2276             int weight1 = 64 - weight0;
2277             luma_weight_avg(  dest_y,  tmp_y,  s->  linesize, 5, weight0, weight1, 0, 0);
2278             chroma_weight_avg(dest_cb, tmp_cb, s->uvlinesize, 5, weight0, weight1, 0, 0);
2279             chroma_weight_avg(dest_cr, tmp_cr, s->uvlinesize, 5, weight0, weight1, 0, 0);
2280         }else{
2281             luma_weight_avg(dest_y, tmp_y, s->linesize, h->luma_log2_weight_denom,
2282                             h->luma_weight[0][refn0], h->luma_weight[1][refn1], 
2283                             h->luma_offset[0][refn0], h->luma_offset[1][refn1]);
2284             chroma_weight_avg(dest_cb, tmp_cb, s->uvlinesize, h->chroma_log2_weight_denom,
2285                             h->chroma_weight[0][refn0][0], h->chroma_weight[1][refn1][0], 
2286                             h->chroma_offset[0][refn0][0], h->chroma_offset[1][refn1][0]);
2287             chroma_weight_avg(dest_cr, tmp_cr, s->uvlinesize, h->chroma_log2_weight_denom,
2288                             h->chroma_weight[0][refn0][1], h->chroma_weight[1][refn1][1], 
2289                             h->chroma_offset[0][refn0][1], h->chroma_offset[1][refn1][1]);
2290         }
2291     }else{
2292         int list = list1 ? 1 : 0;
2293         int refn = h->ref_cache[list][ scan8[n] ];
2294         Picture *ref= &h->ref_list[list][refn];
2295         mc_dir_part(h, ref, n, square, chroma_height, delta, list,
2296                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
2297                     qpix_put, chroma_put);
2298
2299         luma_weight_op(dest_y, s->linesize, h->luma_log2_weight_denom,
2300                        h->luma_weight[list][refn], h->luma_offset[list][refn]);
2301         if(h->use_weight_chroma){
2302             chroma_weight_op(dest_cb, s->uvlinesize, h->chroma_log2_weight_denom,
2303                              h->chroma_weight[list][refn][0], h->chroma_offset[list][refn][0]);
2304             chroma_weight_op(dest_cr, s->uvlinesize, h->chroma_log2_weight_denom,
2305                              h->chroma_weight[list][refn][1], h->chroma_offset[list][refn][1]);
2306         }
2307     }
2308 }
2309
2310 static inline void mc_part(H264Context *h, int n, int square, int chroma_height, int delta,
2311                            uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
2312                            int x_offset, int y_offset,
2313                            qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
2314                            qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
2315                            h264_weight_func *weight_op, h264_biweight_func *weight_avg, 
2316                            int list0, int list1){
2317     if((h->use_weight==2 && list0 && list1
2318         && (h->implicit_weight[ h->ref_cache[0][scan8[n]] ][ h->ref_cache[1][scan8[n]] ] != 32))
2319        || h->use_weight==1)
2320         mc_part_weighted(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr,
2321                          x_offset, y_offset, qpix_put, chroma_put,
2322                          weight_op[0], weight_op[3], weight_avg[0], weight_avg[3], list0, list1);
2323     else
2324         mc_part_std(h, n, square, chroma_height, delta, dest_y, dest_cb, dest_cr,
2325                     x_offset, y_offset, qpix_put, chroma_put, qpix_avg, chroma_avg, list0, list1);
2326 }
2327
2328 static void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
2329                       qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
2330                       qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
2331                       h264_weight_func *weight_op, h264_biweight_func *weight_avg){
2332     MpegEncContext * const s = &h->s;
2333     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
2334     const int mb_type= s->current_picture.mb_type[mb_xy];
2335     
2336     assert(IS_INTER(mb_type));
2337     
2338     if(IS_16X16(mb_type)){
2339         mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0,
2340                 qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
2341                 &weight_op[0], &weight_avg[0],
2342                 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
2343     }else if(IS_16X8(mb_type)){
2344         mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0,
2345                 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
2346                 &weight_op[1], &weight_avg[1],
2347                 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
2348         mc_part(h, 8, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 4,
2349                 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
2350                 &weight_op[1], &weight_avg[1],
2351                 IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1));
2352     }else if(IS_8X16(mb_type)){
2353         mc_part(h, 0, 0, 8, 8*s->linesize, dest_y, dest_cb, dest_cr, 0, 0,
2354                 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
2355                 &weight_op[2], &weight_avg[2],
2356                 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
2357         mc_part(h, 4, 0, 8, 8*s->linesize, dest_y, dest_cb, dest_cr, 4, 0,
2358                 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
2359                 &weight_op[2], &weight_avg[2],
2360                 IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1));
2361     }else{
2362         int i;
2363         
2364         assert(IS_8X8(mb_type));
2365
2366         for(i=0; i<4; i++){
2367             const int sub_mb_type= h->sub_mb_type[i];
2368             const int n= 4*i;
2369             int x_offset= (i&1)<<2;
2370             int y_offset= (i&2)<<1;
2371
2372             if(IS_SUB_8X8(sub_mb_type)){
2373                 mc_part(h, n, 1, 4, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset,
2374                     qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
2375                     &weight_op[3], &weight_avg[3],
2376                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
2377             }else if(IS_SUB_8X4(sub_mb_type)){
2378                 mc_part(h, n  , 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset,
2379                     qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
2380                     &weight_op[4], &weight_avg[4],
2381                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
2382                 mc_part(h, n+2, 0, 2, 4, dest_y, dest_cb, dest_cr, x_offset, y_offset+2,
2383                     qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
2384                     &weight_op[4], &weight_avg[4],
2385                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
2386             }else if(IS_SUB_4X8(sub_mb_type)){
2387                 mc_part(h, n  , 0, 4, 4*s->linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset,
2388                     qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
2389                     &weight_op[5], &weight_avg[5],
2390                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
2391                 mc_part(h, n+1, 0, 4, 4*s->linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset,
2392                     qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
2393                     &weight_op[5], &weight_avg[5],
2394                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
2395             }else{
2396                 int j;
2397                 assert(IS_SUB_4X4(sub_mb_type));
2398                 for(j=0; j<4; j++){
2399                     int sub_x_offset= x_offset + 2*(j&1);
2400                     int sub_y_offset= y_offset +   (j&2);
2401                     mc_part(h, n+j, 1, 2, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset,
2402                         qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
2403                         &weight_op[6], &weight_avg[6],
2404                         IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1));
2405                 }
2406             }
2407         }
2408     }
2409 }
2410
2411 static void decode_init_vlc(H264Context *h){
2412     static int done = 0;
2413
2414     if (!done) {
2415         int i;
2416         done = 1;
2417
2418         init_vlc(&chroma_dc_coeff_token_vlc, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 4*5, 
2419                  &chroma_dc_coeff_token_len [0], 1, 1,
2420                  &chroma_dc_coeff_token_bits[0], 1, 1, 1);
2421
2422         for(i=0; i<4; i++){
2423             init_vlc(&coeff_token_vlc[i], COEFF_TOKEN_VLC_BITS, 4*17, 
2424                      &coeff_token_len [i][0], 1, 1,
2425                      &coeff_token_bits[i][0], 1, 1, 1);
2426         }
2427
2428         for(i=0; i<3; i++){
2429             init_vlc(&chroma_dc_total_zeros_vlc[i], CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 4,
2430                      &chroma_dc_total_zeros_len [i][0], 1, 1,
2431                      &chroma_dc_total_zeros_bits[i][0], 1, 1, 1);
2432         }
2433         for(i=0; i<15; i++){
2434             init_vlc(&total_zeros_vlc[i], TOTAL_ZEROS_VLC_BITS, 16, 
2435                      &total_zeros_len [i][0], 1, 1,
2436                      &total_zeros_bits[i][0], 1, 1, 1);
2437         }
2438
2439         for(i=0; i<6; i++){
2440             init_vlc(&run_vlc[i], RUN_VLC_BITS, 7, 
2441                      &run_len [i][0], 1, 1,
2442                      &run_bits[i][0], 1, 1, 1);
2443         }
2444         init_vlc(&run7_vlc, RUN7_VLC_BITS, 16, 
2445                  &run_len [6][0], 1, 1,
2446                  &run_bits[6][0], 1, 1, 1);
2447     }
2448 }
2449
2450 /**
2451  * Sets the intra prediction function pointers.
2452  */
2453 static void init_pred_ptrs(H264Context *h){
2454 //    MpegEncContext * const s = &h->s;
2455
2456     h->pred4x4[VERT_PRED           ]= pred4x4_vertical_c;
2457     h->pred4x4[HOR_PRED            ]= pred4x4_horizontal_c;
2458     h->pred4x4[DC_PRED             ]= pred4x4_dc_c;
2459     h->pred4x4[DIAG_DOWN_LEFT_PRED ]= pred4x4_down_left_c;
2460     h->pred4x4[DIAG_DOWN_RIGHT_PRED]= pred4x4_down_right_c;
2461     h->pred4x4[VERT_RIGHT_PRED     ]= pred4x4_vertical_right_c;
2462     h->pred4x4[HOR_DOWN_PRED       ]= pred4x4_horizontal_down_c;
2463     h->pred4x4[VERT_LEFT_PRED      ]= pred4x4_vertical_left_c;
2464     h->pred4x4[HOR_UP_PRED         ]= pred4x4_horizontal_up_c;
2465     h->pred4x4[LEFT_DC_PRED        ]= pred4x4_left_dc_c;
2466     h->pred4x4[TOP_DC_PRED         ]= pred4x4_top_dc_c;
2467     h->pred4x4[DC_128_PRED         ]= pred4x4_128_dc_c;
2468
2469     h->pred8x8[DC_PRED8x8     ]= pred8x8_dc_c;
2470     h->pred8x8[VERT_PRED8x8   ]= pred8x8_vertical_c;
2471     h->pred8x8[HOR_PRED8x8    ]= pred8x8_horizontal_c;
2472     h->pred8x8[PLANE_PRED8x8  ]= pred8x8_plane_c;
2473     h->pred8x8[LEFT_DC_PRED8x8]= pred8x8_left_dc_c;
2474     h->pred8x8[TOP_DC_PRED8x8 ]= pred8x8_top_dc_c;
2475     h->pred8x8[DC_128_PRED8x8 ]= pred8x8_128_dc_c;
2476
2477     h->pred16x16[DC_PRED8x8     ]= pred16x16_dc_c;
2478     h->pred16x16[VERT_PRED8x8   ]= pred16x16_vertical_c;
2479     h->pred16x16[HOR_PRED8x8    ]= pred16x16_horizontal_c;
2480     h->pred16x16[PLANE_PRED8x8  ]= pred16x16_plane_c;
2481     h->pred16x16[LEFT_DC_PRED8x8]= pred16x16_left_dc_c;
2482     h->pred16x16[TOP_DC_PRED8x8 ]= pred16x16_top_dc_c;
2483     h->pred16x16[DC_128_PRED8x8 ]= pred16x16_128_dc_c;
2484 }
2485
2486 static void free_tables(H264Context *h){
2487     av_freep(&h->intra4x4_pred_mode);
2488     av_freep(&h->chroma_pred_mode_table);
2489     av_freep(&h->cbp_table);
2490     av_freep(&h->mvd_table[0]);
2491     av_freep(&h->mvd_table[1]);
2492     av_freep(&h->direct_table);
2493     av_freep(&h->non_zero_count);
2494     av_freep(&h->slice_table_base);
2495     av_freep(&h->top_border);
2496     h->slice_table= NULL;
2497
2498     av_freep(&h->mb2b_xy);
2499     av_freep(&h->mb2b8_xy);
2500
2501     av_freep(&h->s.obmc_scratchpad);
2502 }
2503
2504 /**
2505  * allocates tables.
2506  * needs widzh/height
2507  */
2508 static int alloc_tables(H264Context *h){
2509     MpegEncContext * const s = &h->s;
2510     const int big_mb_num= s->mb_stride * (s->mb_height+1);
2511     int x,y;
2512
2513     CHECKED_ALLOCZ(h->intra4x4_pred_mode, big_mb_num * 8  * sizeof(uint8_t))
2514
2515     CHECKED_ALLOCZ(h->non_zero_count    , big_mb_num * 16 * sizeof(uint8_t))
2516     CHECKED_ALLOCZ(h->slice_table_base  , big_mb_num * sizeof(uint8_t))
2517     CHECKED_ALLOCZ(h->top_border       , s->mb_width * (16+8+8) * sizeof(uint8_t))
2518     CHECKED_ALLOCZ(h->cbp_table, big_mb_num * sizeof(uint16_t))
2519
2520     if( h->pps.cabac ) {
2521         CHECKED_ALLOCZ(h->chroma_pred_mode_table, big_mb_num * sizeof(uint8_t))
2522         CHECKED_ALLOCZ(h->mvd_table[0], 32*big_mb_num * sizeof(uint16_t));
2523         CHECKED_ALLOCZ(h->mvd_table[1], 32*big_mb_num * sizeof(uint16_t));
2524         CHECKED_ALLOCZ(h->direct_table, 32*big_mb_num * sizeof(uint8_t));
2525     }
2526
2527     memset(h->slice_table_base, -1, big_mb_num  * sizeof(uint8_t));
2528     h->slice_table= h->slice_table_base + s->mb_stride + 1;
2529
2530     CHECKED_ALLOCZ(h->mb2b_xy  , big_mb_num * sizeof(uint16_t));
2531     CHECKED_ALLOCZ(h->mb2b8_xy , big_mb_num * sizeof(uint16_t));
2532     for(y=0; y<s->mb_height; y++){
2533         for(x=0; x<s->mb_width; x++){
2534             const int mb_xy= x + y*s->mb_stride;
2535             const int b_xy = 4*x + 4*y*h->b_stride;
2536             const int b8_xy= 2*x + 2*y*h->b8_stride;
2537         
2538             h->mb2b_xy [mb_xy]= b_xy;
2539             h->mb2b8_xy[mb_xy]= b8_xy;
2540         }
2541     }
2542
2543     s->obmc_scratchpad = NULL;
2544
2545     return 0;
2546 fail:
2547     free_tables(h);
2548     return -1;
2549 }
2550
2551 static void common_init(H264Context *h){
2552     MpegEncContext * const s = &h->s;
2553
2554     s->width = s->avctx->width;
2555     s->height = s->avctx->height;
2556     s->codec_id= s->avctx->codec->id;
2557     
2558     init_pred_ptrs(h);
2559
2560     s->unrestricted_mv=1;
2561     s->decode=1; //FIXME
2562 }
2563
2564 static int decode_init(AVCodecContext *avctx){
2565     H264Context *h= avctx->priv_data;
2566     MpegEncContext * const s = &h->s;
2567
2568     MPV_decode_defaults(s);
2569     
2570     s->avctx = avctx;
2571     common_init(h);
2572
2573     s->out_format = FMT_H264;
2574     s->workaround_bugs= avctx->workaround_bugs;
2575
2576     // set defaults
2577 //    s->decode_mb= ff_h263_decode_mb;
2578     s->low_delay= 1;
2579     avctx->pix_fmt= PIX_FMT_YUV420P;
2580
2581     decode_init_vlc(h);
2582     
2583     if(avctx->codec_tag != 0x31637661 && avctx->codec_tag != 0x31435641) // avc1
2584         h->is_avc = 0;
2585     else {
2586         if((avctx->extradata_size == 0) || (avctx->extradata == NULL)) {
2587             av_log(avctx, AV_LOG_ERROR, "AVC codec requires avcC data\n");
2588             return -1;
2589         }
2590         h->is_avc = 1;
2591         h->got_avcC = 0;
2592     }
2593
2594     return 0;
2595 }
2596
2597 static void frame_start(H264Context *h){
2598     MpegEncContext * const s = &h->s;
2599     int i;
2600
2601     MPV_frame_start(s, s->avctx);
2602     ff_er_frame_start(s);
2603     h->mmco_index=0;
2604
2605     assert(s->linesize && s->uvlinesize);
2606
2607     for(i=0; i<16; i++){
2608         h->block_offset[i]= 4*((scan8[i] - scan8[0])&7) + 4*s->linesize*((scan8[i] - scan8[0])>>3);
2609         h->chroma_subblock_offset[i]= 2*((scan8[i] - scan8[0])&7) + 2*s->uvlinesize*((scan8[i] - scan8[0])>>3);
2610     }
2611     for(i=0; i<4; i++){
2612         h->block_offset[16+i]=
2613         h->block_offset[20+i]= 4*((scan8[i] - scan8[0])&7) + 4*s->uvlinesize*((scan8[i] - scan8[0])>>3);
2614     }
2615
2616     /* can't be in alloc_tables because linesize isn't known there.
2617      * FIXME: redo bipred weight to not require extra buffer? */
2618     if(!s->obmc_scratchpad)
2619         s->obmc_scratchpad = av_malloc(16*s->linesize + 2*8*s->uvlinesize);
2620
2621 //    s->decode= (s->flags&CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.reference /*|| h->contains_intra*/ || 1;
2622 }
2623
2624 static inline void backup_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize){
2625     MpegEncContext * const s = &h->s;
2626     int i;
2627     
2628     src_y  -=   linesize;
2629     src_cb -= uvlinesize;
2630     src_cr -= uvlinesize;
2631
2632     h->left_border[0]= h->top_border[s->mb_x][15];
2633     for(i=1; i<17; i++){
2634         h->left_border[i]= src_y[15+i*  linesize];
2635     }
2636     
2637     *(uint64_t*)(h->top_border[s->mb_x]+0)= *(uint64_t*)(src_y +  16*linesize);
2638     *(uint64_t*)(h->top_border[s->mb_x]+8)= *(uint64_t*)(src_y +8+16*linesize);
2639
2640     if(!(s->flags&CODEC_FLAG_GRAY)){
2641         h->left_border[17  ]= h->top_border[s->mb_x][16+7];
2642         h->left_border[17+9]= h->top_border[s->mb_x][24+7];
2643         for(i=1; i<9; i++){
2644             h->left_border[i+17  ]= src_cb[7+i*uvlinesize];
2645             h->left_border[i+17+9]= src_cr[7+i*uvlinesize];
2646         }
2647         *(uint64_t*)(h->top_border[s->mb_x]+16)= *(uint64_t*)(src_cb+8*uvlinesize);
2648         *(uint64_t*)(h->top_border[s->mb_x]+24)= *(uint64_t*)(src_cr+8*uvlinesize);
2649     }
2650 }
2651
2652 static inline void xchg_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int xchg){
2653     MpegEncContext * const s = &h->s;
2654     int temp8, i;
2655     uint64_t temp64;
2656     int deblock_left = (s->mb_x > 0);
2657     int deblock_top  = (s->mb_y > 0);
2658
2659     src_y  -=   linesize + 1;
2660     src_cb -= uvlinesize + 1;
2661     src_cr -= uvlinesize + 1;
2662
2663 #define XCHG(a,b,t,xchg)\
2664 t= a;\
2665 if(xchg)\
2666     a= b;\
2667 b= t;
2668
2669     if(deblock_left){
2670         for(i = !deblock_top; i<17; i++){
2671             XCHG(h->left_border[i     ], src_y [i*  linesize], temp8, xchg);
2672         }
2673     }
2674
2675     if(deblock_top){
2676         XCHG(*(uint64_t*)(h->top_border[s->mb_x]+0), *(uint64_t*)(src_y +1), temp64, xchg);
2677         XCHG(*(uint64_t*)(h->top_border[s->mb_x]+8), *(uint64_t*)(src_y +9), temp64, 1);
2678     }
2679
2680     if(!(s->flags&CODEC_FLAG_GRAY)){
2681         if(deblock_left){
2682             for(i = !deblock_top; i<9; i++){
2683                 XCHG(h->left_border[i+17  ], src_cb[i*uvlinesize], temp8, xchg);
2684                 XCHG(h->left_border[i+17+9], src_cr[i*uvlinesize], temp8, xchg);
2685             }
2686         }
2687         if(deblock_top){
2688             XCHG(*(uint64_t*)(h->top_border[s->mb_x]+16), *(uint64_t*)(src_cb+1), temp64, 1);
2689             XCHG(*(uint64_t*)(h->top_border[s->mb_x]+24), *(uint64_t*)(src_cr+1), temp64, 1);
2690         }
2691     }
2692 }
2693
2694 static void hl_decode_mb(H264Context *h){
2695     MpegEncContext * const s = &h->s;
2696     const int mb_x= s->mb_x;
2697     const int mb_y= s->mb_y;
2698     const int mb_xy= mb_x + mb_y*s->mb_stride;
2699     const int mb_type= s->current_picture.mb_type[mb_xy];
2700     uint8_t  *dest_y, *dest_cb, *dest_cr;
2701     int linesize, uvlinesize /*dct_offset*/;
2702     int i;
2703
2704     if(!s->decode)
2705         return;
2706
2707     if(s->mb_skiped){
2708     }
2709
2710     dest_y  = s->current_picture.data[0] + (mb_y * 16* s->linesize  ) + mb_x * 16;
2711     dest_cb = s->current_picture.data[1] + (mb_y * 8 * s->uvlinesize) + mb_x * 8;
2712     dest_cr = s->current_picture.data[2] + (mb_y * 8 * s->uvlinesize) + mb_x * 8;
2713
2714     if (h->mb_field_decoding_flag) {
2715         linesize = s->linesize * 2;
2716         uvlinesize = s->uvlinesize * 2;
2717         if(mb_y&1){ //FIXME move out of this func?
2718             dest_y -= s->linesize*15;
2719             dest_cb-= s->linesize*7;
2720             dest_cr-= s->linesize*7;
2721         }
2722     } else {
2723         linesize = s->linesize;
2724         uvlinesize = s->uvlinesize;
2725 //        dct_offset = s->linesize * 16;
2726     }
2727
2728     if(IS_INTRA(mb_type)){
2729         if(h->deblocking_filter)
2730             xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1);
2731
2732         if(!(s->flags&CODEC_FLAG_GRAY)){
2733             h->pred8x8[ h->chroma_pred_mode ](dest_cb, uvlinesize);
2734             h->pred8x8[ h->chroma_pred_mode ](dest_cr, uvlinesize);
2735         }
2736
2737         if(IS_INTRA4x4(mb_type)){
2738             if(!s->encoding){
2739                 for(i=0; i<16; i++){
2740                     uint8_t * const ptr= dest_y + h->block_offset[i];
2741                     uint8_t *topright;
2742                     const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
2743                     int tr;
2744
2745                     if(dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED){
2746                         const int topright_avail= (h->topright_samples_available<<i)&0x8000;
2747                         assert(mb_y || linesize <= h->block_offset[i]);
2748                         if(!topright_avail){
2749                             tr= ptr[3 - linesize]*0x01010101;
2750                             topright= (uint8_t*) &tr;
2751                         }else if(i==5 && h->deblocking_filter){
2752                             tr= *(uint32_t*)h->top_border[mb_x+1];
2753                             topright= (uint8_t*) &tr;
2754                         }else
2755                             topright= ptr + 4 - linesize;
2756                     }else
2757                         topright= NULL;
2758
2759                     h->pred4x4[ dir ](ptr, topright, linesize);
2760                     if(h->non_zero_count_cache[ scan8[i] ]){
2761                         if(s->codec_id == CODEC_ID_H264)
2762                             s->dsp.h264_idct_add(ptr, h->mb + i*16, linesize);
2763                         else
2764                             svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, 0);
2765                     }
2766                 }
2767             }
2768         }else{
2769             h->pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
2770             if(s->codec_id == CODEC_ID_H264)
2771                 h264_luma_dc_dequant_idct_c(h->mb, s->qscale);
2772             else
2773                 svq3_luma_dc_dequant_idct_c(h->mb, s->qscale);
2774         }
2775         if(h->deblocking_filter)
2776             xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
2777     }else if(s->codec_id == CODEC_ID_H264){
2778         hl_motion(h, dest_y, dest_cb, dest_cr,
2779                   s->dsp.put_h264_qpel_pixels_tab, s->dsp.put_h264_chroma_pixels_tab, 
2780                   s->dsp.avg_h264_qpel_pixels_tab, s->dsp.avg_h264_chroma_pixels_tab,
2781                   s->dsp.weight_h264_pixels_tab, s->dsp.biweight_h264_pixels_tab);
2782     }
2783
2784
2785     if(!IS_INTRA4x4(mb_type)){
2786         if(s->codec_id == CODEC_ID_H264){
2787             for(i=0; i<16; i++){
2788                 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below
2789                     uint8_t * const ptr= dest_y + h->block_offset[i];
2790                     s->dsp.h264_idct_add(ptr, h->mb + i*16, linesize);
2791                 }
2792             }
2793         }else{
2794             for(i=0; i<16; i++){
2795                 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){ //FIXME benchmark weird rule, & below
2796                     uint8_t * const ptr= dest_y + h->block_offset[i];
2797                     svq3_add_idct_c(ptr, h->mb + i*16, linesize, s->qscale, IS_INTRA(mb_type) ? 1 : 0);
2798                 }
2799             }
2800         }
2801     }
2802
2803     if(!(s->flags&CODEC_FLAG_GRAY)){
2804         chroma_dc_dequant_idct_c(h->mb + 16*16, h->chroma_qp);
2805         chroma_dc_dequant_idct_c(h->mb + 16*16+4*16, h->chroma_qp);
2806         if(s->codec_id == CODEC_ID_H264){
2807             for(i=16; i<16+4; i++){
2808                 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
2809                     uint8_t * const ptr= dest_cb + h->block_offset[i];
2810                     s->dsp.h264_idct_add(ptr, h->mb + i*16, uvlinesize);
2811                 }
2812             }
2813             for(i=20; i<20+4; i++){
2814                 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
2815                     uint8_t * const ptr= dest_cr + h->block_offset[i];
2816                     s->dsp.h264_idct_add(ptr, h->mb + i*16, uvlinesize);
2817                 }
2818             }
2819         }else{
2820             for(i=16; i<16+4; i++){
2821                 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
2822                     uint8_t * const ptr= dest_cb + h->block_offset[i];
2823                     svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2);
2824                 }
2825             }
2826             for(i=20; i<20+4; i++){
2827                 if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
2828                     uint8_t * const ptr= dest_cr + h->block_offset[i];
2829                     svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, chroma_qp[s->qscale + 12] - 12, 2);
2830                 }
2831             }
2832         }
2833     }
2834     if(h->deblocking_filter) {
2835         backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
2836         filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr);
2837     }
2838 }
2839
2840 /**
2841  * fills the default_ref_list.
2842  */
2843 static int fill_default_ref_list(H264Context *h){
2844     MpegEncContext * const s = &h->s;
2845     int i;
2846     Picture sorted_short_ref[16];
2847     
2848     if(h->slice_type==B_TYPE){
2849         int out_i;
2850         int limit= -1;
2851
2852         for(out_i=0; out_i<h->short_ref_count; out_i++){
2853             int best_i=-1;
2854             int best_poc=INT_MAX;
2855
2856             for(i=0; i<h->short_ref_count; i++){
2857                 const int poc= h->short_ref[i]->poc;
2858                 if(poc > limit && poc < best_poc){
2859                     best_poc= poc;
2860                     best_i= i;
2861                 }
2862             }
2863             
2864             assert(best_i != -1);
2865             
2866             limit= best_poc;
2867             sorted_short_ref[out_i]= *h->short_ref[best_i];
2868         }
2869     }
2870
2871     if(s->picture_structure == PICT_FRAME){
2872         if(h->slice_type==B_TYPE){
2873             const int current_poc= s->current_picture_ptr->poc;
2874             int list;
2875
2876             for(list=0; list<2; list++){
2877                 int index=0;
2878
2879                 for(i=0; i<h->short_ref_count && index < h->ref_count[list]; i++){
2880                     const int i2= list ? i : h->short_ref_count - i - 1;
2881                     const int poc= sorted_short_ref[i2].poc;
2882                     
2883                     if(sorted_short_ref[i2].reference != 3) continue; //FIXME refernce field shit
2884
2885                     if((list==1 && poc > current_poc) || (list==0 && poc < current_poc)){
2886                         h->default_ref_list[list][index  ]= sorted_short_ref[i2];
2887                         h->default_ref_list[list][index++].pic_id= sorted_short_ref[i2].frame_num;
2888                     }
2889                 }
2890
2891                 for(i=0; i<h->long_ref_count && index < h->ref_count[ list ]; i++){
2892                     if(h->long_ref[i]->reference != 3) continue;
2893
2894                     h->default_ref_list[ list ][index  ]= *h->long_ref[i];
2895                     h->default_ref_list[ list ][index++].pic_id= i;;
2896                 }
2897                 
2898                 if(h->long_ref_count > 1 && h->short_ref_count==0){
2899                     Picture temp= h->default_ref_list[1][0];
2900                     h->default_ref_list[1][0] = h->default_ref_list[1][1];
2901                     h->default_ref_list[1][0] = temp;
2902                 }
2903
2904                 if(index < h->ref_count[ list ])
2905                     memset(&h->default_ref_list[list][index], 0, sizeof(Picture)*(h->ref_count[ list ] - index));
2906             }
2907         }else{
2908             int index=0;
2909             for(i=0; i<h->short_ref_count && index < h->ref_count[0]; i++){
2910                 if(h->short_ref[i]->reference != 3) continue; //FIXME refernce field shit
2911                 h->default_ref_list[0][index  ]= *h->short_ref[i];
2912                 h->default_ref_list[0][index++].pic_id= h->short_ref[i]->frame_num;
2913             }
2914             for(i=0; i<h->long_ref_count && index < h->ref_count[0]; i++){
2915                 if(h->long_ref[i]->reference != 3) continue;
2916                 h->default_ref_list[0][index  ]= *h->long_ref[i];
2917                 h->default_ref_list[0][index++].pic_id= i;;
2918             }
2919             if(index < h->ref_count[0])
2920                 memset(&h->default_ref_list[0][index], 0, sizeof(Picture)*(h->ref_count[0] - index));
2921         }
2922     }else{ //FIELD
2923         if(h->slice_type==B_TYPE){
2924         }else{
2925             //FIXME second field balh
2926         }
2927     }
2928     return 0;
2929 }
2930
2931 static int decode_ref_pic_list_reordering(H264Context *h){
2932     MpegEncContext * const s = &h->s;
2933     int list;
2934     
2935     if(h->slice_type==I_TYPE || h->slice_type==SI_TYPE) return 0; //FIXME move beofre func
2936     
2937     for(list=0; list<2; list++){
2938         memcpy(h->ref_list[list], h->default_ref_list[list], sizeof(Picture)*h->ref_count[list]);
2939
2940         if(get_bits1(&s->gb)){
2941             int pred= h->curr_pic_num;
2942             int index;
2943
2944             for(index=0; ; index++){
2945                 int reordering_of_pic_nums_idc= get_ue_golomb(&s->gb);
2946                 int pic_id;
2947                 int i;
2948                 
2949                 if(reordering_of_pic_nums_idc==3) 
2950                     break;
2951                 
2952                 if(index >= h->ref_count[list]){
2953                     av_log(h->s.avctx, AV_LOG_ERROR, "reference count overflow\n");
2954                     return -1;
2955                 }
2956                 
2957                 if(reordering_of_pic_nums_idc<3){
2958                     if(reordering_of_pic_nums_idc<2){
2959                         const int abs_diff_pic_num= get_ue_golomb(&s->gb) + 1;
2960
2961                         if(abs_diff_pic_num >= h->max_pic_num){
2962                             av_log(h->s.avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n");
2963                             return -1;
2964                         }
2965
2966                         if(reordering_of_pic_nums_idc == 0) pred-= abs_diff_pic_num;
2967                         else                                pred+= abs_diff_pic_num;
2968                         pred &= h->max_pic_num - 1;
2969                     
2970                         for(i= h->ref_count[list]-1; i>=index; i--){
2971                             if(h->ref_list[list][i].pic_id == pred && h->ref_list[list][i].long_ref==0)
2972                                 break;
2973                         }
2974                     }else{
2975                         pic_id= get_ue_golomb(&s->gb); //long_term_pic_idx
2976
2977                         for(i= h->ref_count[list]-1; i>=index; i--){
2978                             if(h->ref_list[list][i].pic_id == pic_id && h->ref_list[list][i].long_ref==1)
2979                                 break;
2980                         }
2981                     }
2982
2983                     if(i < index){
2984                         av_log(h->s.avctx, AV_LOG_ERROR, "reference picture missing during reorder\n");
2985                         memset(&h->ref_list[list][index], 0, sizeof(Picture)); //FIXME
2986                     }else if(i > index){
2987                         Picture tmp= h->ref_list[list][i];
2988                         for(; i>index; i--){
2989                             h->ref_list[list][i]= h->ref_list[list][i-1];
2990                         }
2991                         h->ref_list[list][index]= tmp;
2992                     }
2993                 }else{
2994                     av_log(h->s.avctx, AV_LOG_ERROR, "illegal reordering_of_pic_nums_idc\n");
2995                     return -1;
2996                 }
2997             }
2998         }
2999
3000         if(h->slice_type!=B_TYPE) break;
3001     }
3002     
3003     if(h->slice_type==B_TYPE && !h->direct_spatial_mv_pred)
3004         direct_dist_scale_factor(h);
3005     return 0;    
3006 }
3007
3008 static int pred_weight_table(H264Context *h){
3009     MpegEncContext * const s = &h->s;
3010     int list, i;
3011     int luma_def, chroma_def;
3012     
3013     h->use_weight= 0;
3014     h->use_weight_chroma= 0;
3015     h->luma_log2_weight_denom= get_ue_golomb(&s->gb);
3016     h->chroma_log2_weight_denom= get_ue_golomb(&s->gb);
3017     luma_def = 1<<h->luma_log2_weight_denom;
3018     chroma_def = 1<<h->chroma_log2_weight_denom;
3019
3020     for(list=0; list<2; list++){
3021         for(i=0; i<h->ref_count[list]; i++){
3022             int luma_weight_flag, chroma_weight_flag;
3023             
3024             luma_weight_flag= get_bits1(&s->gb);
3025             if(luma_weight_flag){
3026                 h->luma_weight[list][i]= get_se_golomb(&s->gb);
3027                 h->luma_offset[list][i]= get_se_golomb(&s->gb);
3028                 if(   h->luma_weight[list][i] != luma_def
3029                    || h->luma_offset[list][i] != 0)
3030                     h->use_weight= 1;
3031             }else{
3032                 h->luma_weight[list][i]= luma_def;
3033                 h->luma_offset[list][i]= 0;
3034             }
3035
3036             chroma_weight_flag= get_bits1(&s->gb);
3037             if(chroma_weight_flag){
3038                 int j;
3039                 for(j=0; j<2; j++){
3040                     h->chroma_weight[list][i][j]= get_se_golomb(&s->gb);
3041                     h->chroma_offset[list][i][j]= get_se_golomb(&s->gb);
3042                     if(   h->chroma_weight[list][i][j] != chroma_def
3043                        || h->chroma_offset[list][i][j] != 0)
3044                         h->use_weight_chroma= 1;
3045                 }
3046             }else{
3047                 int j;
3048                 for(j=0; j<2; j++){
3049                     h->chroma_weight[list][i][j]= chroma_def;
3050                     h->chroma_offset[list][i][j]= 0;
3051                 }
3052             }
3053         }
3054         if(h->slice_type != B_TYPE) break;
3055     }
3056     h->use_weight= h->use_weight || h->use_weight_chroma;
3057     return 0;
3058 }
3059
3060 static void implicit_weight_table(H264Context *h){
3061     MpegEncContext * const s = &h->s;
3062     int list, i;
3063     int ref0, ref1;
3064     int cur_poc = s->current_picture_ptr->poc;
3065
3066     if(   h->ref_count[0] == 1 && h->ref_count[1] == 1
3067        && h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2*cur_poc){
3068         h->use_weight= 0;
3069         h->use_weight_chroma= 0;
3070         return;
3071     }
3072
3073     h->use_weight= 2;
3074     h->use_weight_chroma= 2;
3075     h->luma_log2_weight_denom= 5;
3076     h->chroma_log2_weight_denom= 5;
3077
3078     /* FIXME: MBAFF */
3079     for(ref0=0; ref0 < h->ref_count[0]; ref0++){
3080         int poc0 = h->ref_list[0][ref0].poc;
3081         for(ref1=0; ref1 < h->ref_count[1]; ref1++){
3082             int poc1 = h->ref_list[0][ref1].poc;
3083             int td = clip(poc1 - poc0, -128, 127);
3084             if(td){
3085                 int tb = clip(cur_poc - poc0, -128, 127);
3086                 int tx = (16384 + (ABS(td) >> 1)) / td;
3087                 int dist_scale_factor = clip((tb*tx + 32) >> 6, -1024, 1023) >> 2;
3088                 if(dist_scale_factor < -64 || dist_scale_factor > 128)
3089                     h->implicit_weight[ref0][ref1] = 32;
3090                 else
3091                     h->implicit_weight[ref0][ref1] = 64 - dist_scale_factor;
3092             }else
3093                 h->implicit_weight[ref0][ref1] = 32;
3094         }
3095     }
3096 }
3097
3098 /**
3099  * instantaneous decoder refresh.
3100  */
3101 static void idr(H264Context *h){
3102     int i,j;
3103
3104 #define CHECK_DELAY(pic) \
3105     for(j = 0; h->delayed_pic[j]; j++) \
3106         if(pic == h->delayed_pic[j]){ \
3107             pic->reference=1; \
3108             break; \
3109         }
3110
3111     for(i=0; i<h->long_ref_count; i++){
3112         h->long_ref[i]->reference=0;
3113         CHECK_DELAY(h->long_ref[i]);
3114         h->long_ref[i]= NULL;
3115     }
3116     h->long_ref_count=0;
3117
3118     for(i=0; i<h->short_ref_count; i++){
3119         h->short_ref[i]->reference=0;
3120         CHECK_DELAY(h->short_ref[i]);
3121         h->short_ref[i]= NULL;
3122     }
3123     h->short_ref_count=0;
3124 }
3125 #undef CHECK_DELAY
3126
3127 /**
3128  *
3129  * @return the removed picture or NULL if an error occures
3130  */
3131 static Picture * remove_short(H264Context *h, int frame_num){
3132     MpegEncContext * const s = &h->s;
3133     int i;
3134     
3135     if(s->avctx->debug&FF_DEBUG_MMCO)
3136         av_log(h->s.avctx, AV_LOG_DEBUG, "remove short %d count %d\n", frame_num, h->short_ref_count);
3137     
3138     for(i=0; i<h->short_ref_count; i++){
3139         Picture *pic= h->short_ref[i];
3140         if(s->avctx->debug&FF_DEBUG_MMCO)
3141             av_log(h->s.avctx, AV_LOG_DEBUG, "%d %d %p\n", i, pic->frame_num, pic);
3142         if(pic->frame_num == frame_num){
3143             h->short_ref[i]= NULL;
3144             memmove(&h->short_ref[i], &h->short_ref[i+1], (h->short_ref_count - i - 1)*sizeof(Picture*));
3145             h->short_ref_count--;
3146             return pic;
3147         }
3148     }
3149     return NULL;
3150 }
3151
3152 /**
3153  *
3154  * @return the removed picture or NULL if an error occures
3155  */
3156 static Picture * remove_long(H264Context *h, int i){
3157     Picture *pic;
3158
3159     if(i >= h->long_ref_count) return NULL;
3160     pic= h->long_ref[i];
3161     if(pic==NULL) return NULL;
3162     
3163     h->long_ref[i]= NULL;
3164     memmove(&h->long_ref[i], &h->long_ref[i+1], (h->long_ref_count - i - 1)*sizeof(Picture*));
3165     h->long_ref_count--;
3166
3167     return pic;
3168 }
3169
3170 /**
3171  * Executes the reference picture marking (memory management control operations).
3172  */
3173 static int execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
3174     MpegEncContext * const s = &h->s;
3175     int i;
3176     int current_is_long=0;
3177     Picture *pic;
3178     
3179     if((s->avctx->debug&FF_DEBUG_MMCO) && mmco_count==0)
3180         av_log(h->s.avctx, AV_LOG_DEBUG, "no mmco here\n");
3181         
3182     for(i=0; i<mmco_count; i++){
3183         if(s->avctx->debug&FF_DEBUG_MMCO)
3184             av_log(h->s.avctx, AV_LOG_DEBUG, "mmco:%d %d %d\n", h->mmco[i].opcode, h->mmco[i].short_frame_num, h->mmco[i].long_index);
3185
3186         switch(mmco[i].opcode){
3187         case MMCO_SHORT2UNUSED:
3188             pic= remove_short(h, mmco[i].short_frame_num);
3189             if(pic==NULL) return -1;
3190             pic->reference= 0;
3191             break;
3192         case MMCO_SHORT2LONG:
3193             pic= remove_long(h, mmco[i].long_index);
3194             if(pic) pic->reference=0;
3195             
3196             h->long_ref[ mmco[i].long_index ]= remove_short(h, mmco[i].short_frame_num);
3197             h->long_ref[ mmco[i].long_index ]->long_ref=1;
3198             break;
3199         case MMCO_LONG2UNUSED:
3200             pic= remove_long(h, mmco[i].long_index);
3201             if(pic==NULL) return -1;
3202             pic->reference= 0;
3203             break;
3204         case MMCO_LONG:
3205             pic= remove_long(h, mmco[i].long_index);
3206             if(pic) pic->reference=0;
3207             
3208             h->long_ref[ mmco[i].long_index ]= s->current_picture_ptr;
3209             h->long_ref[ mmco[i].long_index ]->long_ref=1;
3210             h->long_ref_count++;
3211             
3212             current_is_long=1;
3213             break;
3214         case MMCO_SET_MAX_LONG:
3215             assert(mmco[i].long_index <= 16);
3216             while(mmco[i].long_index < h->long_ref_count){
3217                 pic= remove_long(h, mmco[i].long_index);
3218                 pic->reference=0;
3219             }
3220             while(mmco[i].long_index > h->long_ref_count){
3221                 h->long_ref[ h->long_ref_count++ ]= NULL;
3222             }
3223             break;
3224         case MMCO_RESET:
3225             while(h->short_ref_count){
3226                 pic= remove_short(h, h->short_ref[0]->frame_num);
3227                 pic->reference=0;
3228             }
3229             while(h->long_ref_count){
3230                 pic= remove_long(h, h->long_ref_count-1);
3231                 pic->reference=0;
3232             }
3233             break;
3234         default: assert(0);
3235         }
3236     }
3237     
3238     if(!current_is_long){
3239         pic= remove_short(h, s->current_picture_ptr->frame_num);
3240         if(pic){
3241             pic->reference=0;
3242             av_log(h->s.avctx, AV_LOG_ERROR, "illegal short term buffer state detected\n");
3243         }
3244         
3245         if(h->short_ref_count)
3246             memmove(&h->short_ref[1], &h->short_ref[0], h->short_ref_count*sizeof(Picture*));
3247
3248         h->short_ref[0]= s->current_picture_ptr;
3249         h->short_ref[0]->long_ref=0;
3250         h->short_ref_count++;
3251     }
3252     
3253     return 0; 
3254 }
3255
3256 static int decode_ref_pic_marking(H264Context *h){
3257     MpegEncContext * const s = &h->s;
3258     int i;
3259     
3260     if(h->nal_unit_type == NAL_IDR_SLICE){ //FIXME fields
3261         s->broken_link= get_bits1(&s->gb) -1;
3262         h->mmco[0].long_index= get_bits1(&s->gb) - 1; // current_long_term_idx
3263         if(h->mmco[0].long_index == -1)
3264             h->mmco_index= 0;
3265         else{
3266             h->mmco[0].opcode= MMCO_LONG;
3267             h->mmco_index= 1;
3268         } 
3269     }else{
3270         if(get_bits1(&s->gb)){ // adaptive_ref_pic_marking_mode_flag
3271             for(i= 0; i<MAX_MMCO_COUNT; i++) { 
3272                 MMCOOpcode opcode= get_ue_golomb(&s->gb);;
3273
3274                 h->mmco[i].opcode= opcode;
3275                 if(opcode==MMCO_SHORT2UNUSED || opcode==MMCO_SHORT2LONG){
3276                     h->mmco[i].short_frame_num= (h->frame_num - get_ue_golomb(&s->gb) - 1) & ((1<<h->sps.log2_max_frame_num)-1); //FIXME fields
3277 /*                    if(h->mmco[i].short_frame_num >= h->short_ref_count || h->short_ref[ h->mmco[i].short_frame_num ] == NULL){
3278                         fprintf(stderr, "illegal short ref in memory management control operation %d\n", mmco);
3279                         return -1;
3280                     }*/
3281                 }
3282                 if(opcode==MMCO_SHORT2LONG || opcode==MMCO_LONG2UNUSED || opcode==MMCO_LONG || opcode==MMCO_SET_MAX_LONG){
3283                     h->mmco[i].long_index= get_ue_golomb(&s->gb);
3284                     if(/*h->mmco[i].long_index >= h->long_ref_count || h->long_ref[ h->mmco[i].long_index ] == NULL*/ h->mmco[i].long_index >= 16){
3285                         av_log(h->s.avctx, AV_LOG_ERROR, "illegal long ref in memory management control operation %d\n", opcode);
3286                         return -1;
3287                     }
3288                 }
3289                     
3290                 if(opcode > MMCO_LONG){
3291                     av_log(h->s.avctx, AV_LOG_ERROR, "illegal memory management control operation %d\n", opcode);
3292                     return -1;
3293                 }
3294                 if(opcode == MMCO_END)
3295                     break;
3296             }
3297             h->mmco_index= i;
3298         }else{
3299             assert(h->long_ref_count + h->short_ref_count <= h->sps.ref_frame_count);
3300
3301             if(h->long_ref_count + h->short_ref_count == h->sps.ref_frame_count){ //FIXME fields
3302                 h->mmco[0].opcode= MMCO_SHORT2UNUSED;
3303                 h->mmco[0].short_frame_num= h->short_ref[ h->short_ref_count - 1 ]->frame_num;
3304                 h->mmco_index= 1;
3305             }else
3306                 h->mmco_index= 0;
3307         }
3308     }
3309     
3310     return 0; 
3311 }
3312
3313 static int init_poc(H264Context *h){
3314     MpegEncContext * const s = &h->s;
3315     const int max_frame_num= 1<<h->sps.log2_max_frame_num;
3316     int field_poc[2];
3317
3318     if(h->nal_unit_type == NAL_IDR_SLICE){
3319         h->frame_num_offset= 0;
3320     }else{
3321         if(h->frame_num < h->prev_frame_num)
3322             h->frame_num_offset= h->prev_frame_num_offset + max_frame_num;
3323         else
3324             h->frame_num_offset= h->prev_frame_num_offset;
3325     }
3326
3327     if(h->sps.poc_type==0){
3328         const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb;
3329
3330         if     (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb/2)
3331             h->poc_msb = h->prev_poc_msb + max_poc_lsb;
3332         else if(h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb/2)
3333             h->poc_msb = h->prev_poc_msb - max_poc_lsb;
3334         else
3335             h->poc_msb = h->prev_poc_msb;
3336 //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb);
3337         field_poc[0] = 
3338         field_poc[1] = h->poc_msb + h->poc_lsb;
3339         if(s->picture_structure == PICT_FRAME) 
3340             field_poc[1] += h->delta_poc_bottom;
3341     }else if(h->sps.poc_type==1){
3342         int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
3343         int i;
3344
3345         if(h->sps.poc_cycle_length != 0)
3346             abs_frame_num = h->frame_num_offset + h->frame_num;
3347         else
3348             abs_frame_num = 0;
3349
3350         if(h->nal_ref_idc==0 && abs_frame_num > 0)
3351             abs_frame_num--;
3352             
3353         expected_delta_per_poc_cycle = 0;
3354         for(i=0; i < h->sps.poc_cycle_length; i++)
3355             expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[ i ]; //FIXME integrate during sps parse
3356
3357         if(abs_frame_num > 0){
3358             int poc_cycle_cnt          = (abs_frame_num - 1) / h->sps.poc_cycle_length;
3359             int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
3360
3361             expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
3362             for(i = 0; i <= frame_num_in_poc_cycle; i++)
3363                 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[ i ];
3364         } else
3365             expectedpoc = 0;
3366
3367         if(h->nal_ref_idc == 0) 
3368             expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
3369         
3370         field_poc[0] = expectedpoc + h->delta_poc[0];
3371         field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
3372
3373         if(s->picture_structure == PICT_FRAME)
3374             field_poc[1] += h->delta_poc[1];
3375     }else{
3376         int poc;
3377         if(h->nal_unit_type == NAL_IDR_SLICE){
3378             poc= 0;
3379         }else{
3380             if(h->nal_ref_idc) poc= 2*(h->frame_num_offset + h->frame_num);
3381             else               poc= 2*(h->frame_num_offset + h->frame_num) - 1;
3382         }
3383         field_poc[0]= poc;
3384         field_poc[1]= poc;
3385     }
3386     
3387     if(s->picture_structure != PICT_BOTTOM_FIELD)
3388         s->current_picture_ptr->field_poc[0]= field_poc[0];
3389     if(s->picture_structure != PICT_TOP_FIELD)
3390         s->current_picture_ptr->field_poc[1]= field_poc[1];
3391     if(s->picture_structure == PICT_FRAME) // FIXME field pix?
3392         s->current_picture_ptr->poc= FFMIN(field_poc[0], field_poc[1]);
3393
3394     return 0;
3395 }
3396
3397 /**
3398  * decodes a slice header.
3399  * this will allso call MPV_common_init() and frame_start() as needed
3400  */
3401 static int decode_slice_header(H264Context *h){
3402     MpegEncContext * const s = &h->s;
3403     int first_mb_in_slice, pps_id;
3404     int num_ref_idx_active_override_flag;
3405     static const uint8_t slice_type_map[5]= {P_TYPE, B_TYPE, I_TYPE, SP_TYPE, SI_TYPE};
3406
3407     s->current_picture.reference= h->nal_ref_idc != 0;
3408
3409     first_mb_in_slice= get_ue_golomb(&s->gb);
3410
3411     h->slice_type= get_ue_golomb(&s->gb);
3412     if(h->slice_type > 9){
3413         av_log(h->s.avctx, AV_LOG_ERROR, "slice type too large (%d) at %d %d\n", h->slice_type, s->mb_x, s->mb_y);
3414         return -1;
3415     }
3416     if(h->slice_type > 4){
3417         h->slice_type -= 5;
3418         h->slice_type_fixed=1;
3419     }else
3420         h->slice_type_fixed=0;
3421     
3422     h->slice_type= slice_type_map[ h->slice_type ];
3423     
3424     s->pict_type= h->slice_type; // to make a few old func happy, its wrong though
3425         
3426     pps_id= get_ue_golomb(&s->gb);
3427     if(pps_id>255){
3428         av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
3429         return -1;
3430     }
3431     h->pps= h->pps_buffer[pps_id];
3432     if(h->pps.slice_group_count == 0){
3433         av_log(h->s.avctx, AV_LOG_ERROR, "non existing PPS referenced\n");
3434         return -1;
3435     }
3436
3437     h->sps= h->sps_buffer[ h->pps.sps_id ];
3438     if(h->sps.log2_max_frame_num == 0){
3439         av_log(h->s.avctx, AV_LOG_ERROR, "non existing SPS referenced\n");
3440         return -1;
3441     }
3442     
3443     s->mb_width= h->sps.mb_width;
3444     s->mb_height= h->sps.mb_height;
3445     
3446     h->b_stride=  s->mb_width*4 + 1;
3447     h->b8_stride= s->mb_width*2 + 1;
3448
3449     s->resync_mb_x = s->mb_x = first_mb_in_slice % s->mb_width;
3450     s->resync_mb_y = s->mb_y = first_mb_in_slice / s->mb_width; //FIXME AFFW
3451     
3452     s->width = 16*s->mb_width - 2*(h->sps.crop_left + h->sps.crop_right );
3453     if(h->sps.frame_mbs_only_flag)
3454         s->height= 16*s->mb_height - 2*(h->sps.crop_top  + h->sps.crop_bottom);
3455     else
3456         s->height= 16*s->mb_height - 4*(h->sps.crop_top  + h->sps.crop_bottom); //FIXME recheck
3457     
3458     if (s->context_initialized 
3459         && (   s->width != s->avctx->width || s->height != s->avctx->height)) {
3460         free_tables(h);
3461         MPV_common_end(s);
3462     }
3463     if (!s->context_initialized) {
3464         if (MPV_common_init(s) < 0)
3465             return -1;
3466
3467         alloc_tables(h);
3468
3469         s->avctx->width = s->width;
3470         s->avctx->height = s->height;
3471         s->avctx->sample_aspect_ratio= h->sps.sar;
3472
3473         if(h->sps.timing_info_present_flag && h->sps.fixed_frame_rate_flag){
3474             s->avctx->frame_rate = h->sps.time_scale;
3475             s->avctx->frame_rate_base = h->sps.num_units_in_tick;
3476         }
3477     }
3478
3479     if(h->slice_num == 0){
3480         frame_start(h);
3481     }
3482
3483     s->current_picture_ptr->frame_num= //FIXME frame_num cleanup
3484     h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num);
3485
3486     if(h->sps.frame_mbs_only_flag){
3487         s->picture_structure= PICT_FRAME;
3488     }else{
3489         if(get_bits1(&s->gb)) //field_pic_flag
3490             s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag
3491         else
3492             s->picture_structure= PICT_FRAME;
3493     }
3494
3495     if(s->picture_structure==PICT_FRAME){
3496         h->curr_pic_num=   h->frame_num;
3497         h->max_pic_num= 1<< h->sps.log2_max_frame_num;
3498     }else{
3499         h->curr_pic_num= 2*h->frame_num;
3500         h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1);
3501     }
3502         
3503     if(h->nal_unit_type == NAL_IDR_SLICE){
3504         get_ue_golomb(&s->gb); /* idr_pic_id */
3505     }
3506    
3507     if(h->sps.poc_type==0){
3508         h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb);
3509         
3510         if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){
3511             h->delta_poc_bottom= get_se_golomb(&s->gb);
3512         }
3513     }
3514     
3515     if(h->sps.poc_type==1 && !h->sps.delta_pic_order_always_zero_flag){
3516         h->delta_poc[0]= get_se_golomb(&s->gb);
3517         
3518         if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME)
3519             h->delta_poc[1]= get_se_golomb(&s->gb);
3520     }
3521     
3522     init_poc(h);
3523     
3524     if(h->pps.redundant_pic_cnt_present){
3525         h->redundant_pic_count= get_ue_golomb(&s->gb);
3526     }
3527
3528     //set defaults, might be overriden a few line later
3529     h->ref_count[0]= h->pps.ref_count[0];
3530     h->ref_count[1]= h->pps.ref_count[1];
3531
3532     if(h->slice_type == P_TYPE || h->slice_type == SP_TYPE || h->slice_type == B_TYPE){
3533         if(h->slice_type == B_TYPE){
3534             h->direct_spatial_mv_pred= get_bits1(&s->gb);
3535         }
3536         num_ref_idx_active_override_flag= get_bits1(&s->gb);
3537     
3538         if(num_ref_idx_active_override_flag){
3539             h->ref_count[0]= get_ue_golomb(&s->gb) + 1;
3540             if(h->slice_type==B_TYPE)
3541                 h->ref_count[1]= get_ue_golomb(&s->gb) + 1;
3542
3543             if(h->ref_count[0] > 32 || h->ref_count[1] > 32){
3544                 av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n");
3545                 return -1;
3546             }
3547         }
3548     }
3549
3550     if(h->slice_num == 0){
3551         fill_default_ref_list(h);
3552     }
3553
3554     decode_ref_pic_list_reordering(h);
3555
3556     if(   (h->pps.weighted_pred          && (h->slice_type == P_TYPE || h->slice_type == SP_TYPE )) 
3557        || (h->pps.weighted_bipred_idc==1 && h->slice_type==B_TYPE ) )
3558         pred_weight_table(h);
3559     else if(h->pps.weighted_bipred_idc==2 && h->slice_type==B_TYPE)
3560         implicit_weight_table(h);
3561     else
3562         h->use_weight = 0;
3563     
3564     if(s->current_picture.reference)
3565         decode_ref_pic_marking(h);
3566
3567     if( h->slice_type != I_TYPE && h->slice_type != SI_TYPE && h->pps.cabac )
3568         h->cabac_init_idc = get_ue_golomb(&s->gb);
3569
3570     h->last_qscale_diff = 0;
3571     s->qscale = h->pps.init_qp + get_se_golomb(&s->gb);
3572     if(s->qscale<0 || s->qscale>51){
3573         av_log(s->avctx, AV_LOG_ERROR, "QP %d out of range\n", s->qscale);
3574         return -1;
3575     }
3576     h->chroma_qp = get_chroma_qp(h, s->qscale);
3577     //FIXME qscale / qp ... stuff
3578     if(h->slice_type == SP_TYPE){
3579         get_bits1(&s->gb); /* sp_for_switch_flag */
3580     }
3581     if(h->slice_type==SP_TYPE || h->slice_type == SI_TYPE){
3582         get_se_golomb(&s->gb); /* slice_qs_delta */
3583     }
3584
3585     h->deblocking_filter = 1;
3586     h->slice_alpha_c0_offset = 0;
3587     h->slice_beta_offset = 0;
3588     if( h->pps.deblocking_filter_parameters_present ) {
3589         h->deblocking_filter= get_ue_golomb(&s->gb);
3590         if(h->deblocking_filter < 2) 
3591             h->deblocking_filter^= 1; // 1<->0
3592
3593         if( h->deblocking_filter ) {
3594             h->slice_alpha_c0_offset = get_se_golomb(&s->gb) << 1;
3595             h->slice_beta_offset = get_se_golomb(&s->gb) << 1;
3596         }
3597     }
3598
3599 #if 0 //FMO
3600     if( h->pps.num_slice_groups > 1  && h->pps.mb_slice_group_map_type >= 3 && h->pps.mb_slice_group_map_type <= 5)
3601         slice_group_change_cycle= get_bits(&s->gb, ?);
3602 #endif
3603
3604     h->slice_num++;
3605
3606     if(s->avctx->debug&FF_DEBUG_PICT_INFO){
3607         av_log(h->s.avctx, AV_LOG_DEBUG, "slice:%d mb:%d %c pps:%d frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d weight:%d%s\n", 
3608                h->slice_num, first_mb_in_slice, 
3609                av_get_pict_type_char(h->slice_type),
3610                pps_id, h->frame_num,
3611                s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1],
3612                h->ref_count[0], h->ref_count[1],
3613                s->qscale,
3614                h->deblocking_filter,
3615                h->use_weight,
3616                h->use_weight==1 && h->use_weight_chroma ? "c" : ""
3617                );
3618     }
3619
3620     return 0;
3621 }
3622
3623 /**
3624  *
3625  */
3626 static inline int get_level_prefix(GetBitContext *gb){
3627     unsigned int buf;
3628     int log;
3629     
3630     OPEN_READER(re, gb);
3631     UPDATE_CACHE(re, gb);
3632     buf=GET_CACHE(re, gb);
3633     
3634     log= 32 - av_log2(buf);
3635 #ifdef TRACE
3636     print_bin(buf>>(32-log), log);
3637     av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d lpr @%5d in %s get_level_prefix\n", buf>>(32-log), log, log-1, get_bits_count(gb), __FILE__);
3638 #endif
3639
3640     LAST_SKIP_BITS(re, gb, log);
3641     CLOSE_READER(re, gb);
3642
3643     return log-1;
3644 }
3645
3646 /**
3647  * decodes a residual block.
3648  * @param n block index
3649  * @param scantable scantable
3650  * @param max_coeff number of coefficients in the block
3651  * @return <0 if an error occured
3652  */
3653 static int decode_residual(H264Context *h, GetBitContext *gb, DCTELEM *block, int n, const uint8_t *scantable, int qp, int max_coeff){
3654     MpegEncContext * const s = &h->s;
3655     const uint16_t *qmul= dequant_coeff[qp];
3656     static const int coeff_token_table_index[17]= {0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3};
3657     int level[16], run[16];
3658     int suffix_length, zeros_left, coeff_num, coeff_token, total_coeff, i, trailing_ones;
3659
3660     //FIXME put trailing_onex into the context
3661
3662     if(n == CHROMA_DC_BLOCK_INDEX){
3663         coeff_token= get_vlc2(gb, chroma_dc_coeff_token_vlc.table, CHROMA_DC_COEFF_TOKEN_VLC_BITS, 1);
3664         total_coeff= coeff_token>>2;
3665     }else{    
3666         if(n == LUMA_DC_BLOCK_INDEX){
3667             total_coeff= pred_non_zero_count(h, 0);
3668             coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2);
3669             total_coeff= coeff_token>>2;
3670         }else{
3671             total_coeff= pred_non_zero_count(h, n);
3672             coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOKEN_VLC_BITS, 2);
3673             total_coeff= coeff_token>>2;
3674             h->non_zero_count_cache[ scan8[n] ]= total_coeff;
3675         }
3676     }
3677
3678     //FIXME set last_non_zero?
3679
3680     if(total_coeff==0)
3681         return 0;
3682         
3683     trailing_ones= coeff_token&3;
3684     tprintf("trailing:%d, total:%d\n", trailing_ones, total_coeff);
3685     assert(total_coeff<=16);
3686     
3687     for(i=0; i<trailing_ones; i++){
3688         level[i]= 1 - 2*get_bits1(gb);
3689     }
3690
3691     suffix_length= total_coeff > 10 && trailing_ones < 3;
3692
3693     for(; i<total_coeff; i++){
3694         const int prefix= get_level_prefix(gb);
3695         int level_code, mask;
3696
3697         if(prefix<14){ //FIXME try to build a large unified VLC table for all this
3698             if(suffix_length)
3699                 level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part
3700             else
3701                 level_code= (prefix<<suffix_length); //part
3702         }else if(prefix==14){
3703             if(suffix_length)
3704                 level_code= (prefix<<suffix_length) + get_bits(gb, suffix_length); //part
3705             else
3706                 level_code= prefix + get_bits(gb, 4); //part
3707         }else if(prefix==15){
3708             level_code= (prefix<<suffix_length) + get_bits(gb, 12); //part
3709             if(suffix_length==0) level_code+=15; //FIXME doesnt make (much)sense
3710         }else{
3711             av_log(h->s.avctx, AV_LOG_ERROR, "prefix too large at %d %d\n", s->mb_x, s->mb_y);
3712             return -1;
3713         }
3714
3715         if(i==trailing_ones && i<3) level_code+= 2; //FIXME split first iteration
3716
3717         mask= -(level_code&1);
3718         level[i]= (((2+level_code)>>1) ^ mask) - mask;
3719
3720         if(suffix_length==0) suffix_length=1; //FIXME split first iteration
3721
3722 #if 1
3723         if(ABS(level[i]) > (3<<(suffix_length-1)) && suffix_length<6) suffix_length++;
3724 #else        
3725         if((2+level_code)>>1) > (3<<(suffix_length-1)) && suffix_length<6) suffix_length++;
3726         /* ? == prefix > 2 or sth */
3727 #endif
3728         tprintf("level: %d suffix_length:%d\n", level[i], suffix_length);
3729     }
3730
3731     if(total_coeff == max_coeff)
3732         zeros_left=0;
3733     else{
3734         if(n == CHROMA_DC_BLOCK_INDEX)
3735             zeros_left= get_vlc2(gb, chroma_dc_total_zeros_vlc[ total_coeff-1 ].table, CHROMA_DC_TOTAL_ZEROS_VLC_BITS, 1);
3736         else
3737             zeros_left= get_vlc2(gb, total_zeros_vlc[ total_coeff-1 ].table, TOTAL_ZEROS_VLC_BITS, 1);
3738     }
3739     
3740     for(i=0; i<total_coeff-1; i++){
3741         if(zeros_left <=0)
3742             break;
3743         else if(zeros_left < 7){
3744             run[i]= get_vlc2(gb, run_vlc[zeros_left-1].table, RUN_VLC_BITS, 1);
3745         }else{
3746             run[i]= get_vlc2(gb, run7_vlc.table, RUN7_VLC_BITS, 2);
3747         }
3748         zeros_left -= run[i];
3749     }
3750
3751     if(zeros_left<0){
3752         av_log(h->s.avctx, AV_LOG_ERROR, "negative number of zero coeffs at %d %d\n", s->mb_x, s->mb_y);
3753         return -1;
3754     }
3755     
3756     for(; i<total_coeff-1; i++){
3757         run[i]= 0;
3758     }
3759
3760     run[i]= zeros_left;
3761
3762     coeff_num=-1;
3763     if(n > 24){
3764         for(i=total_coeff-1; i>=0; i--){ //FIXME merge into rundecode?
3765             int j;
3766
3767             coeff_num += run[i] + 1; //FIXME add 1 earlier ?
3768             j= scantable[ coeff_num ];
3769
3770             block[j]= level[i];
3771         }
3772     }else{
3773         for(i=total_coeff-1; i>=0; i--){ //FIXME merge into  rundecode?
3774             int j;
3775
3776             coeff_num += run[i] + 1; //FIXME add 1 earlier ?
3777             j= scantable[ coeff_num ];
3778
3779             block[j]= level[i] * qmul[j];
3780 //            printf("%d %d  ", block[j], qmul[j]);
3781         }
3782     }
3783     return 0;
3784 }
3785
3786 /**
3787  * decodes a P_SKIP or B_SKIP macroblock
3788  */
3789 static void decode_mb_skip(H264Context *h){
3790     MpegEncContext * const s = &h->s;
3791     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
3792     int mb_type;
3793     
3794     memset(h->non_zero_count[mb_xy], 0, 16);
3795     memset(h->non_zero_count_cache + 8, 0, 8*5); //FIXME ugly, remove pfui
3796
3797     if( h->slice_type == B_TYPE )
3798     {
3799         // just for fill_caches. pred_direct_motion will set the real mb_type
3800         mb_type= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1|MB_TYPE_DIRECT2|MB_TYPE_SKIP;
3801         //FIXME mbaff
3802
3803         fill_caches(h, mb_type); //FIXME check what is needed and what not ...
3804         pred_direct_motion(h, &mb_type);
3805         if(h->pps.cabac){
3806             fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4);
3807             fill_rectangle(h->mvd_cache[1][scan8[0]], 4, 4, 8, 0, 4);
3808         }
3809     }
3810     else
3811     {
3812         int mx, my;
3813         mb_type= MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P1L0|MB_TYPE_SKIP;
3814
3815         if(h->sps.mb_aff && s->mb_skip_run==0 && (s->mb_y&1)==0){
3816             h->mb_field_decoding_flag= get_bits1(&s->gb);
3817         }
3818         if(h->mb_field_decoding_flag)
3819             mb_type|= MB_TYPE_INTERLACED;
3820         
3821         fill_caches(h, mb_type); //FIXME check what is needed and what not ...
3822         pred_pskip_motion(h, &mx, &my);
3823         fill_rectangle(&h->ref_cache[0][scan8[0]], 4, 4, 8, 0, 1);
3824         fill_rectangle(  h->mv_cache[0][scan8[0]], 4, 4, 8, pack16to32(mx,my), 4);
3825         if(h->pps.cabac)
3826             fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4);
3827     }
3828
3829     write_back_motion(h, mb_type);
3830     s->current_picture.mb_type[mb_xy]= mb_type|MB_TYPE_SKIP;
3831     s->current_picture.qscale_table[mb_xy]= s->qscale;
3832     h->slice_table[ mb_xy ]= h->slice_num;
3833     h->prev_mb_skiped= 1;
3834 }
3835
3836 /**
3837  * decodes a macroblock
3838  * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed
3839  */
3840 static int decode_mb_cavlc(H264Context *h){
3841     MpegEncContext * const s = &h->s;
3842     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
3843     int mb_type, partition_count, cbp;
3844
3845     s->dsp.clear_blocks(h->mb); //FIXME avoid if allready clear (move after skip handlong?    
3846
3847     tprintf("pic:%d mb:%d/%d\n", h->frame_num, s->mb_x, s->mb_y);
3848     cbp = 0; /* avoid warning. FIXME: find a solution without slowing
3849                 down the code */
3850     if(h->slice_type != I_TYPE && h->slice_type != SI_TYPE){
3851         if(s->mb_skip_run==-1)
3852             s->mb_skip_run= get_ue_golomb(&s->gb);
3853         
3854         if (s->mb_skip_run--) {
3855             decode_mb_skip(h);
3856             return 0;
3857         }
3858     }
3859     if(h->sps.mb_aff /* && !field pic FIXME needed? */){
3860         if((s->mb_y&1)==0)
3861             h->mb_field_decoding_flag = get_bits1(&s->gb);
3862     }else
3863         h->mb_field_decoding_flag=0; //FIXME som ed note ?!
3864     
3865     h->prev_mb_skiped= 0;
3866     
3867     mb_type= get_ue_golomb(&s->gb);
3868     if(h->slice_type == B_TYPE){
3869         if(mb_type < 23){
3870             partition_count= b_mb_type_info[mb_type].partition_count;
3871             mb_type=         b_mb_type_info[mb_type].type;
3872         }else{
3873             mb_type -= 23;
3874             goto decode_intra_mb;
3875         }
3876     }else if(h->slice_type == P_TYPE /*|| h->slice_type == SP_TYPE */){
3877         if(mb_type < 5){
3878             partition_count= p_mb_type_info[mb_type].partition_count;
3879             mb_type=         p_mb_type_info[mb_type].type;
3880         }else{
3881             mb_type -= 5;
3882             goto decode_intra_mb;
3883         }
3884     }else{
3885        assert(h->slice_type == I_TYPE);
3886 decode_intra_mb:
3887         if(mb_type > 25){
3888             av_log(h->s.avctx, AV_LOG_ERROR, "mb_type %d in %c slice to large at %d %d\n", mb_type, av_get_pict_type_char(h->slice_type), s->mb_x, s->mb_y);
3889             return -1;
3890         }
3891         partition_count=0;
3892         cbp= i_mb_type_info[mb_type].cbp;
3893         h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode;
3894         mb_type= i_mb_type_info[mb_type].type;
3895     }
3896
3897     if(h->mb_field_decoding_flag)
3898         mb_type |= MB_TYPE_INTERLACED;
3899
3900     s->current_picture.mb_type[mb_xy]= mb_type;
3901     h->slice_table[ mb_xy ]= h->slice_num;
3902     
3903     if(IS_INTRA_PCM(mb_type)){
3904         const uint8_t *ptr;
3905         int x, y;
3906         
3907         // we assume these blocks are very rare so we dont optimize it
3908         align_get_bits(&s->gb);
3909         
3910         ptr= s->gb.buffer + get_bits_count(&s->gb);
3911     
3912         for(y=0; y<16; y++){
3913             const int index= 4*(y&3) + 64*(y>>2);
3914             for(x=0; x<16; x++){
3915                 h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++);
3916             }
3917         }
3918         for(y=0; y<8; y++){
3919             const int index= 256 + 4*(y&3) + 32*(y>>2);
3920             for(x=0; x<8; x++){
3921                 h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++);
3922             }
3923         }
3924         for(y=0; y<8; y++){
3925             const int index= 256 + 64 + 4*(y&3) + 32*(y>>2);
3926             for(x=0; x<8; x++){
3927                 h->mb[index + (x&3) + 16*(x>>2)]= *(ptr++);
3928             }
3929         }
3930     
3931         skip_bits(&s->gb, 384); //FIXME check /fix the bitstream readers
3932         
3933         //FIXME deblock filter, non_zero_count_cache init ...
3934         memset(h->non_zero_count[mb_xy], 16, 16);
3935         s->current_picture.qscale_table[mb_xy]= s->qscale;
3936         
3937         return 0;
3938     }
3939         
3940     fill_caches(h, mb_type);
3941
3942     //mb_pred
3943     if(IS_INTRA(mb_type)){
3944 //            init_top_left_availability(h);
3945             if(IS_INTRA4x4(mb_type)){
3946                 int i;
3947
3948 //                fill_intra4x4_pred_table(h);
3949                 for(i=0; i<16; i++){
3950                     const int mode_coded= !get_bits1(&s->gb);
3951                     const int predicted_mode=  pred_intra_mode(h, i);
3952                     int mode;
3953
3954                     if(mode_coded){
3955                         const int rem_mode= get_bits(&s->gb, 3);
3956                         if(rem_mode<predicted_mode)
3957                             mode= rem_mode;
3958                         else
3959                             mode= rem_mode + 1;
3960                     }else{
3961                         mode= predicted_mode;
3962                     }
3963                     
3964                     h->intra4x4_pred_mode_cache[ scan8[i] ] = mode;
3965                 }
3966                 write_back_intra_pred_mode(h);
3967                 if( check_intra4x4_pred_mode(h) < 0)
3968                     return -1;
3969             }else{
3970                 h->intra16x16_pred_mode= check_intra_pred_mode(h, h->intra16x16_pred_mode);
3971                 if(h->intra16x16_pred_mode < 0)
3972                     return -1;
3973             }
3974             h->chroma_pred_mode= get_ue_golomb(&s->gb);
3975
3976             h->chroma_pred_mode= check_intra_pred_mode(h, h->chroma_pred_mode);
3977             if(h->chroma_pred_mode < 0)
3978                 return -1;
3979     }else if(partition_count==4){
3980         int i, j, sub_partition_count[4], list, ref[2][4];
3981         
3982         if(h->slice_type == B_TYPE){
3983             for(i=0; i<4; i++){
3984                 h->sub_mb_type[i]= get_ue_golomb(&s->gb);
3985                 if(h->sub_mb_type[i] >=13){
3986                     av_log(h->s.avctx, AV_LOG_ERROR, "B sub_mb_type %d out of range at %d %d\n", h->sub_mb_type[i], s->mb_x, s->mb_y);
3987                     return -1;
3988                 }
3989                 sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
3990                 h->sub_mb_type[i]=      b_sub_mb_type_info[ h->sub_mb_type[i] ].type;
3991             }
3992             if(   IS_DIRECT(h->sub_mb_type[0]) || IS_DIRECT(h->sub_mb_type[1])
3993                || IS_DIRECT(h->sub_mb_type[2]) || IS_DIRECT(h->sub_mb_type[3]))
3994                 pred_direct_motion(h, &mb_type);
3995         }else{
3996             assert(h->slice_type == P_TYPE || h->slice_type == SP_TYPE); //FIXME SP correct ?
3997             for(i=0; i<4; i++){
3998                 h->sub_mb_type[i]= get_ue_golomb(&s->gb);
3999                 if(h->sub_mb_type[i] >=4){
4000                     av_log(h->s.avctx, AV_LOG_ERROR, "P sub_mb_type %d out of range at %d %d\n", h->sub_mb_type[i], s->mb_x, s->mb_y);
4001                     return -1;
4002                 }
4003                 sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
4004                 h->sub_mb_type[i]=      p_sub_mb_type_info[ h->sub_mb_type[i] ].type;
4005             }
4006         }
4007         
4008         for(list=0; list<2; list++){
4009             const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list];
4010             if(ref_count == 0) continue;
4011             for(i=0; i<4; i++){
4012                 if(IS_DIRECT(h->sub_mb_type[i])) continue;
4013                 if(IS_DIR(h->sub_mb_type[i], 0, list)){
4014                     ref[list][i] = get_te0_golomb(&s->gb, ref_count); //FIXME init to 0 before and skip?
4015                 }else{
4016                  //FIXME
4017                     ref[list][i] = -1;
4018                 }
4019             }
4020         }
4021         
4022         for(list=0; list<2; list++){
4023             const int ref_count= IS_REF0(mb_type) ? 1 : h->ref_count[list];
4024             if(ref_count == 0) continue;
4025
4026             for(i=0; i<4; i++){
4027                 if(IS_DIRECT(h->sub_mb_type[i])) continue;
4028                 h->ref_cache[list][ scan8[4*i]   ]=h->ref_cache[list][ scan8[4*i]+1 ]=
4029                 h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i];
4030
4031                 if(IS_DIR(h->sub_mb_type[i], 0, list)){
4032                     const int sub_mb_type= h->sub_mb_type[i];
4033                     const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1;
4034                     for(j=0; j<sub_partition_count[i]; j++){
4035                         int mx, my;
4036                         const int index= 4*i + block_width*j;
4037                         int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ];
4038                         pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mx, &my);
4039                         mx += get_se_golomb(&s->gb);
4040                         my += get_se_golomb(&s->gb);
4041                         tprintf("final mv:%d %d\n", mx, my);
4042
4043                         if(IS_SUB_8X8(sub_mb_type)){
4044                             mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= 
4045                             mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx;
4046                             mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= 
4047                             mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my;
4048                         }else if(IS_SUB_8X4(sub_mb_type)){
4049                             mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= mx;
4050                             mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= my;
4051                         }else if(IS_SUB_4X8(sub_mb_type)){
4052                             mv_cache[ 0 ][0]= mv_cache[ 8 ][0]= mx;
4053                             mv_cache[ 0 ][1]= mv_cache[ 8 ][1]= my;
4054                         }else{
4055                             assert(IS_SUB_4X4(sub_mb_type));
4056                             mv_cache[ 0 ][0]= mx;
4057                             mv_cache[ 0 ][1]= my;
4058                         }
4059                     }
4060                 }else{
4061                     uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0];
4062                     p[0] = p[1]=
4063                     p[8] = p[9]= 0;
4064                 }
4065             }
4066         }
4067     }else if(IS_DIRECT(mb_type)){
4068         pred_direct_motion(h, &mb_type);
4069         s->current_picture.mb_type[mb_xy]= mb_type;
4070     }else{
4071         int list, mx, my, i;
4072          //FIXME we should set ref_idx_l? to 0 if we use that later ...
4073         if(IS_16X16(mb_type)){
4074             for(list=0; list<2; list++){
4075                 if(h->ref_count[list]>0){
4076                     if(IS_DIR(mb_type, 0, list)){
4077                         const int val= get_te0_golomb(&s->gb, h->ref_count[list]);
4078                         fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, val, 1);
4079                     }
4080                 }
4081             }
4082             for(list=0; list<2; list++){
4083                 if(IS_DIR(mb_type, 0, list)){
4084                     pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mx, &my);
4085                     mx += get_se_golomb(&s->gb);
4086                     my += get_se_golomb(&s->gb);
4087                     tprintf("final mv:%d %d\n", mx, my);
4088
4089                     fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4);
4090                 }
4091             }
4092         }
4093         else if(IS_16X8(mb_type)){
4094             for(list=0; list<2; list++){
4095                 if(h->ref_count[list]>0){
4096                     for(i=0; i<2; i++){
4097                         if(IS_DIR(mb_type, i, list)){
4098                             const int val= get_te0_golomb(&s->gb, h->ref_count[list]);
4099                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, val, 1);
4100                         }else // needed only for mixed refs (e.g. B_L0_L1_16x8)
4101                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, (LIST_NOT_USED&0xFF), 1);
4102                     }
4103                 }
4104             }
4105             for(list=0; list<2; list++){
4106                 for(i=0; i<2; i++){
4107                     if(IS_DIR(mb_type, i, list)){
4108                         pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mx, &my);
4109                         mx += get_se_golomb(&s->gb);
4110                         my += get_se_golomb(&s->gb);
4111                         tprintf("final mv:%d %d\n", mx, my);
4112
4113                         fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx,my), 4);
4114                     }else
4115                         fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4);
4116                 }
4117             }
4118         }else{
4119             assert(IS_8X16(mb_type));
4120             for(list=0; list<2; list++){
4121                 if(h->ref_count[list]>0){
4122                     for(i=0; i<2; i++){
4123                         if(IS_DIR(mb_type, i, list)){ //FIXME optimize
4124                             const int val= get_te0_golomb(&s->gb, h->ref_count[list]);
4125                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, val, 1);
4126                         }else // needed only for mixed refs
4127                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, (LIST_NOT_USED&0xFF), 1);
4128                     }
4129                 }
4130             }
4131             for(list=0; list<2; list++){
4132                 for(i=0; i<2; i++){
4133                     if(IS_DIR(mb_type, i, list)){
4134                         pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mx, &my);
4135                         mx += get_se_golomb(&s->gb);
4136                         my += get_se_golomb(&s->gb);
4137                         tprintf("final mv:%d %d\n", mx, my);
4138
4139                         fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx,my), 4);
4140                     }else
4141                         fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4);
4142                 }
4143             }
4144         }
4145     }
4146     
4147     if(IS_INTER(mb_type))
4148         write_back_motion(h, mb_type);
4149     
4150     if(!IS_INTRA16x16(mb_type)){
4151         cbp= get_ue_golomb(&s->gb);
4152         if(cbp > 47){
4153             av_log(h->s.avctx, AV_LOG_ERROR, "cbp too large (%d) at %d %d\n", cbp, s->mb_x, s->mb_y);
4154             return -1;
4155         }
4156         
4157         if(IS_INTRA4x4(mb_type))
4158             cbp= golomb_to_intra4x4_cbp[cbp];
4159         else
4160             cbp= golomb_to_inter_cbp[cbp];
4161     }
4162
4163     if(cbp || IS_INTRA16x16(mb_type)){
4164         int i8x8, i4x4, chroma_idx;
4165         int chroma_qp, dquant;
4166         GetBitContext *gb= IS_INTRA(mb_type) ? h->intra_gb_ptr : h->inter_gb_ptr;
4167         const uint8_t *scan, *dc_scan;
4168         
4169 //        fill_non_zero_count_cache(h);
4170
4171         if(IS_INTERLACED(mb_type)){
4172             scan= field_scan;
4173             dc_scan= luma_dc_field_scan;
4174         }else{
4175             scan= zigzag_scan;
4176             dc_scan= luma_dc_zigzag_scan;
4177         }
4178
4179         dquant= get_se_golomb(&s->gb);
4180
4181         if( dquant > 25 || dquant < -26 ){
4182             av_log(h->s.avctx, AV_LOG_ERROR, "dquant out of range (%d) at %d %d\n", dquant, s->mb_x, s->mb_y);
4183             return -1;
4184         }
4185         
4186         s->qscale += dquant;
4187         if(((unsigned)s->qscale) > 51){
4188             if(s->qscale<0) s->qscale+= 52;
4189             else            s->qscale-= 52;
4190         }
4191         
4192         h->chroma_qp= chroma_qp= get_chroma_qp(h, s->qscale);
4193         if(IS_INTRA16x16(mb_type)){
4194             if( decode_residual(h, h->intra_gb_ptr, h->mb, LUMA_DC_BLOCK_INDEX, dc_scan, s->qscale, 16) < 0){
4195                 return -1; //FIXME continue if partotioned and other retirn -1 too
4196             }
4197
4198             assert((cbp&15) == 0 || (cbp&15) == 15);
4199
4200             if(cbp&15){
4201                 for(i8x8=0; i8x8<4; i8x8++){
4202                     for(i4x4=0; i4x4<4; i4x4++){
4203                         const int index= i4x4 + 4*i8x8;
4204                         if( decode_residual(h, h->intra_gb_ptr, h->mb + 16*index, index, scan + 1, s->qscale, 15) < 0 ){
4205                             return -1;
4206                         }
4207                     }
4208                 }
4209             }else{
4210                 fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1);
4211             }
4212         }else{
4213             for(i8x8=0; i8x8<4; i8x8++){
4214                 if(cbp & (1<<i8x8)){
4215                     for(i4x4=0; i4x4<4; i4x4++){
4216                         const int index= i4x4 + 4*i8x8;
4217                         
4218                         if( decode_residual(h, gb, h->mb + 16*index, index, scan, s->qscale, 16) <0 ){
4219                             return -1;
4220                         }
4221                     }
4222                 }else{
4223                     uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ];
4224                     nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0;
4225                 }
4226             }
4227         }
4228         
4229         if(cbp&0x30){
4230             for(chroma_idx=0; chroma_idx<2; chroma_idx++)
4231                 if( decode_residual(h, gb, h->mb + 256 + 16*4*chroma_idx, CHROMA_DC_BLOCK_INDEX, chroma_dc_scan, chroma_qp, 4) < 0){
4232                     return -1;
4233                 }
4234         }
4235
4236         if(cbp&0x20){
4237             for(chroma_idx=0; chroma_idx<2; chroma_idx++){
4238                 for(i4x4=0; i4x4<4; i4x4++){
4239                     const int index= 16 + 4*chroma_idx + i4x4;
4240                     if( decode_residual(h, gb, h->mb + 16*index, index, scan + 1, chroma_qp, 15) < 0){
4241                         return -1;
4242                     }
4243                 }
4244             }
4245         }else{
4246             uint8_t * const nnz= &h->non_zero_count_cache[0];
4247             nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
4248             nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
4249         }
4250     }else{
4251         uint8_t * const nnz= &h->non_zero_count_cache[0];
4252         fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1);
4253         nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
4254         nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
4255     }
4256     s->current_picture.qscale_table[mb_xy]= s->qscale;
4257     write_back_non_zero_count(h);
4258
4259     return 0;
4260 }
4261
4262 static int decode_cabac_intra_mb_type(H264Context *h, int ctx_base, int intra_slice) {
4263     uint8_t *state= &h->cabac_state[ctx_base];
4264     int mb_type;
4265     
4266     if(intra_slice){
4267         MpegEncContext * const s = &h->s;
4268         const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
4269         int ctx=0;
4270         if( s->mb_x > 0 && !IS_INTRA4x4( s->current_picture.mb_type[mb_xy-1] ) )
4271             ctx++;
4272         if( s->mb_y > 0 && !IS_INTRA4x4( s->current_picture.mb_type[mb_xy-s->mb_stride] ) )
4273             ctx++;
4274         if( get_cabac( &h->cabac, &state[ctx] ) == 0 )
4275             return 0;   /* I4x4 */
4276         state += 2;
4277     }else{
4278         if( get_cabac( &h->cabac, &state[0] ) == 0 )
4279             return 0;   /* I4x4 */
4280     }
4281
4282     if( get_cabac_terminate( &h->cabac ) )
4283         return 25;  /* PCM */
4284
4285     mb_type = 1; /* I16x16 */
4286     if( get_cabac( &h->cabac, &state[1] ) )
4287         mb_type += 12;  /* cbp_luma != 0 */
4288
4289     if( get_cabac( &h->cabac, &state[2] ) ) {
4290         if( get_cabac( &h->cabac, &state[2+intra_slice] ) )
4291             mb_type += 4 * 2;   /* cbp_chroma == 2 */
4292         else
4293             mb_type += 4 * 1;   /* cbp_chroma == 1 */
4294     }
4295     if( get_cabac( &h->cabac, &state[3+intra_slice] ) )
4296         mb_type += 2;
4297     if( get_cabac( &h->cabac, &state[3+2*intra_slice] ) )
4298         mb_type += 1;
4299     return mb_type;
4300 }
4301
4302 static int decode_cabac_mb_type( H264Context *h ) {
4303     MpegEncContext * const s = &h->s;
4304
4305     if( h->slice_type == I_TYPE ) {
4306         return decode_cabac_intra_mb_type(h, 3, 1);
4307     } else if( h->slice_type == P_TYPE ) {
4308         if( get_cabac( &h->cabac, &h->cabac_state[14] ) == 0 ) {
4309             /* P-type */
4310             if( get_cabac( &h->cabac, &h->cabac_state[15] ) == 0 ) {
4311                 if( get_cabac( &h->cabac, &h->cabac_state[16] ) == 0 )
4312                     return 0; /* P_L0_D16x16; */
4313                 else
4314                     return 3; /* P_8x8; */
4315             } else {
4316                 if( get_cabac( &h->cabac, &h->cabac_state[17] ) == 0 )
4317                     return 2; /* P_L0_D8x16; */
4318                 else
4319                     return 1; /* P_L0_D16x8; */
4320             }
4321         } else {
4322             return decode_cabac_intra_mb_type(h, 17, 0) + 5;
4323         }
4324     } else if( h->slice_type == B_TYPE ) {
4325         const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
4326         int ctx = 0;
4327         int bits;
4328
4329         if( s->mb_x > 0 && !IS_SKIP( s->current_picture.mb_type[mb_xy-1] )
4330                       && !IS_DIRECT( s->current_picture.mb_type[mb_xy-1] ) )
4331             ctx++;
4332         if( s->mb_y > 0 && !IS_SKIP( s->current_picture.mb_type[mb_xy-s->mb_stride] )
4333                       && !IS_DIRECT( s->current_picture.mb_type[mb_xy-s->mb_stride] ) )
4334             ctx++;
4335
4336         if( !get_cabac( &h->cabac, &h->cabac_state[27+ctx] ) )
4337             return 0; /* B_Direct_16x16 */
4338
4339         if( !get_cabac( &h->cabac, &h->cabac_state[27+3] ) ) {
4340             return 1 + get_cabac( &h->cabac, &h->cabac_state[27+5] ); /* B_L[01]_16x16 */
4341         }
4342
4343         bits = get_cabac( &h->cabac, &h->cabac_state[27+4] ) << 3;
4344         bits|= get_cabac( &h->cabac, &h->cabac_state[27+5] ) << 2;
4345         bits|= get_cabac( &h->cabac, &h->cabac_state[27+5] ) << 1;
4346         bits|= get_cabac( &h->cabac, &h->cabac_state[27+5] );
4347         if( bits < 8 )
4348             return bits + 3; /* B_Bi_16x16 through B_L1_L0_16x8 */
4349         else if( bits == 13 ) {
4350             return decode_cabac_intra_mb_type(h, 32, 0) + 23;
4351         } else if( bits == 14 )
4352             return 11; /* B_L1_L0_8x16 */
4353         else if( bits == 15 )
4354             return 22; /* B_8x8 */
4355
4356         bits= ( bits<<1 ) | get_cabac( &h->cabac, &h->cabac_state[27+5] );
4357         return bits - 4; /* B_L0_Bi_* through B_Bi_Bi_* */
4358     } else {
4359         /* TODO SI/SP frames? */
4360         return -1;
4361     }
4362 }
4363
4364 static int decode_cabac_mb_skip( H264Context *h) {
4365     MpegEncContext * const s = &h->s;
4366     const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;
4367     const int mba_xy = mb_xy - 1;
4368     const int mbb_xy = mb_xy - s->mb_stride;
4369     int ctx = 0;
4370
4371     if( s->mb_x > 0 && !IS_SKIP( s->current_picture.mb_type[mba_xy] ) )
4372         ctx++;
4373     if( s->mb_y > 0 && !IS_SKIP( s->current_picture.mb_type[mbb_xy] ) )
4374         ctx++;
4375
4376     if( h->slice_type == P_TYPE || h->slice_type == SP_TYPE)
4377         return get_cabac( &h->cabac, &h->cabac_state[11+ctx] );
4378     else /* B-frame */
4379         return get_cabac( &h->cabac, &h->cabac_state[24+ctx] );
4380 }
4381
4382 static int decode_cabac_mb_intra4x4_pred_mode( H264Context *h, int pred_mode ) {
4383     int mode = 0;
4384
4385     if( get_cabac( &h->cabac, &h->cabac_state[68] ) )
4386         return pred_mode;
4387
4388     if( get_cabac( &h->cabac, &h->cabac_state[69] ) )
4389         mode += 1;
4390     if( get_cabac( &h->cabac, &h->cabac_state[69] ) )
4391         mode += 2;
4392     if( get_cabac( &h->cabac, &h->cabac_state[69] ) )
4393         mode += 4;
4394     if( mode >= pred_mode )
4395         return mode + 1;
4396     else
4397         return mode;
4398 }
4399
4400 static int decode_cabac_mb_chroma_pre_mode( H264Context *h) {
4401     MpegEncContext * const s = &h->s;
4402     const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;
4403     const int mba_xy = mb_xy - 1;
4404     const int mbb_xy = mb_xy - s->mb_stride;
4405
4406     int ctx = 0;
4407
4408     /* No need to test for IS_INTRA4x4 and IS_INTRA16x16, as we set chroma_pred_mode_table to 0 */
4409     if( s->mb_x > 0 && h->chroma_pred_mode_table[mba_xy] != 0 )
4410         ctx++;
4411
4412     if( s->mb_y > 0 && h->chroma_pred_mode_table[mbb_xy] != 0 )
4413         ctx++;
4414
4415     if( get_cabac( &h->cabac, &h->cabac_state[64+ctx] ) == 0 )
4416         return 0;
4417
4418     if( get_cabac( &h->cabac, &h->cabac_state[64+3] ) == 0 )
4419         return 1;
4420     if( get_cabac( &h->cabac, &h->cabac_state[64+3] ) == 0 )
4421         return 2;
4422     else
4423         return 3;
4424 }
4425
4426 static const uint8_t block_idx_x[16] = {
4427     0, 1, 0, 1, 2, 3, 2, 3, 0, 1, 0, 1, 2, 3, 2, 3
4428 };
4429 static const uint8_t block_idx_y[16] = {
4430     0, 0, 1, 1, 0, 0, 1, 1, 2, 2, 3, 3, 2, 2, 3, 3
4431 };
4432 static const uint8_t block_idx_xy[4][4] = {
4433     { 0, 2, 8,  10},
4434     { 1, 3, 9,  11},
4435     { 4, 6, 12, 14},
4436     { 5, 7, 13, 15}
4437 };
4438
4439 static int decode_cabac_mb_cbp_luma( H264Context *h) {
4440     MpegEncContext * const s = &h->s;
4441     const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;
4442
4443     int cbp = 0;
4444     int i8x8;
4445
4446     h->cbp_table[mb_xy] = 0;  /* FIXME aaahahahah beurk */
4447
4448     for( i8x8 = 0; i8x8 < 4; i8x8++ ) {
4449         int mba_xy = -1;
4450         int mbb_xy = -1;
4451         int x, y;
4452         int ctx = 0;
4453
4454         x = block_idx_x[4*i8x8];
4455         y = block_idx_y[4*i8x8];
4456
4457         if( x > 0 )
4458             mba_xy = mb_xy;
4459         else if( s->mb_x > 0 )
4460             mba_xy = mb_xy - 1;
4461
4462         if( y > 0 )
4463             mbb_xy = mb_xy;
4464         else if( s->mb_y > 0 )
4465             mbb_xy = mb_xy - s->mb_stride;
4466
4467         /* No need to test for skip as we put 0 for skip block */
4468         if( mba_xy >= 0 ) {
4469             int i8x8a = block_idx_xy[(x-1)&0x03][y]/4;
4470             if( ((h->cbp_table[mba_xy] >> i8x8a)&0x01) == 0 )
4471                 ctx++;
4472         }
4473
4474         if( mbb_xy >= 0 ) {
4475             int i8x8b = block_idx_xy[x][(y-1)&0x03]/4;
4476             if( ((h->cbp_table[mbb_xy] >> i8x8b)&0x01) == 0 )
4477                 ctx += 2;
4478         }
4479
4480         if( get_cabac( &h->cabac, &h->cabac_state[73 + ctx] ) ) {
4481             cbp |= 1 << i8x8;
4482             h->cbp_table[mb_xy] = cbp;  /* FIXME aaahahahah beurk */
4483         }
4484     }
4485     return cbp;
4486 }
4487 static int decode_cabac_mb_cbp_chroma( H264Context *h) {
4488     int ctx;
4489     int cbp_a, cbp_b;
4490
4491     cbp_a = (h->left_cbp>>4)&0x03;
4492     cbp_b = (h-> top_cbp>>4)&0x03;
4493
4494     ctx = 0;
4495     if( cbp_a > 0 ) ctx++;
4496     if( cbp_b > 0 ) ctx += 2;
4497     if( get_cabac( &h->cabac, &h->cabac_state[77 + ctx] ) == 0 )
4498         return 0;
4499
4500     ctx = 4;
4501     if( cbp_a == 2 ) ctx++;
4502     if( cbp_b == 2 ) ctx += 2;
4503     return 1 + get_cabac( &h->cabac, &h->cabac_state[77 + ctx] );
4504 }
4505 static int decode_cabac_mb_dqp( H264Context *h) {
4506     MpegEncContext * const s = &h->s;
4507     int mbn_xy;
4508     int   ctx = 0;
4509     int   val = 0;
4510
4511     if( s->mb_x > 0 )
4512         mbn_xy = s->mb_x + s->mb_y*s->mb_stride - 1;
4513     else
4514         mbn_xy = s->mb_width - 1 + (s->mb_y-1)*s->mb_stride;
4515
4516     if( mbn_xy >= 0 && h->last_qscale_diff != 0 && ( IS_INTRA16x16(s->current_picture.mb_type[mbn_xy] ) || (h->cbp_table[mbn_xy]&0x3f) ) )
4517         ctx++;
4518
4519     while( get_cabac( &h->cabac, &h->cabac_state[60 + ctx] ) ) {
4520         if( ctx < 2 )
4521             ctx = 2;
4522         else
4523             ctx = 3;
4524         val++;
4525     }
4526
4527     if( val&0x01 )
4528         return (val + 1)/2;
4529     else
4530         return -(val + 1)/2;
4531 }
4532 static int decode_cabac_p_mb_sub_type( H264Context *h ) {
4533     if( get_cabac( &h->cabac, &h->cabac_state[21] ) )
4534         return 0;   /* 8x8 */
4535     if( !get_cabac( &h->cabac, &h->cabac_state[22] ) )
4536         return 1;   /* 8x4 */
4537     if( get_cabac( &h->cabac, &h->cabac_state[23] ) )
4538         return 2;   /* 4x8 */
4539     return 3;       /* 4x4 */
4540 }
4541 static int decode_cabac_b_mb_sub_type( H264Context *h ) {
4542     int type;
4543     if( !get_cabac( &h->cabac, &h->cabac_state[36] ) )
4544         return 0;   /* B_Direct_8x8 */
4545     if( !get_cabac( &h->cabac, &h->cabac_state[37] ) )
4546         return 1 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L0_8x8, B_L1_8x8 */
4547     type = 3;
4548     if( get_cabac( &h->cabac, &h->cabac_state[38] ) ) {
4549         if( get_cabac( &h->cabac, &h->cabac_state[39] ) )
4550             return 11 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L1_4x4, B_Bi_4x4 */
4551         type += 4;
4552     }
4553     type += 2*get_cabac( &h->cabac, &h->cabac_state[39] );
4554     type +=   get_cabac( &h->cabac, &h->cabac_state[39] );
4555     return type;
4556 }
4557
4558 static int decode_cabac_mb_ref( H264Context *h, int list, int n ) {
4559     int refa = h->ref_cache[list][scan8[n] - 1];
4560     int refb = h->ref_cache[list][scan8[n] - 8];
4561     int ref  = 0;
4562     int ctx  = 0;
4563
4564     if( h->slice_type == B_TYPE) {
4565         if( refa > 0 && !h->direct_cache[scan8[n] - 1] )
4566             ctx++;
4567         if( refb > 0 && !h->direct_cache[scan8[n] - 8] )
4568             ctx += 2;
4569     } else {
4570         if( refa > 0 )
4571             ctx++;
4572         if( refb > 0 )
4573             ctx += 2;
4574     }
4575
4576     while( get_cabac( &h->cabac, &h->cabac_state[54+ctx] ) ) {
4577         ref++;
4578         if( ctx < 4 )
4579             ctx = 4;
4580         else
4581             ctx = 5;
4582     }
4583     return ref;
4584 }
4585
4586 static int decode_cabac_mb_mvd( H264Context *h, int list, int n, int l ) {
4587     int amvd = abs( h->mvd_cache[list][scan8[n] - 1][l] ) +
4588                abs( h->mvd_cache[list][scan8[n] - 8][l] );
4589     int ctxbase = (l == 0) ? 40 : 47;
4590     int ctx, mvd;
4591
4592     if( amvd < 3 )
4593         ctx = 0;
4594     else if( amvd > 32 )
4595         ctx = 2;
4596     else
4597         ctx = 1;
4598
4599     if(!get_cabac(&h->cabac, &h->cabac_state[ctxbase+ctx]))
4600         return 0;
4601
4602     mvd= 1;
4603     ctx= 3;
4604     while( mvd < 9 && get_cabac( &h->cabac, &h->cabac_state[ctxbase+ctx] ) ) {
4605         mvd++;
4606         if( ctx < 6 )
4607             ctx++;
4608     }
4609
4610     if( mvd >= 9 ) {
4611         int k = 3;
4612         while( get_cabac_bypass( &h->cabac ) ) {
4613             mvd += 1 << k;
4614             k++;
4615         }
4616         while( k-- ) {
4617             if( get_cabac_bypass( &h->cabac ) )
4618                 mvd += 1 << k;
4619         }
4620     }
4621     if( get_cabac_bypass( &h->cabac ) )  return -mvd;
4622     else                                 return  mvd;
4623 }
4624
4625 static int inline get_cabac_cbf_ctx( H264Context *h, int cat, int idx ) {
4626     int nza, nzb;
4627     int ctx = 0;
4628
4629     if( cat == 0 ) {
4630         nza = h->left_cbp&0x100;
4631         nzb = h-> top_cbp&0x100;
4632     } else if( cat == 1 || cat == 2 ) {
4633         nza = h->non_zero_count_cache[scan8[idx] - 1];
4634         nzb = h->non_zero_count_cache[scan8[idx] - 8];
4635     } else if( cat == 3 ) {
4636         nza = (h->left_cbp>>(6+idx))&0x01;
4637         nzb = (h-> top_cbp>>(6+idx))&0x01;
4638     } else {
4639         assert(cat == 4);
4640         nza = h->non_zero_count_cache[scan8[16+idx] - 1];
4641         nzb = h->non_zero_count_cache[scan8[16+idx] - 8];
4642     }
4643
4644     if( nza > 0 )
4645         ctx++;
4646
4647     if( nzb > 0 )
4648         ctx += 2;
4649
4650     return ctx + 4 * cat;
4651 }
4652
4653 static int inline decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n, const uint8_t *scantable, int qp, int max_coeff) {
4654     const int mb_xy  = h->s.mb_x + h->s.mb_y*h->s.mb_stride;
4655     const uint16_t *qmul= dequant_coeff[qp];
4656     static const int significant_coeff_flag_offset[5] = { 0, 15, 29, 44, 47 };
4657     static const int coeff_abs_level_m1_offset[5] = {227+ 0, 227+10, 227+20, 227+30, 227+39 };
4658
4659     int index[16];
4660
4661     int i, last;
4662     int coeff_count = 0;
4663
4664     int abslevel1 = 1;
4665     int abslevelgt1 = 0;
4666
4667     /* cat: 0-> DC 16x16  n = 0
4668      *      1-> AC 16x16  n = luma4x4idx
4669      *      2-> Luma4x4   n = luma4x4idx
4670      *      3-> DC Chroma n = iCbCr
4671      *      4-> AC Chroma n = 4 * iCbCr + chroma4x4idx
4672      */
4673
4674     /* read coded block flag */
4675     if( get_cabac( &h->cabac, &h->cabac_state[85 + get_cabac_cbf_ctx( h, cat, n ) ] ) == 0 ) {
4676         if( cat == 1 || cat == 2 )
4677             h->non_zero_count_cache[scan8[n]] = 0;
4678         else if( cat == 4 )
4679             h->non_zero_count_cache[scan8[16+n]] = 0;
4680
4681         return 0;
4682     }
4683
4684     for(last= 0; last < max_coeff - 1; last++) {
4685         if( get_cabac( &h->cabac, &h->cabac_state[105+significant_coeff_flag_offset[cat]+last] )) {
4686             index[coeff_count++] = last;
4687             if( get_cabac( &h->cabac, &h->cabac_state[166+significant_coeff_flag_offset[cat]+last] ) ) {
4688                 last= max_coeff;
4689                 break;
4690             }
4691         }
4692     }
4693     if( last == max_coeff -1 ) {
4694         index[coeff_count++] = last;
4695     }
4696     assert(coeff_count > 0);
4697
4698     if( cat == 0 )
4699         h->cbp_table[mb_xy] |= 0x100;
4700     else if( cat == 1 || cat == 2 )
4701         h->non_zero_count_cache[scan8[n]] = coeff_count;
4702     else if( cat == 3 )
4703         h->cbp_table[mb_xy] |= 0x40 << n;
4704     else {
4705         assert( cat == 4 );
4706         h->non_zero_count_cache[scan8[16+n]] = coeff_count;
4707     }
4708
4709     for( i = coeff_count - 1; i >= 0; i-- ) {
4710         int ctx = (abslevelgt1 != 0 ? 0 : FFMIN( 4, abslevel1 )) + coeff_abs_level_m1_offset[cat];
4711         int j= scantable[index[i]];
4712
4713         if( get_cabac( &h->cabac, &h->cabac_state[ctx] ) == 0 ) {
4714             if( cat == 0 || cat == 3 ) {
4715                 if( get_cabac_bypass( &h->cabac ) ) block[j] = -1;
4716                 else                                block[j] =  1;
4717             }else{
4718                 if( get_cabac_bypass( &h->cabac ) ) block[j] = -qmul[j];
4719                 else                                block[j] =  qmul[j];
4720             }
4721     
4722             abslevel1++;
4723         } else {
4724             int coeff_abs = 2;
4725             ctx = 5 + FFMIN( 4, abslevelgt1 ) + coeff_abs_level_m1_offset[cat];
4726             while( coeff_abs < 15 && get_cabac( &h->cabac, &h->cabac_state[ctx] ) ) {
4727                 coeff_abs++;
4728             }
4729
4730             if( coeff_abs >= 15 ) {
4731                 int j = 0;
4732                 while( get_cabac_bypass( &h->cabac ) ) {
4733                     coeff_abs += 1 << j;
4734                     j++;
4735                 }
4736     
4737                 while( j-- ) {
4738                     if( get_cabac_bypass( &h->cabac ) )
4739                         coeff_abs += 1 << j ;
4740                 }
4741             }
4742
4743             if( cat == 0 || cat == 3 ) {
4744                 if( get_cabac_bypass( &h->cabac ) ) block[j] = -coeff_abs;
4745                 else                                block[j] =  coeff_abs;
4746             }else{
4747                 if( get_cabac_bypass( &h->cabac ) ) block[j] = -coeff_abs * qmul[j];
4748                 else                                block[j] =  coeff_abs * qmul[j];
4749             }
4750     
4751             abslevelgt1++;
4752         }
4753     }
4754     return 0;
4755 }
4756
4757 /**
4758  * decodes a macroblock
4759  * @returns 0 if ok, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed
4760  */
4761 static int decode_mb_cabac(H264Context *h) {
4762     MpegEncContext * const s = &h->s;
4763     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
4764     int mb_type, partition_count, cbp = 0;
4765
4766     s->dsp.clear_blocks(h->mb); //FIXME avoid if allready clear (move after skip handlong?)
4767
4768     if( h->sps.mb_aff ) {
4769         av_log( h->s.avctx, AV_LOG_ERROR, "Fields not supported with CABAC\n" );
4770         return -1;
4771     }
4772
4773     if( h->slice_type != I_TYPE && h->slice_type != SI_TYPE ) {
4774         /* read skip flags */
4775         if( decode_cabac_mb_skip( h ) ) {
4776             decode_mb_skip(h);
4777
4778             h->cbp_table[mb_xy] = 0;
4779             h->chroma_pred_mode_table[mb_xy] = 0;
4780             h->last_qscale_diff = 0;
4781
4782             return 0;
4783
4784         }
4785     }
4786     h->prev_mb_skiped = 0;
4787
4788     if( ( mb_type = decode_cabac_mb_type( h ) ) < 0 ) {
4789         av_log( h->s.avctx, AV_LOG_ERROR, "decode_cabac_mb_type failed\n" );
4790         return -1;
4791     }
4792
4793     if( h->slice_type == B_TYPE ) {
4794         if( mb_type < 23 ){
4795             partition_count= b_mb_type_info[mb_type].partition_count;
4796             mb_type=         b_mb_type_info[mb_type].type;
4797         }else{
4798             mb_type -= 23;
4799             goto decode_intra_mb;
4800         }
4801     } else if( h->slice_type == P_TYPE ) {
4802         if( mb_type < 5) {
4803             partition_count= p_mb_type_info[mb_type].partition_count;
4804             mb_type=         p_mb_type_info[mb_type].type;
4805         } else {
4806             mb_type -= 5;
4807             goto decode_intra_mb;
4808         }
4809     } else {
4810        assert(h->slice_type == I_TYPE);
4811 decode_intra_mb:
4812         partition_count = 0;
4813         cbp= i_mb_type_info[mb_type].cbp;
4814         h->intra16x16_pred_mode= i_mb_type_info[mb_type].pred_mode;
4815         mb_type= i_mb_type_info[mb_type].type;
4816     }
4817 #if 0
4818     if(h->mb_field_decoding_flag)
4819         mb_type |= MB_TYPE_INTERLACED;
4820 #endif
4821
4822     s->current_picture.mb_type[mb_xy]= mb_type;
4823     h->slice_table[ mb_xy ]= h->slice_num;
4824
4825     if(IS_INTRA_PCM(mb_type)) {
4826         /* TODO */
4827         assert(0);
4828         h->cbp_table[mb_xy] = 0xf +4*2; //FIXME ?!
4829         h->cbp_table[mb_xy] |= 0x1C0;
4830         h->chroma_pred_mode_table[mb_xy] = 0;
4831         s->current_picture.qscale_table[mb_xy]= s->qscale;
4832         return -1;
4833     }
4834
4835     fill_caches(h, mb_type);
4836
4837     if( IS_INTRA( mb_type ) ) {
4838         if( IS_INTRA4x4( mb_type ) ) {
4839             int i;
4840             for( i = 0; i < 16; i++ ) {
4841                 int pred = pred_intra_mode( h, i );
4842                 h->intra4x4_pred_mode_cache[ scan8[i] ] = decode_cabac_mb_intra4x4_pred_mode( h, pred );
4843
4844                 //av_log( s->avctx, AV_LOG_ERROR, "i4x4 pred=%d mode=%d\n", pred, h->intra4x4_pred_mode_cache[ scan8[i] ] );
4845             }
4846             write_back_intra_pred_mode(h);
4847             if( check_intra4x4_pred_mode(h) < 0 ) return -1;
4848         } else {
4849             h->intra16x16_pred_mode= check_intra_pred_mode( h, h->intra16x16_pred_mode );
4850             if( h->intra16x16_pred_mode < 0 ) return -1;
4851         }
4852         h->chroma_pred_mode_table[mb_xy] =
4853             h->chroma_pred_mode          = decode_cabac_mb_chroma_pre_mode( h );
4854
4855         h->chroma_pred_mode= check_intra_pred_mode( h, h->chroma_pred_mode );
4856         if( h->chroma_pred_mode < 0 ) return -1;
4857     } else if( partition_count == 4 ) {
4858         int i, j, sub_partition_count[4], list, ref[2][4];
4859
4860         if( h->slice_type == B_TYPE ) {
4861             for( i = 0; i < 4; i++ ) {
4862                 h->sub_mb_type[i] = decode_cabac_b_mb_sub_type( h );
4863                 sub_partition_count[i]= b_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
4864                 h->sub_mb_type[i]=      b_sub_mb_type_info[ h->sub_mb_type[i] ].type;
4865             }
4866             if(   IS_DIRECT(h->sub_mb_type[0]) || IS_DIRECT(h->sub_mb_type[1])
4867                || IS_DIRECT(h->sub_mb_type[2]) || IS_DIRECT(h->sub_mb_type[3])) {
4868                 pred_direct_motion(h, &mb_type);
4869                 if( h->ref_count[0] > 1 || h->ref_count[1] > 1 ) {
4870                     for( i = 0; i < 4; i++ )
4871                         if( IS_DIRECT(h->sub_mb_type[i]) )
4872                             fill_rectangle( &h->direct_cache[scan8[4*i]], 2, 2, 8, 1, 1 );
4873                 }
4874             }
4875         } else {
4876             for( i = 0; i < 4; i++ ) {
4877                 h->sub_mb_type[i] = decode_cabac_p_mb_sub_type( h );
4878                 sub_partition_count[i]= p_sub_mb_type_info[ h->sub_mb_type[i] ].partition_count;
4879                 h->sub_mb_type[i]=      p_sub_mb_type_info[ h->sub_mb_type[i] ].type;
4880             }
4881         }
4882
4883         for( list = 0; list < 2; list++ ) {
4884             if( h->ref_count[list] > 0 ) {
4885                 for( i = 0; i < 4; i++ ) {
4886                     if(IS_DIRECT(h->sub_mb_type[i])) continue;
4887                     if(IS_DIR(h->sub_mb_type[i], 0, list)){
4888                         if( h->ref_count[list] > 1 )
4889                             ref[list][i] = decode_cabac_mb_ref( h, list, 4*i );
4890                         else
4891                             ref[list][i] = 0;
4892                     } else {
4893                         ref[list][i] = -1;
4894                     }
4895                                                        h->ref_cache[list][ scan8[4*i]+1 ]=
4896                     h->ref_cache[list][ scan8[4*i]+8 ]=h->ref_cache[list][ scan8[4*i]+9 ]= ref[list][i];
4897                 }
4898             }
4899         }
4900
4901         for(list=0; list<2; list++){
4902             for(i=0; i<4; i++){
4903                 if(IS_DIRECT(h->sub_mb_type[i])){
4904                     fill_rectangle(h->mvd_cache[list][scan8[4*i]], 2, 2, 8, 0, 4);
4905                     continue;
4906                 }
4907                 h->ref_cache[list][ scan8[4*i]   ]=h->ref_cache[list][ scan8[4*i]+1 ];
4908
4909                 if(IS_DIR(h->sub_mb_type[i], 0, list) && !IS_DIRECT(h->sub_mb_type[i])){
4910                     const int sub_mb_type= h->sub_mb_type[i];
4911                     const int block_width= (sub_mb_type & (MB_TYPE_16x16|MB_TYPE_16x8)) ? 2 : 1;
4912                     for(j=0; j<sub_partition_count[i]; j++){
4913                         int mpx, mpy;
4914                         int mx, my;
4915                         const int index= 4*i + block_width*j;
4916                         int16_t (* mv_cache)[2]= &h->mv_cache[list][ scan8[index] ];
4917                         int16_t (* mvd_cache)[2]= &h->mvd_cache[list][ scan8[index] ];
4918                         pred_motion(h, index, block_width, list, h->ref_cache[list][ scan8[index] ], &mpx, &mpy);
4919
4920                         mx = mpx + decode_cabac_mb_mvd( h, list, index, 0 );
4921                         my = mpy + decode_cabac_mb_mvd( h, list, index, 1 );
4922                         tprintf("final mv:%d %d\n", mx, my);
4923
4924                         if(IS_SUB_8X8(sub_mb_type)){
4925                             mv_cache[ 0 ][0]= mv_cache[ 1 ][0]=
4926                             mv_cache[ 8 ][0]= mv_cache[ 9 ][0]= mx;
4927                             mv_cache[ 0 ][1]= mv_cache[ 1 ][1]=
4928                             mv_cache[ 8 ][1]= mv_cache[ 9 ][1]= my;
4929
4930                             mvd_cache[ 0 ][0]= mvd_cache[ 1 ][0]=
4931                             mvd_cache[ 8 ][0]= mvd_cache[ 9 ][0]= mx - mpx;
4932                             mvd_cache[ 0 ][1]= mvd_cache[ 1 ][1]=
4933                             mvd_cache[ 8 ][1]= mvd_cache[ 9 ][1]= my - mpy;
4934                         }else if(IS_SUB_8X4(sub_mb_type)){
4935                             mv_cache[ 0 ][0]= mv_cache[ 1 ][0]= mx;
4936                             mv_cache[ 0 ][1]= mv_cache[ 1 ][1]= my;
4937
4938                             mvd_cache[ 0 ][0]= mvd_cache[ 1 ][0]= mx- mpx;
4939                             mvd_cache[ 0 ][1]= mvd_cache[ 1 ][1]= my - mpy;
4940                         }else if(IS_SUB_4X8(sub_mb_type)){
4941                             mv_cache[ 0 ][0]= mv_cache[ 8 ][0]= mx;
4942                             mv_cache[ 0 ][1]= mv_cache[ 8 ][1]= my;
4943
4944                             mvd_cache[ 0 ][0]= mvd_cache[ 8 ][0]= mx - mpx;
4945                             mvd_cache[ 0 ][1]= mvd_cache[ 8 ][1]= my - mpy;
4946                         }else{
4947                             assert(IS_SUB_4X4(sub_mb_type));
4948                             mv_cache[ 0 ][0]= mx;
4949                             mv_cache[ 0 ][1]= my;
4950
4951                             mvd_cache[ 0 ][0]= mx - mpx;
4952                             mvd_cache[ 0 ][1]= my - mpy;
4953                         }
4954                     }
4955                 }else{
4956                     uint32_t *p= (uint32_t *)&h->mv_cache[list][ scan8[4*i] ][0];
4957                     uint32_t *pd= (uint32_t *)&h->mvd_cache[list][ scan8[4*i] ][0];
4958                     p[0] = p[1] = p[8] = p[9] = 0;
4959                     pd[0]= pd[1]= pd[8]= pd[9]= 0;
4960                 }
4961             }
4962         }
4963     } else if( IS_DIRECT(mb_type) ) {
4964         pred_direct_motion(h, &mb_type);
4965         s->current_picture.mb_type[mb_xy]= mb_type;
4966         fill_rectangle(h->mvd_cache[0][scan8[0]], 4, 4, 8, 0, 4);
4967         fill_rectangle(h->mvd_cache[1][scan8[0]], 4, 4, 8, 0, 4);
4968     } else {
4969         int list, mx, my, i, mpx, mpy;
4970         if(IS_16X16(mb_type)){
4971             for(list=0; list<2; list++){
4972                 if(IS_DIR(mb_type, 0, list)){
4973                     if(h->ref_count[list] > 0 ){
4974                         const int ref = h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 0 ) : 0;
4975                         fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, ref, 1);
4976                     }
4977                 }
4978             }
4979             for(list=0; list<2; list++){
4980                 if(IS_DIR(mb_type, 0, list)){
4981                     pred_motion(h, 0, 4, list, h->ref_cache[list][ scan8[0] ], &mpx, &mpy);
4982
4983                     mx = mpx + decode_cabac_mb_mvd( h, list, 0, 0 );
4984                     my = mpy + decode_cabac_mb_mvd( h, list, 0, 1 );
4985                     tprintf("final mv:%d %d\n", mx, my);
4986
4987                     fill_rectangle(h->mvd_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx-mpx,my-mpy), 4);
4988                     fill_rectangle(h->mv_cache[list][ scan8[0] ], 4, 4, 8, pack16to32(mx,my), 4);
4989                 }
4990             }
4991         }
4992         else if(IS_16X8(mb_type)){
4993             for(list=0; list<2; list++){
4994                 if(h->ref_count[list]>0){
4995                     for(i=0; i<2; i++){
4996                         if(IS_DIR(mb_type, i, list)){
4997                             const int ref= h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 8*i ) : 0;
4998                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, ref, 1);
4999                         }else
5000                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 16*i ], 4, 2, 8, (LIST_NOT_USED&0xFF), 1);
5001                     }
5002                 }
5003             }
5004             for(list=0; list<2; list++){
5005                 for(i=0; i<2; i++){
5006                     if(IS_DIR(mb_type, i, list)){
5007                         pred_16x8_motion(h, 8*i, list, h->ref_cache[list][scan8[0] + 16*i], &mpx, &mpy);
5008                         mx = mpx + decode_cabac_mb_mvd( h, list, 8*i, 0 );
5009                         my = mpy + decode_cabac_mb_mvd( h, list, 8*i, 1 );
5010                         tprintf("final mv:%d %d\n", mx, my);
5011
5012                         fill_rectangle(h->mvd_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx-mpx,my-mpy), 4);
5013                         fill_rectangle(h->mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, pack16to32(mx,my), 4);
5014                     }else{ // needed only for mixed refs
5015                         fill_rectangle(h->mvd_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4);
5016                         fill_rectangle(h-> mv_cache[list][ scan8[0] + 16*i ], 4, 2, 8, 0, 4);
5017                     }
5018                 }
5019             }
5020         }else{
5021             assert(IS_8X16(mb_type));
5022             for(list=0; list<2; list++){
5023                 if(h->ref_count[list]>0){
5024                     for(i=0; i<2; i++){
5025                         if(IS_DIR(mb_type, i, list)){ //FIXME optimize
5026                             const int ref= h->ref_count[list] > 1 ? decode_cabac_mb_ref( h, list, 4*i ) : 0;
5027                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, ref, 1);
5028                         }else
5029                             fill_rectangle(&h->ref_cache[list][ scan8[0] + 2*i ], 2, 4, 8, (LIST_NOT_USED&0xFF), 1);
5030                     }
5031                 }
5032             }
5033             for(list=0; list<2; list++){
5034                 for(i=0; i<2; i++){
5035                     if(IS_DIR(mb_type, i, list)){
5036                         pred_8x16_motion(h, i*4, list, h->ref_cache[list][ scan8[0] + 2*i ], &mpx, &mpy);
5037                         mx = mpx + decode_cabac_mb_mvd( h, list, 4*i, 0 );
5038                         my = mpy + decode_cabac_mb_mvd( h, list, 4*i, 1 );
5039
5040                         tprintf("final mv:%d %d\n", mx, my);
5041                         fill_rectangle(h->mvd_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx-mpx,my-mpy), 4);
5042                         fill_rectangle(h->mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, pack16to32(mx,my), 4);
5043                     }else{ // needed only for mixed refs
5044                         fill_rectangle(h->mvd_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4);
5045                         fill_rectangle(h-> mv_cache[list][ scan8[0] + 2*i ], 2, 4, 8, 0, 4);
5046                     }
5047                 }
5048             }
5049         }
5050     }
5051
5052    if( IS_INTER( mb_type ) ) {
5053         h->chroma_pred_mode_table[mb_xy] = 0;
5054         write_back_motion( h, mb_type );
5055    }
5056
5057     if( !IS_INTRA16x16( mb_type ) ) {
5058         cbp  = decode_cabac_mb_cbp_luma( h );
5059         cbp |= decode_cabac_mb_cbp_chroma( h ) << 4;
5060     }
5061
5062     h->cbp_table[mb_xy] = cbp;
5063
5064     if( cbp || IS_INTRA16x16( mb_type ) ) {
5065         const uint8_t *scan, *dc_scan;
5066         int dqp;
5067
5068         if(IS_INTERLACED(mb_type)){
5069             scan= field_scan;
5070             dc_scan= luma_dc_field_scan;
5071         }else{
5072             scan= zigzag_scan;
5073             dc_scan= luma_dc_zigzag_scan;
5074         }
5075
5076         h->last_qscale_diff = dqp = decode_cabac_mb_dqp( h );
5077         s->qscale += dqp;
5078         if(((unsigned)s->qscale) > 51){
5079             if(s->qscale<0) s->qscale+= 52;
5080             else            s->qscale-= 52;
5081         }
5082         h->chroma_qp = get_chroma_qp(h, s->qscale);
5083
5084         if( IS_INTRA16x16( mb_type ) ) {
5085             int i;
5086             //av_log( s->avctx, AV_LOG_ERROR, "INTRA16x16 DC\n" );
5087             if( decode_cabac_residual( h, h->mb, 0, 0, dc_scan, s->qscale, 16) < 0)
5088                 return -1;
5089             if( cbp&15 ) {
5090                 for( i = 0; i < 16; i++ ) {
5091                     //av_log( s->avctx, AV_LOG_ERROR, "INTRA16x16 AC:%d\n", i );
5092                     if( decode_cabac_residual(h, h->mb + 16*i, 1, i, scan + 1, s->qscale, 15) < 0 )
5093                         return -1;
5094                 }
5095             } else {
5096                 fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1);
5097             }
5098         } else {
5099             int i8x8, i4x4;
5100             for( i8x8 = 0; i8x8 < 4; i8x8++ ) {
5101                 if( cbp & (1<<i8x8) ) {
5102                     for( i4x4 = 0; i4x4 < 4; i4x4++ ) {
5103                         const int index = 4*i8x8 + i4x4;
5104                         //av_log( s->avctx, AV_LOG_ERROR, "Luma4x4: %d\n", index );
5105                         if( decode_cabac_residual(h, h->mb + 16*index, 2, index, scan, s->qscale, 16) < 0 )
5106                             return -1;
5107                     }
5108                 } else {
5109                     uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ];
5110                     nnz[0] = nnz[1] = nnz[8] = nnz[9] = 0;
5111                 }
5112             }
5113         }
5114
5115         if( cbp&0x30 ){
5116             int c;
5117             for( c = 0; c < 2; c++ ) {
5118                 //av_log( s->avctx, AV_LOG_ERROR, "INTRA C%d-DC\n",c );
5119                 if( decode_cabac_residual(h, h->mb + 256 + 16*4*c, 3, c, chroma_dc_scan, h->chroma_qp, 4) < 0)
5120                     return -1;
5121             }
5122         }
5123
5124         if( cbp&0x20 ) {
5125             int c, i;
5126             for( c = 0; c < 2; c++ ) {
5127                 for( i = 0; i < 4; i++ ) {
5128                     const int index = 16 + 4 * c + i;
5129                     //av_log( s->avctx, AV_LOG_ERROR, "INTRA C%d-AC %d\n",c, index - 16 );
5130                     if( decode_cabac_residual(h, h->mb + 16*index, 4, index - 16, scan + 1, h->chroma_qp, 15) < 0)
5131                         return -1;
5132                 }
5133             }
5134         } else {
5135             uint8_t * const nnz= &h->non_zero_count_cache[0];
5136             nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
5137             nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
5138         }
5139     } else {
5140         uint8_t * const nnz= &h->non_zero_count_cache[0];
5141         fill_rectangle(&nnz[scan8[0]], 4, 4, 8, 0, 1);
5142         nnz[ scan8[16]+0 ] = nnz[ scan8[16]+1 ] =nnz[ scan8[16]+8 ] =nnz[ scan8[16]+9 ] =
5143         nnz[ scan8[20]+0 ] = nnz[ scan8[20]+1 ] =nnz[ scan8[20]+8 ] =nnz[ scan8[20]+9 ] = 0;
5144     }
5145
5146     s->current_picture.qscale_table[mb_xy]= s->qscale;
5147     write_back_non_zero_count(h);
5148
5149     return 0;
5150 }
5151
5152
5153 static void filter_mb_edgev( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) {
5154     int i, d;
5155     const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 );
5156     const int alpha = alpha_table[index_a];
5157     const int beta  = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )];
5158
5159     for( i = 0; i < 4; i++ ) {
5160         if( bS[i] == 0 ) {
5161             pix += 4 * stride;
5162             continue;
5163         }
5164
5165         if( bS[i] < 4 ) {
5166             const int tc0 = tc0_table[index_a][bS[i] - 1];
5167             /* 4px edge length */
5168             for( d = 0; d < 4; d++ ) {
5169                 const int p0 = pix[-1];
5170                 const int p1 = pix[-2];
5171                 const int p2 = pix[-3];
5172                 const int q0 = pix[0];
5173                 const int q1 = pix[1];
5174                 const int q2 = pix[2];
5175
5176                 if( ABS( p0 - q0 ) < alpha &&
5177                     ABS( p1 - p0 ) < beta &&
5178                     ABS( q1 - q0 ) < beta ) {
5179                     int tc = tc0;
5180                     int i_delta;
5181
5182                     if( ABS( p2 - p0 ) < beta ) {
5183                         pix[-2] = p1 + clip( ( p2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( p1 << 1 ) ) >> 1, -tc0, tc0 );
5184                         tc++;
5185                     }
5186                     if( ABS( q2 - q0 ) < beta ) {
5187                         pix[1] = q1 + clip( ( q2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( q1 << 1 ) ) >> 1, -tc0, tc0 );
5188                         tc++;
5189                     }
5190
5191                     i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
5192                     pix[-1] = clip_uint8( p0 + i_delta );    /* p0' */
5193                     pix[0]  = clip_uint8( q0 - i_delta );    /* q0' */
5194                 }
5195                 pix += stride;
5196             }
5197         }else{
5198             /* 4px edge length */
5199             for( d = 0; d < 4; d++ ) {
5200                 const int p0 = pix[-1];
5201                 const int p1 = pix[-2];
5202                 const int p2 = pix[-3];
5203
5204                 const int q0 = pix[0];
5205                 const int q1 = pix[1];
5206                 const int q2 = pix[2];
5207
5208                 if( ABS( p0 - q0 ) < alpha &&
5209                     ABS( p1 - p0 ) < beta &&
5210                     ABS( q1 - q0 ) < beta ) {
5211
5212                     if(ABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){
5213                         if( ABS( p2 - p0 ) < beta)
5214                         {
5215                             const int p3 = pix[-4];
5216                             /* p0', p1', p2' */
5217                             pix[-1] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;
5218                             pix[-2] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;
5219                             pix[-3] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;
5220                         } else {
5221                             /* p0' */
5222                             pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
5223                         }
5224                         if( ABS( q2 - q0 ) < beta)
5225                         {
5226                             const int q3 = pix[3];
5227                             /* q0', q1', q2' */
5228                             pix[0] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;
5229                             pix[1] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;
5230                             pix[2] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;
5231                         } else {
5232                             /* q0' */
5233                             pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
5234                         }
5235                     }else{
5236                         /* p0', q0' */
5237                         pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
5238                         pix[ 0] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
5239                     }
5240                 }
5241                 pix += stride;
5242             }
5243         }
5244     }
5245 }
5246 static void filter_mb_edgecv( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) {
5247     int i, d;
5248     const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 );
5249     const int alpha = alpha_table[index_a];
5250     const int beta  = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )];
5251
5252     for( i = 0; i < 4; i++ ) {
5253         if( bS[i] == 0 ) {
5254             pix += 2 * stride;
5255             continue;
5256         }
5257
5258         if( bS[i] < 4 ) {
5259             const int tc = tc0_table[index_a][bS[i] - 1] + 1;
5260             /* 2px edge length (because we use same bS than the one for luma) */
5261             for( d = 0; d < 2; d++ ){
5262                 const int p0 = pix[-1];
5263                 const int p1 = pix[-2];
5264                 const int q0 = pix[0];
5265                 const int q1 = pix[1];
5266
5267                 if( ABS( p0 - q0 ) < alpha &&
5268                     ABS( p1 - p0 ) < beta &&
5269                     ABS( q1 - q0 ) < beta ) {
5270                     const int i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
5271
5272                     pix[-1] = clip_uint8( p0 + i_delta );    /* p0' */
5273                     pix[0]  = clip_uint8( q0 - i_delta );    /* q0' */
5274                 }
5275                 pix += stride;
5276             }
5277         }else{
5278             /* 2px edge length (because we use same bS than the one for luma) */
5279             for( d = 0; d < 2; d++ ){
5280                 const int p0 = pix[-1];
5281                 const int p1 = pix[-2];
5282                 const int q0 = pix[0];
5283                 const int q1 = pix[1];
5284
5285                 if( ABS( p0 - q0 ) < alpha &&
5286                     ABS( p1 - p0 ) < beta &&
5287                     ABS( q1 - q0 ) < beta ) {
5288
5289                     pix[-1] = ( 2*p1 + p0 + q1 + 2 ) >> 2;   /* p0' */
5290                     pix[0]  = ( 2*q1 + q0 + p1 + 2 ) >> 2;   /* q0' */
5291                 }
5292                 pix += stride;
5293             }
5294         }
5295     }
5296 }
5297
5298 static void filter_mb_edgeh( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) {
5299     int i, d;
5300     const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 );
5301     const int alpha = alpha_table[index_a];
5302     const int beta  = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )];
5303     const int pix_next  = stride;
5304
5305     for( i = 0; i < 4; i++ ) {
5306         if( bS[i] == 0 ) {
5307             pix += 4;
5308             continue;
5309         }
5310
5311         if( bS[i] < 4 ) {
5312             const int tc0 = tc0_table[index_a][bS[i] - 1];
5313             /* 4px edge length */
5314             for( d = 0; d < 4; d++ ) {
5315                 const int p0 = pix[-1*pix_next];
5316                 const int p1 = pix[-2*pix_next];
5317                 const int p2 = pix[-3*pix_next];
5318                 const int q0 = pix[0];
5319                 const int q1 = pix[1*pix_next];
5320                 const int q2 = pix[2*pix_next];
5321
5322                 if( ABS( p0 - q0 ) < alpha &&
5323                     ABS( p1 - p0 ) < beta &&
5324                     ABS( q1 - q0 ) < beta ) {
5325
5326                     int tc = tc0;
5327                     int i_delta;
5328
5329                     if( ABS( p2 - p0 ) < beta ) {
5330                         pix[-2*pix_next] = p1 + clip( ( p2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( p1 << 1 ) ) >> 1, -tc0, tc0 );
5331                         tc++;
5332                     }
5333                     if( ABS( q2 - q0 ) < beta ) {
5334                         pix[pix_next] = q1 + clip( ( q2 + ( ( p0 + q0 + 1 ) >> 1 ) - ( q1 << 1 ) ) >> 1, -tc0, tc0 );
5335                         tc++;
5336                     }
5337
5338                     i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
5339                     pix[-pix_next] = clip_uint8( p0 + i_delta );    /* p0' */
5340                     pix[0]         = clip_uint8( q0 - i_delta );    /* q0' */
5341                 }
5342                 pix++;
5343             }
5344         }else{
5345             /* 4px edge length */
5346             for( d = 0; d < 4; d++ ) {
5347                 const int p0 = pix[-1*pix_next];
5348                 const int p1 = pix[-2*pix_next];
5349                 const int p2 = pix[-3*pix_next];
5350                 const int q0 = pix[0];
5351                 const int q1 = pix[1*pix_next];
5352                 const int q2 = pix[2*pix_next];
5353
5354                 if( ABS( p0 - q0 ) < alpha &&
5355                     ABS( p1 - p0 ) < beta &&
5356                     ABS( q1 - q0 ) < beta ) {
5357
5358                     const int p3 = pix[-4*pix_next];
5359                     const int q3 = pix[ 3*pix_next];
5360
5361                     if(ABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){
5362                         if( ABS( p2 - p0 ) < beta) {
5363                             /* p0', p1', p2' */
5364                             pix[-1*pix_next] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;
5365                             pix[-2*pix_next] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;
5366                             pix[-3*pix_next] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;
5367                         } else {
5368                             /* p0' */
5369                             pix[-1*pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
5370                         }
5371                         if( ABS( q2 - q0 ) < beta) {
5372                             /* q0', q1', q2' */
5373                             pix[0*pix_next] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;
5374                             pix[1*pix_next] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;
5375                             pix[2*pix_next] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;
5376                         } else {
5377                             /* q0' */
5378                             pix[0*pix_next] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
5379                         }
5380                     }else{
5381                         /* p0', q0' */
5382                         pix[-1*pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
5383                         pix[ 0*pix_next] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
5384                     }
5385                 }
5386                 pix++;
5387             }
5388         }
5389     }
5390 }
5391
5392 static void filter_mb_edgech( H264Context *h, uint8_t *pix, int stride, int bS[4], int qp ) {
5393     int i, d;
5394     const int index_a = clip( qp + h->slice_alpha_c0_offset, 0, 51 );
5395     const int alpha = alpha_table[index_a];
5396     const int beta  = beta_table[clip( qp + h->slice_beta_offset, 0, 51 )];
5397     const int pix_next  = stride;
5398
5399     for( i = 0; i < 4; i++ )
5400     {
5401         if( bS[i] == 0 ) {
5402             pix += 2;
5403             continue;
5404         }
5405
5406         if( bS[i] < 4 ) {
5407             int tc = tc0_table[index_a][bS[i] - 1] + 1;
5408             /* 2px edge length (see deblocking_filter_edgecv) */
5409             for( d = 0; d < 2; d++ ) {
5410                 const int p0 = pix[-1*pix_next];
5411                 const int p1 = pix[-2*pix_next];
5412                 const int q0 = pix[0];
5413                 const int q1 = pix[1*pix_next];
5414
5415                 if( ABS( p0 - q0 ) < alpha &&
5416                     ABS( p1 - p0 ) < beta &&
5417                     ABS( q1 - q0 ) < beta ) {
5418
5419                     int i_delta = clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
5420
5421                     pix[-pix_next] = clip_uint8( p0 + i_delta );    /* p0' */
5422                     pix[0]         = clip_uint8( q0 - i_delta );    /* q0' */
5423                 }
5424                 pix++;
5425             }
5426         }else{
5427             /* 2px edge length (see deblocking_filter_edgecv) */
5428             for( d = 0; d < 2; d++ ) {
5429                 const int p0 = pix[-1*pix_next];
5430                 const int p1 = pix[-2*pix_next];
5431                 const int q0 = pix[0];
5432                 const int q1 = pix[1*pix_next];
5433
5434                 if( ABS( p0 - q0 ) < alpha &&
5435                     ABS( p1 - p0 ) < beta &&
5436                     ABS( q1 - q0 ) < beta ) {
5437
5438                     pix[-pix_next] = ( 2*p1 + p0 + q1 + 2 ) >> 2;   /* p0' */
5439                     pix[0]         = ( 2*q1 + q0 + p1 + 2 ) >> 2;   /* q0' */
5440                 }
5441                 pix++;
5442             }
5443         }
5444     }
5445 }
5446
5447 static void filter_mb( H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr) {
5448     MpegEncContext * const s = &h->s;
5449     const int mb_xy= mb_x + mb_y*s->mb_stride;
5450     int linesize, uvlinesize;
5451     int dir;
5452
5453     /* FIXME Implement deblocking filter for field MB */
5454     if( h->sps.mb_aff ) {
5455         return;
5456     }
5457     linesize = s->linesize;
5458     uvlinesize = s->uvlinesize;
5459
5460     /* dir : 0 -> vertical edge, 1 -> horizontal edge */
5461     for( dir = 0; dir < 2; dir++ )
5462     {
5463         int start = 0;
5464         int edge;
5465
5466         /* test picture boundary */
5467         if( ( dir == 0 && mb_x == 0 ) || ( dir == 1 && mb_y == 0 ) ) {
5468             start = 1;
5469         }
5470         if( 0 == start && 2 == h->deblocking_filter) {
5471             const int mbn_xy = dir == 0 ? mb_xy -1 : mb_xy - s->mb_stride;
5472             if (h->slice_table[mbn_xy] != h->slice_table[mb_xy]) {
5473                 start = 1;
5474             }
5475         }
5476
5477         /* Calculate bS */
5478         for( edge = start; edge < 4; edge++ ) {
5479             /* mbn_xy: neighbour macroblock (how that works for field ?) */
5480             int mbn_xy = edge > 0 ? mb_xy : ( dir == 0 ? mb_xy -1 : mb_xy - s->mb_stride );
5481             int bS[4];
5482             int qp;
5483
5484             if( IS_INTRA( s->current_picture.mb_type[mb_xy] ) ||
5485                 IS_INTRA( s->current_picture.mb_type[mbn_xy] ) ) {
5486                 bS[0] = bS[1] = bS[2] = bS[3] = ( edge == 0 ? 4 : 3 );
5487             } else {
5488                 int i;
5489                 const int slice_boundary = (h->slice_table[mbn_xy] != h->slice_table[mb_xy]);
5490                 for( i = 0; i < 4; i++ ) {
5491                     int x = dir == 0 ? edge : i;
5492                     int y = dir == 0 ? i    : edge;
5493                     int b_idx= 8 + 4 + x + 8*y;
5494                     int bn_idx= b_idx - (dir ? 8:1);
5495                     uint8_t left_non_zero_count;
5496                     if (slice_boundary) {
5497                         // must not use non_zero_count_cache, it is not valid
5498                         // across slice boundaries
5499                         if (0 == dir) {
5500                             left_non_zero_count = h->non_zero_count[mbn_xy][6-i];
5501                         } else {
5502                             left_non_zero_count = h->non_zero_count[mbn_xy][i];
5503                         }
5504                     } else {
5505                         left_non_zero_count = h->non_zero_count_cache[bn_idx];
5506                     }
5507
5508                     if( h->non_zero_count_cache[b_idx] != 0 ||
5509                         left_non_zero_count != 0 ) {
5510                         bS[i] = 2;
5511                     }
5512                     else if( h->slice_type == P_TYPE ) {
5513                         int16_t left_mv[2];
5514                         int8_t  left_ref;
5515                         if (slice_boundary) {
5516                             // must not use ref_cache and mv_cache, they are not 
5517                             // valid across slice boundaries
5518                             if (dir == 0) {
5519                                 left_ref = s->current_picture.ref_index[0][h->mb2b8_xy[mbn_xy] + (i>>1) * h->b8_stride + 1];
5520                                 *(uint32_t*)left_mv = *(uint32_t*)s->current_picture.motion_val[0][h->mb2b_xy[mbn_xy]+i*h->b_stride+3];
5521                             } else {
5522                                 left_ref = s->current_picture.ref_index[0][h->mb2b8_xy[mbn_xy] + (i>>1) + h->b8_stride];
5523                                 *(uint32_t*)left_mv = *(uint32_t*)s->current_picture.motion_val[0][h->mb2b_xy[mbn_xy]+3*h->b_stride+i];
5524                             }
5525                         } else {
5526                             left_ref = h->ref_cache[0][bn_idx];
5527                             *(uint32_t*)left_mv = *(uint32_t*)h->mv_cache[0][bn_idx];
5528                         }
5529                         if( h->ref_cache[0][b_idx] != left_ref ||
5530                             ABS( h->mv_cache[0][b_idx][0] - left_mv[0] ) >= 4 ||
5531                             ABS( h->mv_cache[0][b_idx][1] - left_mv[1] ) >= 4 )
5532                             bS[i] = 1;
5533                         else
5534                             bS[i] = 0;
5535                     }
5536                     else {
5537                         /* FIXME Add support for B frame */
5538                         return;
5539                     }
5540                 }
5541
5542                 if(bS[0]+bS[1]+bS[2]+bS[3] == 0)
5543                     continue;
5544             }
5545
5546             /* Filter edge */
5547             qp = ( s->qscale + s->current_picture.qscale_table[mbn_xy] + 1 ) >> 1;
5548             if( dir == 0 ) {
5549                 filter_mb_edgev( h, &img_y[4*edge], linesize, bS, qp );
5550                 if( (edge&1) == 0 ) {
5551                     int chroma_qp = ( h->chroma_qp +
5552                                       get_chroma_qp( h, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1;
5553                     filter_mb_edgecv( h, &img_cb[2*edge], uvlinesize, bS, chroma_qp );
5554                     filter_mb_edgecv( h, &img_cr[2*edge], uvlinesize, bS, chroma_qp );
5555                 }
5556             } else {
5557                 filter_mb_edgeh( h, &img_y[4*edge*linesize], linesize, bS, qp );
5558                 if( (edge&1) == 0 ) {
5559                     int chroma_qp = ( h->chroma_qp +
5560                                       get_chroma_qp( h, s->current_picture.qscale_table[mbn_xy] ) + 1 ) >> 1;
5561                     filter_mb_edgech( h, &img_cb[2*edge*uvlinesize], uvlinesize, bS, chroma_qp );
5562                     filter_mb_edgech( h, &img_cr[2*edge*uvlinesize], uvlinesize, bS, chroma_qp );
5563                 }
5564             }
5565         }
5566     }
5567 }
5568
5569 static int decode_slice(H264Context *h){
5570     MpegEncContext * const s = &h->s;
5571     const int part_mask= s->partitioned_frame ? (AC_END|AC_ERROR) : 0x7F;
5572
5573     s->mb_skip_run= -1;
5574
5575     if( h->pps.cabac ) {
5576         int i;
5577
5578         /* realign */
5579         align_get_bits( &s->gb );
5580
5581         /* init cabac */
5582         ff_init_cabac_states( &h->cabac, ff_h264_lps_range, ff_h264_mps_state, ff_h264_lps_state, 64 );
5583         ff_init_cabac_decoder( &h->cabac,
5584                                s->gb.buffer + get_bits_count(&s->gb)/8,
5585                                ( s->gb.size_in_bits - get_bits_count(&s->gb) + 7)/8);
5586         /* calculate pre-state */
5587         for( i= 0; i < 399; i++ ) {
5588             int pre;
5589             if( h->slice_type == I_TYPE )
5590                 pre = clip( ((cabac_context_init_I[i][0] * s->qscale) >>4 ) + cabac_context_init_I[i][1], 1, 126 );
5591             else
5592                 pre = clip( ((cabac_context_init_PB[h->cabac_init_idc][i][0] * s->qscale) >>4 ) + cabac_context_init_PB[h->cabac_init_idc][i][1], 1, 126 );
5593
5594             if( pre <= 63 )
5595                 h->cabac_state[i] = 2 * ( 63 - pre ) + 0;
5596             else
5597                 h->cabac_state[i] = 2 * ( pre - 64 ) + 1;
5598         }
5599
5600         for(;;){
5601             int ret = decode_mb_cabac(h);
5602             int eos = get_cabac_terminate( &h->cabac ); /* End of Slice flag */
5603
5604             if(ret>=0) hl_decode_mb(h);
5605
5606             /* XXX: useless as decode_mb_cabac it doesn't support that ... */
5607             if( ret >= 0 && h->sps.mb_aff ) { //FIXME optimal? or let mb_decode decode 16x32 ?
5608                 s->mb_y++;
5609
5610                 if(ret>=0) ret = decode_mb_cabac(h);
5611                 eos = get_cabac_terminate( &h->cabac );
5612
5613                 hl_decode_mb(h);
5614                 s->mb_y--;
5615             }
5616
5617             if( ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 1) {
5618                 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
5619                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
5620                 return -1;
5621             }
5622
5623             if( ++s->mb_x >= s->mb_width ) {
5624                 s->mb_x = 0;
5625                 ff_draw_horiz_band(s, 16*s->mb_y, 16);
5626                 ++s->mb_y;
5627             }
5628
5629             if( eos || s->mb_y >= s->mb_height ) {
5630                 tprintf("slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
5631                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5632                 return 0;
5633             }
5634 #if 0
5635             /* TODO test over-reading in cabac code */
5636             else if( read too much in h->cabac ) {
5637                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
5638                 return -1;
5639             }
5640 #endif
5641         }
5642
5643     } else {
5644         for(;;){
5645             int ret = decode_mb_cavlc(h);
5646
5647             if(ret>=0) hl_decode_mb(h);
5648
5649             if(ret>=0 && h->sps.mb_aff){ //FIXME optimal? or let mb_decode decode 16x32 ?
5650                 s->mb_y++;
5651                 ret = decode_mb_cavlc(h);
5652
5653                 if(ret>=0) hl_decode_mb(h);
5654                 s->mb_y--;
5655             }
5656
5657             if(ret<0){
5658                 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
5659                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
5660
5661                 return -1;
5662             }
5663
5664             if(++s->mb_x >= s->mb_width){
5665                 s->mb_x=0;
5666                 ff_draw_horiz_band(s, 16*s->mb_y, 16);
5667                 if(++s->mb_y >= s->mb_height){
5668                     tprintf("slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
5669
5670                     if(get_bits_count(&s->gb) == s->gb.size_in_bits ) {
5671                         ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5672
5673                         return 0;
5674                     }else{
5675                         ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5676
5677                         return -1;
5678                     }
5679                 }
5680             }
5681
5682             if(get_bits_count(&s->gb) >= s->gb.size_in_bits && s->mb_skip_run<=0){
5683                 tprintf("slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
5684                 if(get_bits_count(&s->gb) == s->gb.size_in_bits ){
5685                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5686
5687                     return 0;
5688                 }else{
5689                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
5690
5691                     return -1;
5692                 }
5693             }
5694         }
5695     }
5696
5697 #if 0
5698     for(;s->mb_y < s->mb_height; s->mb_y++){
5699         for(;s->mb_x < s->mb_width; s->mb_x++){
5700             int ret= decode_mb(h);
5701             
5702             hl_decode_mb(h);
5703
5704             if(ret<0){
5705                 fprintf(stderr, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
5706                 ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
5707
5708                 return -1;
5709             }
5710         
5711             if(++s->mb_x >= s->mb_width){
5712                 s->mb_x=0;
5713                 if(++s->mb_y >= s->mb_height){
5714                     if(get_bits_count(s->gb) == s->gb.size_in_bits){
5715                         ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5716
5717                         return 0;
5718                     }else{
5719                         ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5720
5721                         return -1;
5722                     }
5723                 }
5724             }
5725         
5726             if(get_bits_count(s->?gb) >= s->gb?.size_in_bits){
5727                 if(get_bits_count(s->gb) == s->gb.size_in_bits){
5728                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, (AC_END|DC_END|MV_END)&part_mask);
5729
5730                     return 0;
5731                 }else{
5732                     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, (AC_ERROR|DC_ERROR|MV_ERROR)&part_mask);
5733
5734                     return -1;
5735                 }
5736             }
5737         }
5738         s->mb_x=0;
5739         ff_draw_horiz_band(s, 16*s->mb_y, 16);
5740     }
5741 #endif
5742     return -1; //not reached
5743 }
5744
5745 static inline int decode_vui_parameters(H264Context *h, SPS *sps){
5746     MpegEncContext * const s = &h->s;
5747     int aspect_ratio_info_present_flag, aspect_ratio_idc;
5748
5749     aspect_ratio_info_present_flag= get_bits1(&s->gb);
5750     
5751     if( aspect_ratio_info_present_flag ) {
5752         aspect_ratio_idc= get_bits(&s->gb, 8);
5753         if( aspect_ratio_idc == EXTENDED_SAR ) {
5754             sps->sar.num= get_bits(&s->gb, 16);
5755             sps->sar.den= get_bits(&s->gb, 16);
5756         }else if(aspect_ratio_idc < 16){
5757             sps->sar=  pixel_aspect[aspect_ratio_idc];
5758         }else{
5759             av_log(h->s.avctx, AV_LOG_ERROR, "illegal aspect ratio\n");
5760             return -1;
5761         }
5762     }else{
5763         sps->sar.num= 
5764         sps->sar.den= 0;
5765     }
5766 //            s->avctx->aspect_ratio= sar_width*s->width / (float)(s->height*sar_height);
5767
5768     if(get_bits1(&s->gb)){      /* overscan_info_present_flag */
5769         get_bits1(&s->gb);      /* overscan_appropriate_flag */
5770     }
5771
5772     if(get_bits1(&s->gb)){      /* video_signal_type_present_flag */
5773         get_bits(&s->gb, 3);    /* video_format */
5774         get_bits1(&s->gb);      /* video_full_range_flag */
5775         if(get_bits1(&s->gb)){  /* colour_description_present_flag */
5776             get_bits(&s->gb, 8); /* colour_primaries */
5777             get_bits(&s->gb, 8); /* transfer_characteristics */
5778             get_bits(&s->gb, 8); /* matrix_coefficients */
5779         }
5780     }
5781
5782     if(get_bits1(&s->gb)){      /* chroma_location_info_present_flag */
5783         get_ue_golomb(&s->gb);  /* chroma_sample_location_type_top_field */
5784         get_ue_golomb(&s->gb);  /* chroma_sample_location_type_bottom_field */
5785     }
5786
5787     sps->timing_info_present_flag = get_bits1(&s->gb);
5788     if(sps->timing_info_present_flag){
5789         sps->num_units_in_tick = get_bits_long(&s->gb, 32);
5790         sps->time_scale = get_bits_long(&s->gb, 32);
5791         sps->fixed_frame_rate_flag = get_bits1(&s->gb);
5792     }
5793
5794 #if 0
5795 | nal_hrd_parameters_present_flag                   |0  |u(1)    |
5796 | if( nal_hrd_parameters_present_flag  = =  1)      |   |        |
5797 |  hrd_parameters( )                                |   |        |
5798 | vcl_hrd_parameters_present_flag                   |0  |u(1)    |
5799 | if( vcl_hrd_parameters_present_flag  = =  1)      |   |        |
5800 |  hrd_parameters( )                                |   |        |
5801 | if( ( nal_hrd_parameters_present_flag  = =  1  | ||   |        |
5802 |                                                   |   |        |
5803 |( vcl_hrd_parameters_present_flag  = =  1 ) )      |   |        |
5804 |  low_delay_hrd_flag                               |0  |u(1)    |
5805 | bitstream_restriction_flag                        |0  |u(1)    |
5806 | if( bitstream_restriction_flag ) {                |0  |u(1)    |
5807 |  motion_vectors_over_pic_boundaries_flag          |0  |u(1)    |
5808 |  max_bytes_per_pic_denom                          |0  |ue(v)   |
5809 |  max_bits_per_mb_denom                            |0  |ue(v)   |
5810 |  log2_max_mv_length_horizontal                    |0  |ue(v)   |
5811 |  log2_max_mv_length_vertical                      |0  |ue(v)   |
5812 |  num_reorder_frames                               |0  |ue(v)   |
5813 |  max_dec_frame_buffering                          |0  |ue(v)   |
5814 | }                                                 |   |        |
5815 |}                                                  |   |        |
5816 #endif
5817     return 0;
5818 }
5819
5820 static inline int decode_seq_parameter_set(H264Context *h){
5821     MpegEncContext * const s = &h->s;
5822     int profile_idc, level_idc;
5823     int sps_id, i;
5824     SPS *sps;
5825     
5826     profile_idc= get_bits(&s->gb, 8);
5827     get_bits1(&s->gb);   //constraint_set0_flag
5828     get_bits1(&s->gb);   //constraint_set1_flag
5829     get_bits1(&s->gb);   //constraint_set2_flag
5830     get_bits1(&s->gb);   //constraint_set3_flag
5831     get_bits(&s->gb, 4); // reserved
5832     level_idc= get_bits(&s->gb, 8);
5833     sps_id= get_ue_golomb(&s->gb);
5834     
5835     sps= &h->sps_buffer[ sps_id ];
5836     sps->profile_idc= profile_idc;
5837     sps->level_idc= level_idc;
5838
5839     sps->log2_max_frame_num= get_ue_golomb(&s->gb) + 4;
5840     sps->poc_type= get_ue_golomb(&s->gb);
5841     
5842     if(sps->poc_type == 0){ //FIXME #define
5843         sps->log2_max_poc_lsb= get_ue_golomb(&s->gb) + 4;
5844     } else if(sps->poc_type == 1){//FIXME #define
5845         sps->delta_pic_order_always_zero_flag= get_bits1(&s->gb);
5846         sps->offset_for_non_ref_pic= get_se_golomb(&s->gb);
5847         sps->offset_for_top_to_bottom_field= get_se_golomb(&s->gb);
5848         sps->poc_cycle_length= get_ue_golomb(&s->gb);
5849         
5850         for(i=0; i<sps->poc_cycle_length; i++)
5851             sps->offset_for_ref_frame[i]= get_se_golomb(&s->gb);
5852     }
5853     if(sps->poc_type > 2){
5854         av_log(h->s.avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type);
5855         return -1;
5856     }
5857
5858     sps->ref_frame_count= get_ue_golomb(&s->gb);
5859     if(sps->ref_frame_count > MAX_PICTURE_COUNT-2){
5860         av_log(h->s.avctx, AV_LOG_ERROR, "too many reference frames\n");
5861     }
5862     sps->gaps_in_frame_num_allowed_flag= get_bits1(&s->gb);
5863     sps->mb_width= get_ue_golomb(&s->gb) + 1;
5864     sps->mb_height= get_ue_golomb(&s->gb) + 1;
5865     sps->frame_mbs_only_flag= get_bits1(&s->gb);
5866     if(!sps->frame_mbs_only_flag)
5867         sps->mb_aff= get_bits1(&s->gb);
5868     else
5869         sps->mb_aff= 0;
5870
5871     sps->direct_8x8_inference_flag= get_bits1(&s->gb);
5872
5873     sps->crop= get_bits1(&s->gb);
5874     if(sps->crop){
5875         sps->crop_left  = get_ue_golomb(&s->gb);
5876         sps->crop_right = get_ue_golomb(&s->gb);
5877         sps->crop_top   = get_ue_golomb(&s->gb);
5878         sps->crop_bottom= get_ue_golomb(&s->gb);
5879         if(sps->crop_left || sps->crop_top){
5880             av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completly supported, this could look slightly wrong ...\n");
5881         }
5882     }else{
5883         sps->crop_left  = 
5884         sps->crop_right = 
5885         sps->crop_top   = 
5886         sps->crop_bottom= 0;
5887     }
5888
5889     sps->vui_parameters_present_flag= get_bits1(&s->gb);
5890     if( sps->vui_parameters_present_flag )
5891         decode_vui_parameters(h, sps);
5892     
5893     if(s->avctx->debug&FF_DEBUG_PICT_INFO){
5894         av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%d profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s\n", 
5895                sps_id, sps->profile_idc, sps->level_idc,
5896                sps->poc_type,
5897                sps->ref_frame_count,
5898                sps->mb_width, sps->mb_height,
5899                sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"),
5900                sps->direct_8x8_inference_flag ? "8B8" : "",
5901                sps->crop_left, sps->crop_right, 
5902                sps->crop_top, sps->crop_bottom, 
5903                sps->vui_parameters_present_flag ? "VUI" : ""
5904                );
5905     }
5906     return 0;
5907 }
5908
5909 static inline int decode_picture_parameter_set(H264Context *h){
5910     MpegEncContext * const s = &h->s;
5911     int pps_id= get_ue_golomb(&s->gb);
5912     PPS *pps= &h->pps_buffer[pps_id];
5913     
5914     pps->sps_id= get_ue_golomb(&s->gb);
5915     pps->cabac= get_bits1(&s->gb);
5916     pps->pic_order_present= get_bits1(&s->gb);
5917     pps->slice_group_count= get_ue_golomb(&s->gb) + 1;
5918     if(pps->slice_group_count > 1 ){
5919         pps->mb_slice_group_map_type= get_ue_golomb(&s->gb);
5920         av_log(h->s.avctx, AV_LOG_ERROR, "FMO not supported\n");
5921         switch(pps->mb_slice_group_map_type){
5922         case 0:
5923 #if 0
5924 |   for( i = 0; i <= num_slice_groups_minus1; i++ ) |   |        |
5925 |    run_length[ i ]                                |1  |ue(v)   |
5926 #endif
5927             break;
5928         case 2:
5929 #if 0
5930 |   for( i = 0; i < num_slice_groups_minus1; i++ )  |   |        |
5931 |{                                                  |   |        |
5932 |    top_left_mb[ i ]                               |1  |ue(v)   |
5933 |    bottom_right_mb[ i ]                           |1  |ue(v)   |
5934 |   }                                               |   |        |
5935 #endif
5936             break;
5937         case 3:
5938         case 4:
5939         case 5:
5940 #if 0
5941 |   slice_group_change_direction_flag               |1  |u(1)    |
5942 |   slice_group_change_rate_minus1                  |1  |ue(v)   |
5943 #endif
5944             break;
5945         case 6:
5946 #if 0
5947 |   slice_group_id_cnt_minus1                       |1  |ue(v)   |
5948 |   for( i = 0; i <= slice_group_id_cnt_minus1; i++ |   |        |
5949 |)                                                  |   |        |
5950 |    slice_group_id[ i ]                            |1  |u(v)    |
5951 #endif
5952             break;
5953         }
5954     }
5955     pps->ref_count[0]= get_ue_golomb(&s->gb) + 1;
5956     pps->ref_count[1]= get_ue_golomb(&s->gb) + 1;
5957     if(pps->ref_count[0] > 32 || pps->ref_count[1] > 32){
5958         av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow (pps)\n");
5959         return -1;
5960     }
5961     
5962     pps->weighted_pred= get_bits1(&s->gb);
5963     pps->weighted_bipred_idc= get_bits(&s->gb, 2);
5964     pps->init_qp= get_se_golomb(&s->gb) + 26;
5965     pps->init_qs= get_se_golomb(&s->gb) + 26;
5966     pps->chroma_qp_index_offset= get_se_golomb(&s->gb);
5967     pps->deblocking_filter_parameters_present= get_bits1(&s->gb);
5968     pps->constrained_intra_pred= get_bits1(&s->gb);
5969     pps->redundant_pic_cnt_present = get_bits1(&s->gb);
5970     
5971     if(s->avctx->debug&FF_DEBUG_PICT_INFO){
5972         av_log(h->s.avctx, AV_LOG_DEBUG, "pps:%d sps:%d %s slice_groups:%d ref:%d/%d %s qp:%d/%d/%d %s %s %s\n", 
5973                pps_id, pps->sps_id,
5974                pps->cabac ? "CABAC" : "CAVLC",
5975                pps->slice_group_count,
5976                pps->ref_count[0], pps->ref_count[1],
5977                pps->weighted_pred ? "weighted" : "",
5978                pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset,
5979                pps->deblocking_filter_parameters_present ? "LPAR" : "",
5980                pps->constrained_intra_pred ? "CONSTR" : "",
5981                pps->redundant_pic_cnt_present ? "REDU" : ""
5982                );
5983     }
5984     
5985     return 0;
5986 }
5987
5988 /**
5989  * finds the end of the current frame in the bitstream.
5990  * @return the position of the first byte of the next frame, or -1
5991  */
5992 static int find_frame_end(H264Context *h, const uint8_t *buf, int buf_size){
5993     int i;
5994     uint32_t state;
5995     ParseContext *pc = &(h->s.parse_context);
5996 //printf("first %02X%02X%02X%02X\n", buf[0], buf[1],buf[2],buf[3]);
5997 //    mb_addr= pc->mb_addr - 1;
5998     state= pc->state;
5999     for(i=0; i<=buf_size; i++){
6000         if((state&0xFFFFFF1F) == 0x101 || (state&0xFFFFFF1F) == 0x102 || (state&0xFFFFFF1F) == 0x105){
6001             tprintf("find_frame_end new startcode = %08x, frame_start_found = %d, pos = %d\n", state, pc->frame_start_found, i);
6002             if(pc->frame_start_found){
6003                 // If there isn't one more byte in the buffer
6004                 // the test on first_mb_in_slice cannot be done yet
6005                 // do it at next call.
6006                 if (i >= buf_size) break;
6007                 if (buf[i] & 0x80) {
6008                     // first_mb_in_slice is 0, probably the first nal of a new
6009                     // slice
6010                     tprintf("find_frame_end frame_end_found, state = %08x, pos = %d\n", state, i);
6011                     pc->state=-1; 
6012                     pc->frame_start_found= 0;
6013                     return i-4;
6014                 }
6015             }
6016             pc->frame_start_found = 1;
6017         }
6018         if (i<buf_size)
6019             state= (state<<8) | buf[i];
6020     }
6021     
6022     pc->state= state;
6023     return END_NOT_FOUND;
6024 }
6025
6026 static int h264_parse(AVCodecParserContext *s,
6027                       AVCodecContext *avctx,
6028                       uint8_t **poutbuf, int *poutbuf_size, 
6029                       const uint8_t *buf, int buf_size)
6030 {
6031     H264Context *h = s->priv_data;
6032     ParseContext *pc = &h->s.parse_context;
6033     int next;
6034     
6035     next= find_frame_end(h, buf, buf_size);
6036
6037     if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
6038         *poutbuf = NULL;
6039         *poutbuf_size = 0;
6040         return buf_size;
6041     }
6042
6043     *poutbuf = (uint8_t *)buf;
6044     *poutbuf_size = buf_size;
6045     return next;
6046 }
6047
6048 static int decode_nal_units(H264Context *h, uint8_t *buf, int buf_size){
6049     MpegEncContext * const s = &h->s;
6050     AVCodecContext * const avctx= s->avctx;
6051     int buf_index=0;
6052 #if 0
6053     int i;
6054     for(i=0; i<32; i++){
6055         printf("%X ", buf[i]);
6056     }
6057 #endif
6058     h->slice_num = 0;
6059     for(;;){
6060         int consumed;
6061         int dst_length;
6062         int bit_length;
6063         uint8_t *ptr;
6064         int i, nalsize = 0;
6065         
6066       if(h->is_avc) {
6067         if(buf_index >= buf_size) break;
6068         nalsize = 0;
6069         for(i = 0; i < h->nal_length_size; i++)
6070             nalsize = (nalsize << 8) | buf[buf_index++];
6071       } else {
6072         // start code prefix search
6073         for(; buf_index + 3 < buf_size; buf_index++){
6074             // this should allways succeed in the first iteration
6075             if(buf[buf_index] == 0 && buf[buf_index+1] == 0 && buf[buf_index+2] == 1)
6076                 break;
6077         }
6078         
6079         if(buf_index+3 >= buf_size) break;
6080         
6081         buf_index+=3;
6082       }  
6083         
6084         ptr= decode_nal(h, buf + buf_index, &dst_length, &consumed, h->is_avc ? nalsize : buf_size - buf_index);
6085         if(ptr[dst_length - 1] == 0) dst_length--;
6086         bit_length= 8*dst_length - decode_rbsp_trailing(ptr + dst_length - 1);
6087
6088         if(s->avctx->debug&FF_DEBUG_STARTCODE){
6089             av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d at %d/%d length %d\n", h->nal_unit_type, buf_index, buf_size, dst_length);
6090         }
6091         
6092         if (h->is_avc && (nalsize != consumed))
6093             av_log(h->s.avctx, AV_LOG_ERROR, "AVC: Consumed only %d bytes instead of %d\n", consumed, nalsize);
6094
6095         buf_index += consumed;
6096
6097         if( s->hurry_up == 1 && h->nal_ref_idc  == 0 )
6098             continue;
6099         
6100         switch(h->nal_unit_type){
6101         case NAL_IDR_SLICE:
6102             idr(h); //FIXME ensure we dont loose some frames if there is reordering
6103         case NAL_SLICE:
6104             init_get_bits(&s->gb, ptr, bit_length);
6105             h->intra_gb_ptr=
6106             h->inter_gb_ptr= &s->gb;
6107             s->data_partitioning = 0;
6108             
6109             if(decode_slice_header(h) < 0) return -1;
6110             if(h->redundant_pic_count==0 && s->hurry_up < 5 )
6111                 decode_slice(h);
6112             break;
6113         case NAL_DPA:
6114             init_get_bits(&s->gb, ptr, bit_length);
6115             h->intra_gb_ptr=
6116             h->inter_gb_ptr= NULL;
6117             s->data_partitioning = 1;
6118             
6119             if(decode_slice_header(h) < 0) return -1;
6120             break;
6121         case NAL_DPB:
6122             init_get_bits(&h->intra_gb, ptr, bit_length);
6123             h->intra_gb_ptr= &h->intra_gb;
6124             break;
6125         case NAL_DPC:
6126             init_get_bits(&h->inter_gb, ptr, bit_length);
6127             h->inter_gb_ptr= &h->inter_gb;
6128
6129             if(h->redundant_pic_count==0 && h->intra_gb_ptr && s->data_partitioning && s->hurry_up < 5 )
6130                 decode_slice(h);
6131             break;
6132         case NAL_SEI:
6133             break;
6134         case NAL_SPS:
6135             init_get_bits(&s->gb, ptr, bit_length);
6136             decode_seq_parameter_set(h);
6137             
6138             if(s->flags& CODEC_FLAG_LOW_DELAY)
6139                 s->low_delay=1;
6140       
6141             avctx->has_b_frames= !s->low_delay;
6142             break;
6143         case NAL_PPS:
6144             init_get_bits(&s->gb, ptr, bit_length);
6145             
6146             decode_picture_parameter_set(h);
6147
6148             break;
6149         case NAL_PICTURE_DELIMITER:
6150             break;
6151         case NAL_FILTER_DATA:
6152             break;
6153         default:
6154             av_log(avctx, AV_LOG_ERROR, "Unknown NAL code: %d\n", h->nal_unit_type);
6155         }        
6156
6157         //FIXME move after where irt is set
6158         s->current_picture.pict_type= s->pict_type;
6159         s->current_picture.key_frame= s->pict_type == I_TYPE;
6160     }
6161     
6162     if(!s->current_picture_ptr) return buf_index; //no frame
6163     
6164     h->prev_frame_num_offset= h->frame_num_offset;
6165     h->prev_frame_num= h->frame_num;
6166     if(s->current_picture_ptr->reference){
6167         h->prev_poc_msb= h->poc_msb;
6168         h->prev_poc_lsb= h->poc_lsb;
6169     }
6170     if(s->current_picture_ptr->reference)
6171         execute_ref_pic_marking(h, h->mmco, h->mmco_index);
6172     else
6173         assert(h->mmco_index==0);
6174
6175     ff_er_frame_end(s);
6176
6177     MPV_frame_end(s);
6178
6179     return buf_index;
6180 }
6181
6182 /**
6183  * retunrs the number of bytes consumed for building the current frame
6184  */
6185 static int get_consumed_bytes(MpegEncContext *s, int pos, int buf_size){
6186     if(s->flags&CODEC_FLAG_TRUNCATED){
6187         pos -= s->parse_context.last_index;
6188         if(pos<0) pos=0; // FIXME remove (uneeded?)
6189         
6190         return pos;
6191     }else{
6192         if(pos==0) pos=1; //avoid infinite loops (i doubt thats needed but ...)
6193         if(pos+10>buf_size) pos=buf_size; // oops ;)
6194
6195         return pos;
6196     }
6197 }
6198
6199 static int decode_frame(AVCodecContext *avctx, 
6200                              void *data, int *data_size,
6201                              uint8_t *buf, int buf_size)
6202 {
6203     H264Context *h = avctx->priv_data;
6204     MpegEncContext *s = &h->s;
6205     AVFrame *pict = data; 
6206     int buf_index;
6207     
6208     s->flags= avctx->flags;
6209     s->flags2= avctx->flags2;
6210
6211    /* no supplementary picture */
6212     if (buf_size == 0) {
6213         return 0;
6214     }
6215     
6216     if(s->flags&CODEC_FLAG_TRUNCATED){
6217         int next= find_frame_end(h, buf, buf_size);
6218         
6219         if( ff_combine_frame(&s->parse_context, next, &buf, &buf_size) < 0 )
6220             return buf_size;
6221 //printf("next:%d buf_size:%d last_index:%d\n", next, buf_size, s->parse_context.last_index);
6222     }
6223
6224     if(h->is_avc && !h->got_avcC) {
6225         int i, cnt, nalsize;
6226         unsigned char *p = avctx->extradata;
6227         if(avctx->extradata_size < 7) {
6228             av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
6229             return -1;
6230         }
6231         if(*p != 1) {
6232             av_log(avctx, AV_LOG_ERROR, "Unknown avcC version %d\n", *p);
6233             return -1;
6234         }
6235         /* sps and pps in the avcC always have length coded with 2 bytes,
6236            so put a fake nal_length_size = 2 while parsing them */
6237         h->nal_length_size = 2;
6238         // Decode sps from avcC
6239         cnt = *(p+5) & 0x1f; // Number of sps
6240         p += 6;
6241         for (i = 0; i < cnt; i++) {
6242             nalsize = BE_16(p) + 2;
6243             if(decode_nal_units(h, p, nalsize) != nalsize) {
6244                 av_log(avctx, AV_LOG_ERROR, "Decoding sps %d from avcC failed\n", i);
6245                 return -1;
6246             }
6247             p += nalsize;
6248         }        
6249         // Decode pps from avcC
6250         cnt = *(p++); // Number of pps
6251         for (i = 0; i < cnt; i++) {
6252             nalsize = BE_16(p) + 2;
6253             if(decode_nal_units(h, p, nalsize)  != nalsize) {
6254                 av_log(avctx, AV_LOG_ERROR, "Decoding pps %d from avcC failed\n", i);
6255                 return -1;
6256             }
6257             p += nalsize;
6258         }        
6259         // Now store right nal length size, that will be use to parse all other nals
6260         h->nal_length_size = ((*(((char*)(avctx->extradata))+4))&0x03)+1;
6261         // Do not reparse avcC
6262         h->got_avcC = 1;
6263     }
6264
6265     if(!h->is_avc && s->avctx->extradata_size && s->picture_number==0){
6266         if(0 < decode_nal_units(h, s->avctx->extradata, s->avctx->extradata_size) ) 
6267             return -1;
6268     }
6269
6270     buf_index=decode_nal_units(h, buf, buf_size);
6271     if(buf_index < 0) 
6272         return -1;
6273
6274     //FIXME do something with unavailable reference frames    
6275  
6276 //    if(ret==FRAME_SKIPED) return get_consumed_bytes(s, buf_index, buf_size);
6277     if(!s->current_picture_ptr){
6278         av_log(h->s.avctx, AV_LOG_DEBUG, "error, NO frame\n");
6279         return -1;
6280     }
6281
6282     {
6283         /* Sort B-frames into display order
6284          * FIXME doesn't allow for multiple delayed frames */
6285         Picture *cur = s->current_picture_ptr;
6286         Picture *prev = h->delayed_pic[0];
6287         Picture *out;
6288
6289         if(s->low_delay
6290            && (cur->pict_type == B_TYPE
6291            || (!h->sps.gaps_in_frame_num_allowed_flag
6292                && prev && cur->poc - prev->poc > 2))){
6293             s->low_delay = 0;
6294             s->avctx->has_b_frames = 1;
6295             if(prev && prev->poc > cur->poc)
6296                 // too late to display this frame
6297                 cur = prev;
6298         }
6299
6300         if(s->low_delay || !prev || cur->pict_type == B_TYPE)
6301             out = cur;
6302         else
6303             out = prev;
6304         if(s->low_delay || !prev || out == prev){
6305             if(prev && prev->reference == 1)
6306                 prev->reference = 0;
6307             h->delayed_pic[0] = cur;
6308         }
6309
6310         *pict= *(AVFrame*)out;
6311     }
6312
6313     ff_print_debug_info(s, pict);
6314     assert(pict->data[0]);
6315 //printf("out %d\n", (int)pict->data[0]);
6316 #if 0 //?
6317
6318     /* Return the Picture timestamp as the frame number */
6319     /* we substract 1 because it is added on utils.c    */
6320     avctx->frame_number = s->picture_number - 1;
6321 #endif
6322 #if 0
6323     /* dont output the last pic after seeking */
6324     if(s->last_picture_ptr || s->low_delay)
6325     //Note this isnt a issue as a IDR pic should flush the buffers
6326 #endif
6327         *data_size = sizeof(AVFrame);
6328     return get_consumed_bytes(s, buf_index, buf_size);
6329 }
6330 #if 0
6331 static inline void fill_mb_avail(H264Context *h){
6332     MpegEncContext * const s = &h->s;
6333     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
6334
6335     if(s->mb_y){
6336         h->mb_avail[0]= s->mb_x                 && h->slice_table[mb_xy - s->mb_stride - 1] == h->slice_num;
6337         h->mb_avail[1]=                            h->slice_table[mb_xy - s->mb_stride    ] == h->slice_num;
6338         h->mb_avail[2]= s->mb_x+1 < s->mb_width && h->slice_table[mb_xy - s->mb_stride + 1] == h->slice_num;
6339     }else{
6340         h->mb_avail[0]=
6341         h->mb_avail[1]=
6342         h->mb_avail[2]= 0;
6343     }
6344     h->mb_avail[3]= s->mb_x && h->slice_table[mb_xy - 1] == h->slice_num;
6345     h->mb_avail[4]= 1; //FIXME move out
6346     h->mb_avail[5]= 0; //FIXME move out
6347 }
6348 #endif
6349
6350 #if 0 //selftest
6351 #define COUNT 8000
6352 #define SIZE (COUNT*40)
6353 int main(){
6354     int i;
6355     uint8_t temp[SIZE];
6356     PutBitContext pb;
6357     GetBitContext gb;
6358 //    int int_temp[10000];
6359     DSPContext dsp;
6360     AVCodecContext avctx;
6361     
6362     dsputil_init(&dsp, &avctx);
6363
6364     init_put_bits(&pb, temp, SIZE);
6365     printf("testing unsigned exp golomb\n");
6366     for(i=0; i<COUNT; i++){
6367         START_TIMER
6368         set_ue_golomb(&pb, i);
6369         STOP_TIMER("set_ue_golomb");
6370     }
6371     flush_put_bits(&pb);
6372     
6373     init_get_bits(&gb, temp, 8*SIZE);
6374     for(i=0; i<COUNT; i++){
6375         int j, s;
6376         
6377         s= show_bits(&gb, 24);
6378         
6379         START_TIMER
6380         j= get_ue_golomb(&gb);
6381         if(j != i){
6382             printf("missmatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
6383 //            return -1;
6384         }
6385         STOP_TIMER("get_ue_golomb");
6386     }
6387     
6388     
6389     init_put_bits(&pb, temp, SIZE);
6390     printf("testing signed exp golomb\n");
6391     for(i=0; i<COUNT; i++){
6392         START_TIMER
6393         set_se_golomb(&pb, i - COUNT/2);
6394         STOP_TIMER("set_se_golomb");
6395     }
6396     flush_put_bits(&pb);
6397     
6398     init_get_bits(&gb, temp, 8*SIZE);
6399     for(i=0; i<COUNT; i++){
6400         int j, s;
6401         
6402         s= show_bits(&gb, 24);
6403         
6404         START_TIMER
6405         j= get_se_golomb(&gb);
6406         if(j != i - COUNT/2){
6407             printf("missmatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
6408 //            return -1;
6409         }
6410         STOP_TIMER("get_se_golomb");
6411     }
6412
6413     printf("testing 4x4 (I)DCT\n");
6414     
6415     DCTELEM block[16];
6416     uint8_t src[16], ref[16];
6417     uint64_t error= 0, max_error=0;
6418
6419     for(i=0; i<COUNT; i++){
6420         int j;
6421 //        printf("%d %d %d\n", r1, r2, (r2-r1)*16);
6422         for(j=0; j<16; j++){
6423             ref[j]= random()%255;
6424             src[j]= random()%255;
6425         }
6426
6427         h264_diff_dct_c(block, src, ref, 4);
6428         
6429         //normalize
6430         for(j=0; j<16; j++){
6431 //            printf("%d ", block[j]);
6432             block[j]= block[j]*4;
6433             if(j&1) block[j]= (block[j]*4 + 2)/5;
6434             if(j&4) block[j]= (block[j]*4 + 2)/5;
6435         }
6436 //        printf("\n");
6437         
6438         s->dsp.h264_idct_add(ref, block, 4);
6439 /*        for(j=0; j<16; j++){
6440             printf("%d ", ref[j]);
6441         }
6442         printf("\n");*/
6443             
6444         for(j=0; j<16; j++){
6445             int diff= ABS(src[j] - ref[j]);
6446             
6447             error+= diff*diff;
6448             max_error= FFMAX(max_error, diff);
6449         }
6450     }
6451     printf("error=%f max_error=%d\n", ((float)error)/COUNT/16, (int)max_error );
6452 #if 0
6453     printf("testing quantizer\n");
6454     for(qp=0; qp<52; qp++){
6455         for(i=0; i<16; i++)
6456             src1_block[i]= src2_block[i]= random()%255;
6457         
6458     }
6459 #endif
6460     printf("Testing NAL layer\n");
6461     
6462     uint8_t bitstream[COUNT];
6463     uint8_t nal[COUNT*2];
6464     H264Context h;
6465     memset(&h, 0, sizeof(H264Context));
6466     
6467     for(i=0; i<COUNT; i++){
6468         int zeros= i;
6469         int nal_length;
6470         int consumed;
6471         int out_length;
6472         uint8_t *out;
6473         int j;
6474         
6475         for(j=0; j<COUNT; j++){
6476             bitstream[j]= (random() % 255) + 1;
6477         }
6478         
6479         for(j=0; j<zeros; j++){
6480             int pos= random() % COUNT;
6481             while(bitstream[pos] == 0){
6482                 pos++;
6483                 pos %= COUNT;
6484             }
6485             bitstream[pos]=0;
6486         }
6487         
6488         START_TIMER
6489         
6490         nal_length= encode_nal(&h, nal, bitstream, COUNT, COUNT*2);
6491         if(nal_length<0){
6492             printf("encoding failed\n");
6493             return -1;
6494         }
6495         
6496         out= decode_nal(&h, nal, &out_length, &consumed, nal_length);
6497
6498         STOP_TIMER("NAL")
6499         
6500         if(out_length != COUNT){
6501             printf("incorrect length %d %d\n", out_length, COUNT);
6502             return -1;
6503         }
6504         
6505         if(consumed != nal_length){
6506             printf("incorrect consumed length %d %d\n", nal_length, consumed);
6507             return -1;
6508         }
6509         
6510         if(memcmp(bitstream, out, COUNT)){
6511             printf("missmatch\n");
6512             return -1;
6513         }
6514     }
6515     
6516     printf("Testing RBSP\n");
6517     
6518     
6519     return 0;
6520 }
6521 #endif
6522
6523
6524 static int decode_end(AVCodecContext *avctx)
6525 {
6526     H264Context *h = avctx->priv_data;
6527     MpegEncContext *s = &h->s;
6528     
6529     free_tables(h); //FIXME cleanup init stuff perhaps
6530     MPV_common_end(s);
6531
6532 //    memset(h, 0, sizeof(H264Context));
6533         
6534     return 0;
6535 }
6536
6537
6538 AVCodec h264_decoder = {
6539     "h264",
6540     CODEC_TYPE_VIDEO,
6541     CODEC_ID_H264,
6542     sizeof(H264Context),
6543     decode_init,
6544     NULL,
6545     decode_end,
6546     decode_frame,
6547     /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED,
6548 };
6549
6550 AVCodecParser h264_parser = {
6551     { CODEC_ID_H264 },
6552     sizeof(H264Context),
6553     NULL,
6554     h264_parse,
6555     ff_parse_close,
6556 };
6557
6558 #include "svq3.c"