]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264.c
avcodec: move some AVCodecContext fields to an internal struct.
[ffmpeg] / libavcodec / h264.c
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... decoder
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * H.264 / AVC / MPEG4 part10 codec.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27
28 #include "libavutil/imgutils.h"
29 #include "internal.h"
30 #include "dsputil.h"
31 #include "avcodec.h"
32 #include "mpegvideo.h"
33 #include "h264.h"
34 #include "h264data.h"
35 #include "h264_mvpred.h"
36 #include "golomb.h"
37 #include "mathops.h"
38 #include "rectangle.h"
39 #include "thread.h"
40 #include "vdpau_internal.h"
41 #include "libavutil/avassert.h"
42
43 #include "cabac.h"
44
45 //#undef NDEBUG
46 #include <assert.h>
47
48 static const uint8_t rem6[QP_MAX_NUM+1]={
49 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3,
50 };
51
52 static const uint8_t div6[QP_MAX_NUM+1]={
53 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9,10,10,10,10,
54 };
55
56 static const enum PixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = {
57     PIX_FMT_DXVA2_VLD,
58     PIX_FMT_VAAPI_VLD,
59     PIX_FMT_VDA_VLD,
60     PIX_FMT_YUVJ420P,
61     PIX_FMT_NONE
62 };
63
64 /**
65  * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
66  */
67 int ff_h264_check_intra4x4_pred_mode(H264Context *h){
68     MpegEncContext * const s = &h->s;
69     static const int8_t top [12]= {-1, 0,LEFT_DC_PRED,-1,-1,-1,-1,-1, 0};
70     static const int8_t left[12]= { 0,-1, TOP_DC_PRED, 0,-1,-1,-1, 0,-1,DC_128_PRED};
71     int i;
72
73     if(!(h->top_samples_available&0x8000)){
74         for(i=0; i<4; i++){
75             int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ];
76             if(status<0){
77                 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);
78                 return -1;
79             } else if(status){
80                 h->intra4x4_pred_mode_cache[scan8[0] + i]= status;
81             }
82         }
83     }
84
85     if((h->left_samples_available&0x8888)!=0x8888){
86         static const int mask[4]={0x8000,0x2000,0x80,0x20};
87         for(i=0; i<4; i++){
88             if(!(h->left_samples_available&mask[i])){
89                 int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ];
90                 if(status<0){
91                     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);
92                     return -1;
93                 } else if(status){
94                     h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status;
95                 }
96             }
97         }
98     }
99
100     return 0;
101 } //FIXME cleanup like ff_h264_check_intra_pred_mode
102
103 /**
104  * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
105  */
106 int ff_h264_check_intra_pred_mode(H264Context *h, int mode){
107     MpegEncContext * const s = &h->s;
108     static const int8_t top [7]= {LEFT_DC_PRED8x8, 1,-1,-1};
109     static const int8_t left[7]= { TOP_DC_PRED8x8,-1, 2,-1,DC_128_PRED8x8};
110
111     if(mode > 6U) {
112         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);
113         return -1;
114     }
115
116     if(!(h->top_samples_available&0x8000)){
117         mode= top[ mode ];
118         if(mode<0){
119             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);
120             return -1;
121         }
122     }
123
124     if((h->left_samples_available&0x8080) != 0x8080){
125         mode= left[ mode ];
126         if(h->left_samples_available&0x8080){ //mad cow disease mode, aka MBAFF + constrained_intra_pred
127             mode= ALZHEIMER_DC_L0T_PRED8x8 + (!(h->left_samples_available&0x8000)) + 2*(mode == DC_128_PRED8x8);
128         }
129         if(mode<0){
130             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);
131             return -1;
132         }
133     }
134
135     return mode;
136 }
137
138 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length){
139     int i, si, di;
140     uint8_t *dst;
141     int bufidx;
142
143 //    src[0]&0x80;                //forbidden bit
144     h->nal_ref_idc= src[0]>>5;
145     h->nal_unit_type= src[0]&0x1F;
146
147     src++; length--;
148
149 #if HAVE_FAST_UNALIGNED
150 # if HAVE_FAST_64BIT
151 #   define RS 7
152     for(i=0; i+1<length; i+=9){
153         if(!((~AV_RN64A(src+i) & (AV_RN64A(src+i) - 0x0100010001000101ULL)) & 0x8000800080008080ULL))
154 # else
155 #   define RS 3
156     for(i=0; i+1<length; i+=5){
157         if(!((~AV_RN32A(src+i) & (AV_RN32A(src+i) - 0x01000101U)) & 0x80008080U))
158 # endif
159             continue;
160         if(i>0 && !src[i]) i--;
161         while(src[i]) i++;
162 #else
163 #   define RS 0
164     for(i=0; i+1<length; i+=2){
165         if(src[i]) continue;
166         if(i>0 && src[i-1]==0) i--;
167 #endif
168         if(i+2<length && src[i+1]==0 && src[i+2]<=3){
169             if(src[i+2]!=3){
170                 /* startcode, so we must be past the end */
171                 length=i;
172             }
173             break;
174         }
175         i-= RS;
176     }
177
178     if(i>=length-1){ //no escaped 0
179         *dst_length= length;
180         *consumed= length+1; //+1 for the header
181         return src;
182     }
183
184     bufidx = h->nal_unit_type == NAL_DPC ? 1 : 0; // use second escape buffer for inter data
185     av_fast_malloc(&h->rbsp_buffer[bufidx], &h->rbsp_buffer_size[bufidx], length+FF_INPUT_BUFFER_PADDING_SIZE);
186     dst= h->rbsp_buffer[bufidx];
187
188     if (dst == NULL){
189         return NULL;
190     }
191
192 //printf("decoding esc\n");
193     memcpy(dst, src, i);
194     si=di=i;
195     while(si+2<length){
196         //remove escapes (very rare 1:2^22)
197         if(src[si+2]>3){
198             dst[di++]= src[si++];
199             dst[di++]= src[si++];
200         }else if(src[si]==0 && src[si+1]==0){
201             if(src[si+2]==3){ //escape
202                 dst[di++]= 0;
203                 dst[di++]= 0;
204                 si+=3;
205                 continue;
206             }else //next start code
207                 goto nsc;
208         }
209
210         dst[di++]= src[si++];
211     }
212     while(si<length)
213         dst[di++]= src[si++];
214 nsc:
215
216     memset(dst+di, 0, FF_INPUT_BUFFER_PADDING_SIZE);
217
218     *dst_length= di;
219     *consumed= si + 1;//+1 for the header
220 //FIXME store exact number of bits in the getbitcontext (it is needed for decoding)
221     return dst;
222 }
223
224 /**
225  * Identify the exact end of the bitstream
226  * @return the length of the trailing, or 0 if damaged
227  */
228 static int ff_h264_decode_rbsp_trailing(H264Context *h, const uint8_t *src){
229     int v= *src;
230     int r;
231
232     tprintf(h->s.avctx, "rbsp trailing %X\n", v);
233
234     for(r=1; r<9; r++){
235         if(v&1) return r;
236         v>>=1;
237     }
238     return 0;
239 }
240
241 static inline int get_lowest_part_list_y(H264Context *h, Picture *pic, int n, int height,
242                                  int y_offset, int list){
243     int raw_my= h->mv_cache[list][ scan8[n] ][1];
244     int filter_height= (raw_my&3) ? 2 : 0;
245     int full_my= (raw_my>>2) + y_offset;
246     int top = full_my - filter_height, bottom = full_my + height + filter_height;
247
248     return FFMAX(abs(top), bottom);
249 }
250
251 static inline void get_lowest_part_y(H264Context *h, int refs[2][48], int n, int height,
252                                int y_offset, int list0, int list1, int *nrefs){
253     MpegEncContext * const s = &h->s;
254     int my;
255
256     y_offset += 16*(s->mb_y >> MB_FIELD);
257
258     if(list0){
259         int ref_n = h->ref_cache[0][ scan8[n] ];
260         Picture *ref= &h->ref_list[0][ref_n];
261
262         // Error resilience puts the current picture in the ref list.
263         // Don't try to wait on these as it will cause a deadlock.
264         // Fields can wait on each other, though.
265         if (ref->f.thread_opaque != s->current_picture.f.thread_opaque ||
266            (ref->f.reference & 3) != s->picture_structure) {
267             my = get_lowest_part_list_y(h, ref, n, height, y_offset, 0);
268             if (refs[0][ref_n] < 0) nrefs[0] += 1;
269             refs[0][ref_n] = FFMAX(refs[0][ref_n], my);
270         }
271     }
272
273     if(list1){
274         int ref_n = h->ref_cache[1][ scan8[n] ];
275         Picture *ref= &h->ref_list[1][ref_n];
276
277         if (ref->f.thread_opaque != s->current_picture.f.thread_opaque ||
278            (ref->f.reference & 3) != s->picture_structure) {
279             my = get_lowest_part_list_y(h, ref, n, height, y_offset, 1);
280             if (refs[1][ref_n] < 0) nrefs[1] += 1;
281             refs[1][ref_n] = FFMAX(refs[1][ref_n], my);
282         }
283     }
284 }
285
286 /**
287  * Wait until all reference frames are available for MC operations.
288  *
289  * @param h the H264 context
290  */
291 static void await_references(H264Context *h){
292     MpegEncContext * const s = &h->s;
293     const int mb_xy= h->mb_xy;
294     const int mb_type = s->current_picture.f.mb_type[mb_xy];
295     int refs[2][48];
296     int nrefs[2] = {0};
297     int ref, list;
298
299     memset(refs, -1, sizeof(refs));
300
301     if(IS_16X16(mb_type)){
302         get_lowest_part_y(h, refs, 0, 16, 0,
303                   IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
304     }else if(IS_16X8(mb_type)){
305         get_lowest_part_y(h, refs, 0, 8, 0,
306                   IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
307         get_lowest_part_y(h, refs, 8, 8, 8,
308                   IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
309     }else if(IS_8X16(mb_type)){
310         get_lowest_part_y(h, refs, 0, 16, 0,
311                   IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1), nrefs);
312         get_lowest_part_y(h, refs, 4, 16, 0,
313                   IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1), nrefs);
314     }else{
315         int i;
316
317         assert(IS_8X8(mb_type));
318
319         for(i=0; i<4; i++){
320             const int sub_mb_type= h->sub_mb_type[i];
321             const int n= 4*i;
322             int y_offset= (i&2)<<2;
323
324             if(IS_SUB_8X8(sub_mb_type)){
325                 get_lowest_part_y(h, refs, n  , 8, y_offset,
326                           IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
327             }else if(IS_SUB_8X4(sub_mb_type)){
328                 get_lowest_part_y(h, refs, n  , 4, y_offset,
329                           IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
330                 get_lowest_part_y(h, refs, n+2, 4, y_offset+4,
331                           IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
332             }else if(IS_SUB_4X8(sub_mb_type)){
333                 get_lowest_part_y(h, refs, n  , 8, y_offset,
334                           IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
335                 get_lowest_part_y(h, refs, n+1, 8, y_offset,
336                           IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
337             }else{
338                 int j;
339                 assert(IS_SUB_4X4(sub_mb_type));
340                 for(j=0; j<4; j++){
341                     int sub_y_offset= y_offset + 2*(j&2);
342                     get_lowest_part_y(h, refs, n+j, 4, sub_y_offset,
343                               IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1), nrefs);
344                 }
345             }
346         }
347     }
348
349     for(list=h->list_count-1; list>=0; list--){
350         for(ref=0; ref<48 && nrefs[list]; ref++){
351             int row = refs[list][ref];
352             if(row >= 0){
353                 Picture *ref_pic = &h->ref_list[list][ref];
354                 int ref_field = ref_pic->f.reference - 1;
355                 int ref_field_picture = ref_pic->field_picture;
356                 int pic_height = 16*s->mb_height >> ref_field_picture;
357
358                 row <<= MB_MBAFF;
359                 nrefs[list]--;
360
361                 if(!FIELD_PICTURE && ref_field_picture){ // frame referencing two fields
362                     ff_thread_await_progress((AVFrame*)ref_pic, FFMIN((row >> 1) - !(row&1), pic_height-1), 1);
363                     ff_thread_await_progress((AVFrame*)ref_pic, FFMIN((row >> 1)           , pic_height-1), 0);
364                 }else if(FIELD_PICTURE && !ref_field_picture){ // field referencing one field of a frame
365                     ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row*2 + ref_field    , pic_height-1), 0);
366                 }else if(FIELD_PICTURE){
367                     ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row, pic_height-1), ref_field);
368                 }else{
369                     ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row, pic_height-1), 0);
370                 }
371             }
372         }
373     }
374 }
375
376 #if 0
377 /**
378  * DCT transforms the 16 dc values.
379  * @param qp quantization parameter ??? FIXME
380  */
381 static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){
382 //    const int qmul= dequant_coeff[qp][0];
383     int i;
384     int temp[16]; //FIXME check if this is a good idea
385     static const int x_offset[4]={0, 1*stride, 4* stride,  5*stride};
386     static const int y_offset[4]={0, 2*stride, 8* stride, 10*stride};
387
388     for(i=0; i<4; i++){
389         const int offset= y_offset[i];
390         const int z0= block[offset+stride*0] + block[offset+stride*4];
391         const int z1= block[offset+stride*0] - block[offset+stride*4];
392         const int z2= block[offset+stride*1] - block[offset+stride*5];
393         const int z3= block[offset+stride*1] + block[offset+stride*5];
394
395         temp[4*i+0]= z0+z3;
396         temp[4*i+1]= z1+z2;
397         temp[4*i+2]= z1-z2;
398         temp[4*i+3]= z0-z3;
399     }
400
401     for(i=0; i<4; i++){
402         const int offset= x_offset[i];
403         const int z0= temp[4*0+i] + temp[4*2+i];
404         const int z1= temp[4*0+i] - temp[4*2+i];
405         const int z2= temp[4*1+i] - temp[4*3+i];
406         const int z3= temp[4*1+i] + temp[4*3+i];
407
408         block[stride*0 +offset]= (z0 + z3)>>1;
409         block[stride*2 +offset]= (z1 + z2)>>1;
410         block[stride*8 +offset]= (z1 - z2)>>1;
411         block[stride*10+offset]= (z0 - z3)>>1;
412     }
413 }
414 #endif
415
416 #undef xStride
417 #undef stride
418
419 #if 0
420 static void chroma_dc_dct_c(DCTELEM *block){
421     const int stride= 16*2;
422     const int xStride= 16;
423     int a,b,c,d,e;
424
425     a= block[stride*0 + xStride*0];
426     b= block[stride*0 + xStride*1];
427     c= block[stride*1 + xStride*0];
428     d= block[stride*1 + xStride*1];
429
430     e= a-b;
431     a= a+b;
432     b= c-d;
433     c= c+d;
434
435     block[stride*0 + xStride*0]= (a+c);
436     block[stride*0 + xStride*1]= (e+b);
437     block[stride*1 + xStride*0]= (a-c);
438     block[stride*1 + xStride*1]= (e-b);
439 }
440 #endif
441
442 static av_always_inline void
443 mc_dir_part(H264Context *h, Picture *pic, int n, int square,
444             int height, int delta, int list,
445             uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
446             int src_x_offset, int src_y_offset,
447             qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op,
448             int pixel_shift, int chroma_idc)
449 {
450     MpegEncContext * const s = &h->s;
451     const int mx= h->mv_cache[list][ scan8[n] ][0] + src_x_offset*8;
452     int my=       h->mv_cache[list][ scan8[n] ][1] + src_y_offset*8;
453     const int luma_xy= (mx&3) + ((my&3)<<2);
454     int offset = ((mx>>2) << pixel_shift) + (my>>2)*h->mb_linesize;
455     uint8_t * src_y = pic->f.data[0] + offset;
456     uint8_t * src_cb, * src_cr;
457     int extra_width= h->emu_edge_width;
458     int extra_height= h->emu_edge_height;
459     int emu=0;
460     const int full_mx= mx>>2;
461     const int full_my= my>>2;
462     const int pic_width  = 16*s->mb_width;
463     const int pic_height = 16*s->mb_height >> MB_FIELD;
464     int ysh;
465
466     if(mx&7) extra_width -= 3;
467     if(my&7) extra_height -= 3;
468
469     if(   full_mx < 0-extra_width
470        || full_my < 0-extra_height
471        || full_mx + 16/*FIXME*/ > pic_width + extra_width
472        || full_my + 16/*FIXME*/ > pic_height + extra_height){
473         s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_y - (2 << pixel_shift) - 2*h->mb_linesize, h->mb_linesize,
474                                 16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
475             src_y= s->edge_emu_buffer + (2 << pixel_shift) + 2*h->mb_linesize;
476         emu=1;
477     }
478
479     qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); //FIXME try variable height perhaps?
480     if(!square){
481         qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
482     }
483
484     if(CONFIG_GRAY && s->flags&CODEC_FLAG_GRAY) return;
485
486     if(chroma_idc == 3 /* yuv444 */){
487         src_cb = pic->f.data[1] + offset;
488         if(emu){
489             s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cb - (2 << pixel_shift) - 2*h->mb_linesize, h->mb_linesize,
490                                     16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
491             src_cb= s->edge_emu_buffer + (2 << pixel_shift) + 2*h->mb_linesize;
492         }
493         qpix_op[luma_xy](dest_cb, src_cb, h->mb_linesize); //FIXME try variable height perhaps?
494         if(!square){
495             qpix_op[luma_xy](dest_cb + delta, src_cb + delta, h->mb_linesize);
496         }
497
498         src_cr = pic->f.data[2] + offset;
499         if(emu){
500             s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cr - (2 << pixel_shift) - 2*h->mb_linesize, h->mb_linesize,
501                                     16+5, 16+5/*FIXME*/, full_mx-2, full_my-2, pic_width, pic_height);
502             src_cr= s->edge_emu_buffer + (2 << pixel_shift) + 2*h->mb_linesize;
503         }
504         qpix_op[luma_xy](dest_cr, src_cr, h->mb_linesize); //FIXME try variable height perhaps?
505         if(!square){
506             qpix_op[luma_xy](dest_cr + delta, src_cr + delta, h->mb_linesize);
507         }
508         return;
509     }
510
511     ysh = 3 - (chroma_idc == 2 /* yuv422 */);
512     if(chroma_idc == 1 /* yuv420 */ && MB_FIELD){
513         // chroma offset when predicting from a field of opposite parity
514         my += 2 * ((s->mb_y & 1) - (pic->f.reference - 1));
515         emu |= (my>>3) < 0 || (my>>3) + 8 >= (pic_height>>1);
516     }
517
518     src_cb = pic->f.data[1] + ((mx >> 3) << pixel_shift) + (my >> ysh) * h->mb_uvlinesize;
519     src_cr = pic->f.data[2] + ((mx >> 3) << pixel_shift) + (my >> ysh) * h->mb_uvlinesize;
520
521     if(emu){
522         s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cb, h->mb_uvlinesize,
523                                 9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
524                                 pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
525             src_cb= s->edge_emu_buffer;
526     }
527     chroma_op(dest_cb, src_cb, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
528               mx&7, (my << (chroma_idc == 2 /* yuv422 */)) &7);
529
530     if(emu){
531         s->dsp.emulated_edge_mc(s->edge_emu_buffer, src_cr, h->mb_uvlinesize,
532                                 9, 8 * chroma_idc + 1, (mx >> 3), (my >> ysh),
533                                 pic_width >> 1, pic_height >> (chroma_idc == 1 /* yuv420 */));
534             src_cr= s->edge_emu_buffer;
535     }
536     chroma_op(dest_cr, src_cr, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
537               mx&7, (my << (chroma_idc == 2 /* yuv422 */)) &7);
538 }
539
540 static av_always_inline void
541 mc_part_std(H264Context *h, int n, int square, int height, int delta,
542             uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
543             int x_offset, int y_offset,
544             qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
545             qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
546             int list0, int list1, int pixel_shift, int chroma_idc)
547 {
548     MpegEncContext * const s = &h->s;
549     qpel_mc_func *qpix_op=  qpix_put;
550     h264_chroma_mc_func chroma_op= chroma_put;
551
552     dest_y  += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
553     if (chroma_idc == 3 /* yuv444 */) {
554         dest_cb += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
555         dest_cr += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
556     } else if (chroma_idc == 2 /* yuv422 */) {
557         dest_cb += (  x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
558         dest_cr += (  x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
559     } else /* yuv420 */ {
560         dest_cb += (  x_offset << pixel_shift) +   y_offset*h->mb_uvlinesize;
561         dest_cr += (  x_offset << pixel_shift) +   y_offset*h->mb_uvlinesize;
562     }
563     x_offset += 8*s->mb_x;
564     y_offset += 8*(s->mb_y >> MB_FIELD);
565
566     if(list0){
567         Picture *ref= &h->ref_list[0][ h->ref_cache[0][ scan8[n] ] ];
568         mc_dir_part(h, ref, n, square, height, delta, 0,
569                            dest_y, dest_cb, dest_cr, x_offset, y_offset,
570                            qpix_op, chroma_op, pixel_shift, chroma_idc);
571
572         qpix_op=  qpix_avg;
573         chroma_op= chroma_avg;
574     }
575
576     if(list1){
577         Picture *ref= &h->ref_list[1][ h->ref_cache[1][ scan8[n] ] ];
578         mc_dir_part(h, ref, n, square, height, delta, 1,
579                            dest_y, dest_cb, dest_cr, x_offset, y_offset,
580                            qpix_op, chroma_op, pixel_shift, chroma_idc);
581     }
582 }
583
584 static av_always_inline void
585 mc_part_weighted(H264Context *h, int n, int square, int height, int delta,
586                  uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
587                  int x_offset, int y_offset,
588                  qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
589                  h264_weight_func luma_weight_op, h264_weight_func chroma_weight_op,
590                  h264_biweight_func luma_weight_avg, h264_biweight_func chroma_weight_avg,
591                  int list0, int list1, int pixel_shift, int chroma_idc){
592     MpegEncContext * const s = &h->s;
593     int chroma_height;
594
595     dest_y += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
596     if (chroma_idc == 3 /* yuv444 */) {
597         chroma_height = height;
598         chroma_weight_avg = luma_weight_avg;
599         chroma_weight_op = luma_weight_op;
600         dest_cb += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
601         dest_cr += (2*x_offset << pixel_shift) + 2*y_offset*h->mb_linesize;
602     } else if (chroma_idc == 2 /* yuv422 */) {
603         chroma_height = height;
604         dest_cb += (  x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
605         dest_cr += (  x_offset << pixel_shift) + 2*y_offset*h->mb_uvlinesize;
606     } else /* yuv420 */ {
607         chroma_height = height >> 1;
608         dest_cb += (  x_offset << pixel_shift) +   y_offset*h->mb_uvlinesize;
609         dest_cr += (  x_offset << pixel_shift) +   y_offset*h->mb_uvlinesize;
610     }
611     x_offset += 8*s->mb_x;
612     y_offset += 8*(s->mb_y >> MB_FIELD);
613
614     if(list0 && list1){
615         /* don't optimize for luma-only case, since B-frames usually
616          * use implicit weights => chroma too. */
617         uint8_t *tmp_cb = s->obmc_scratchpad;
618         uint8_t *tmp_cr = s->obmc_scratchpad + (16 << pixel_shift);
619         uint8_t *tmp_y  = s->obmc_scratchpad + 16*h->mb_uvlinesize;
620         int refn0 = h->ref_cache[0][ scan8[n] ];
621         int refn1 = h->ref_cache[1][ scan8[n] ];
622
623         mc_dir_part(h, &h->ref_list[0][refn0], n, square, height, delta, 0,
624                     dest_y, dest_cb, dest_cr,
625                     x_offset, y_offset, qpix_put, chroma_put,
626                     pixel_shift, chroma_idc);
627         mc_dir_part(h, &h->ref_list[1][refn1], n, square, height, delta, 1,
628                     tmp_y, tmp_cb, tmp_cr,
629                     x_offset, y_offset, qpix_put, chroma_put,
630                     pixel_shift, chroma_idc);
631
632         if(h->use_weight == 2){
633             int weight0 = h->implicit_weight[refn0][refn1][s->mb_y&1];
634             int weight1 = 64 - weight0;
635             luma_weight_avg(  dest_y,  tmp_y,  h->  mb_linesize,
636                               height,        5, weight0, weight1, 0);
637             chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize,
638                               chroma_height, 5, weight0, weight1, 0);
639             chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize,
640                               chroma_height, 5, weight0, weight1, 0);
641         }else{
642             luma_weight_avg(dest_y, tmp_y, h->mb_linesize, height, h->luma_log2_weight_denom,
643                             h->luma_weight[refn0][0][0] , h->luma_weight[refn1][1][0],
644                             h->luma_weight[refn0][0][1] + h->luma_weight[refn1][1][1]);
645             chroma_weight_avg(dest_cb, tmp_cb, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
646                             h->chroma_weight[refn0][0][0][0] , h->chroma_weight[refn1][1][0][0],
647                             h->chroma_weight[refn0][0][0][1] + h->chroma_weight[refn1][1][0][1]);
648             chroma_weight_avg(dest_cr, tmp_cr, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
649                             h->chroma_weight[refn0][0][1][0] , h->chroma_weight[refn1][1][1][0],
650                             h->chroma_weight[refn0][0][1][1] + h->chroma_weight[refn1][1][1][1]);
651         }
652     }else{
653         int list = list1 ? 1 : 0;
654         int refn = h->ref_cache[list][ scan8[n] ];
655         Picture *ref= &h->ref_list[list][refn];
656         mc_dir_part(h, ref, n, square, height, delta, list,
657                     dest_y, dest_cb, dest_cr, x_offset, y_offset,
658                     qpix_put, chroma_put, pixel_shift, chroma_idc);
659
660         luma_weight_op(dest_y, h->mb_linesize, height, h->luma_log2_weight_denom,
661                        h->luma_weight[refn][list][0], h->luma_weight[refn][list][1]);
662         if(h->use_weight_chroma){
663             chroma_weight_op(dest_cb, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
664                              h->chroma_weight[refn][list][0][0], h->chroma_weight[refn][list][0][1]);
665             chroma_weight_op(dest_cr, h->mb_uvlinesize, chroma_height, h->chroma_log2_weight_denom,
666                              h->chroma_weight[refn][list][1][0], h->chroma_weight[refn][list][1][1]);
667         }
668     }
669 }
670
671 static av_always_inline void
672 mc_part(H264Context *h, int n, int square, int height, int delta,
673         uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
674         int x_offset, int y_offset,
675         qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put,
676         qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg,
677         h264_weight_func *weight_op, h264_biweight_func *weight_avg,
678         int list0, int list1, int pixel_shift, int chroma_idc)
679 {
680     if((h->use_weight==2 && list0 && list1
681         && (h->implicit_weight[ h->ref_cache[0][scan8[n]] ][ h->ref_cache[1][scan8[n]] ][h->s.mb_y&1] != 32))
682        || h->use_weight==1)
683         mc_part_weighted(h, n, square, height, delta, dest_y, dest_cb, dest_cr,
684                          x_offset, y_offset, qpix_put, chroma_put,
685                          weight_op[0], weight_op[1], weight_avg[0],
686                          weight_avg[1], list0, list1, pixel_shift, chroma_idc);
687     else
688         mc_part_std(h, n, square, height, delta, dest_y, dest_cb, dest_cr,
689                     x_offset, y_offset, qpix_put, chroma_put, qpix_avg,
690                     chroma_avg, list0, list1, pixel_shift, chroma_idc);
691 }
692
693 static av_always_inline void
694 prefetch_motion(H264Context *h, int list, int pixel_shift, int chroma_idc)
695 {
696     /* fetch pixels for estimated mv 4 macroblocks ahead
697      * optimized for 64byte cache lines */
698     MpegEncContext * const s = &h->s;
699     const int refn = h->ref_cache[list][scan8[0]];
700     if(refn >= 0){
701         const int mx= (h->mv_cache[list][scan8[0]][0]>>2) + 16*s->mb_x + 8;
702         const int my= (h->mv_cache[list][scan8[0]][1]>>2) + 16*s->mb_y;
703         uint8_t **src = h->ref_list[list][refn].f.data;
704         int off= (mx << pixel_shift) + (my + (s->mb_x&3)*4)*h->mb_linesize + (64 << pixel_shift);
705         s->dsp.prefetch(src[0]+off, s->linesize, 4);
706         if (chroma_idc == 3 /* yuv444 */) {
707             s->dsp.prefetch(src[1]+off, s->linesize, 4);
708             s->dsp.prefetch(src[2]+off, s->linesize, 4);
709         }else{
710             off= ((mx>>1) << pixel_shift) + ((my>>1) + (s->mb_x&7))*s->uvlinesize + (64 << pixel_shift);
711             s->dsp.prefetch(src[1]+off, src[2]-src[1], 2);
712         }
713     }
714 }
715
716 static av_always_inline void hl_motion(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
717                       qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
718                       qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
719                       h264_weight_func *weight_op, h264_biweight_func *weight_avg,
720                       int pixel_shift, int chroma_idc)
721 {
722     MpegEncContext * const s = &h->s;
723     const int mb_xy= h->mb_xy;
724     const int mb_type = s->current_picture.f.mb_type[mb_xy];
725
726     assert(IS_INTER(mb_type));
727
728     if(HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
729         await_references(h);
730     prefetch_motion(h, 0, pixel_shift, chroma_idc);
731
732     if(IS_16X16(mb_type)){
733         mc_part(h, 0, 1, 16, 0, dest_y, dest_cb, dest_cr, 0, 0,
734                 qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
735                 weight_op, weight_avg,
736                 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1),
737                 pixel_shift, chroma_idc);
738     }else if(IS_16X8(mb_type)){
739         mc_part(h, 0, 0, 8, 8 << pixel_shift, dest_y, dest_cb, dest_cr, 0, 0,
740                 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
741                 weight_op, weight_avg,
742                 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1),
743                 pixel_shift, chroma_idc);
744         mc_part(h, 8, 0, 8, 8 << pixel_shift, dest_y, dest_cb, dest_cr, 0, 4,
745                 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
746                 weight_op, weight_avg,
747                 IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1),
748                 pixel_shift, chroma_idc);
749     }else if(IS_8X16(mb_type)){
750         mc_part(h, 0, 0, 16, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 0, 0,
751                 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
752                 &weight_op[1], &weight_avg[1],
753                 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1),
754                 pixel_shift, chroma_idc);
755         mc_part(h, 4, 0, 16, 8*h->mb_linesize, dest_y, dest_cb, dest_cr, 4, 0,
756                 qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
757                 &weight_op[1], &weight_avg[1],
758                 IS_DIR(mb_type, 1, 0), IS_DIR(mb_type, 1, 1),
759                 pixel_shift, chroma_idc);
760     }else{
761         int i;
762
763         assert(IS_8X8(mb_type));
764
765         for(i=0; i<4; i++){
766             const int sub_mb_type= h->sub_mb_type[i];
767             const int n= 4*i;
768             int x_offset= (i&1)<<2;
769             int y_offset= (i&2)<<1;
770
771             if(IS_SUB_8X8(sub_mb_type)){
772                 mc_part(h, n, 1, 8, 0, dest_y, dest_cb, dest_cr, x_offset, y_offset,
773                     qpix_put[1], chroma_put[1], qpix_avg[1], chroma_avg[1],
774                     &weight_op[1], &weight_avg[1],
775                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
776                     pixel_shift, chroma_idc);
777             }else if(IS_SUB_8X4(sub_mb_type)){
778                 mc_part(h, n  , 0, 4, 4 << pixel_shift, dest_y, dest_cb, dest_cr, x_offset, y_offset,
779                     qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
780                     &weight_op[1], &weight_avg[1],
781                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
782                     pixel_shift, chroma_idc);
783                 mc_part(h, n+2, 0, 4, 4 << pixel_shift, dest_y, dest_cb, dest_cr, x_offset, y_offset+2,
784                     qpix_put[2], chroma_put[1], qpix_avg[2], chroma_avg[1],
785                     &weight_op[1], &weight_avg[1],
786                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
787                     pixel_shift, chroma_idc);
788             }else if(IS_SUB_4X8(sub_mb_type)){
789                 mc_part(h, n  , 0, 8, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset, y_offset,
790                     qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
791                     &weight_op[2], &weight_avg[2],
792                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
793                     pixel_shift, chroma_idc);
794                 mc_part(h, n+1, 0, 8, 4*h->mb_linesize, dest_y, dest_cb, dest_cr, x_offset+2, y_offset,
795                     qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
796                     &weight_op[2], &weight_avg[2],
797                     IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
798                     pixel_shift, chroma_idc);
799             }else{
800                 int j;
801                 assert(IS_SUB_4X4(sub_mb_type));
802                 for(j=0; j<4; j++){
803                     int sub_x_offset= x_offset + 2*(j&1);
804                     int sub_y_offset= y_offset +   (j&2);
805                     mc_part(h, n+j, 1, 4, 0, dest_y, dest_cb, dest_cr, sub_x_offset, sub_y_offset,
806                         qpix_put[2], chroma_put[2], qpix_avg[2], chroma_avg[2],
807                         &weight_op[2], &weight_avg[2],
808                         IS_DIR(sub_mb_type, 0, 0), IS_DIR(sub_mb_type, 0, 1),
809                         pixel_shift, chroma_idc);
810                 }
811             }
812         }
813     }
814
815     prefetch_motion(h, 1, pixel_shift, chroma_idc);
816 }
817
818 static av_always_inline void
819 hl_motion_420(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
820               qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
821               qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
822               h264_weight_func *weight_op, h264_biweight_func *weight_avg,
823               int pixel_shift)
824 {
825     hl_motion(h, dest_y, dest_cb, dest_cr, qpix_put, chroma_put,
826               qpix_avg, chroma_avg, weight_op, weight_avg, pixel_shift, 1);
827 }
828
829 static av_always_inline void
830 hl_motion_422(H264Context *h, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
831               qpel_mc_func (*qpix_put)[16], h264_chroma_mc_func (*chroma_put),
832               qpel_mc_func (*qpix_avg)[16], h264_chroma_mc_func (*chroma_avg),
833               h264_weight_func *weight_op, h264_biweight_func *weight_avg,
834               int pixel_shift)
835 {
836     hl_motion(h, dest_y, dest_cb, dest_cr, qpix_put, chroma_put,
837               qpix_avg, chroma_avg, weight_op, weight_avg, pixel_shift, 2);
838 }
839
840 static void free_tables(H264Context *h, int free_rbsp){
841     int i;
842     H264Context *hx;
843
844     av_freep(&h->intra4x4_pred_mode);
845     av_freep(&h->chroma_pred_mode_table);
846     av_freep(&h->cbp_table);
847     av_freep(&h->mvd_table[0]);
848     av_freep(&h->mvd_table[1]);
849     av_freep(&h->direct_table);
850     av_freep(&h->non_zero_count);
851     av_freep(&h->slice_table_base);
852     h->slice_table= NULL;
853     av_freep(&h->list_counts);
854
855     av_freep(&h->mb2b_xy);
856     av_freep(&h->mb2br_xy);
857
858     for(i = 0; i < MAX_THREADS; i++) {
859         hx = h->thread_context[i];
860         if(!hx) continue;
861         av_freep(&hx->top_borders[1]);
862         av_freep(&hx->top_borders[0]);
863         av_freep(&hx->s.obmc_scratchpad);
864         if (free_rbsp){
865             av_freep(&hx->rbsp_buffer[1]);
866             av_freep(&hx->rbsp_buffer[0]);
867             hx->rbsp_buffer_size[0] = 0;
868             hx->rbsp_buffer_size[1] = 0;
869         }
870         if (i) av_freep(&h->thread_context[i]);
871     }
872 }
873
874 static void init_dequant8_coeff_table(H264Context *h){
875     int i,j,q,x;
876     const int max_qp = 51 + 6*(h->sps.bit_depth_luma-8);
877
878     for(i=0; i<6; i++ ){
879         h->dequant8_coeff[i] = h->dequant8_buffer[i];
880         for(j=0; j<i; j++){
881             if(!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i], 64*sizeof(uint8_t))){
882                 h->dequant8_coeff[i] = h->dequant8_buffer[j];
883                 break;
884             }
885         }
886         if(j<i)
887             continue;
888
889         for(q=0; q<max_qp+1; q++){
890             int shift = div6[q];
891             int idx = rem6[q];
892             for(x=0; x<64; x++)
893                 h->dequant8_coeff[i][q][(x>>3)|((x&7)<<3)] =
894                     ((uint32_t)dequant8_coeff_init[idx][ dequant8_coeff_init_scan[((x>>1)&12) | (x&3)] ] *
895                     h->pps.scaling_matrix8[i][x]) << shift;
896         }
897     }
898 }
899
900 static void init_dequant4_coeff_table(H264Context *h){
901     int i,j,q,x;
902     const int max_qp = 51 + 6*(h->sps.bit_depth_luma-8);
903     for(i=0; i<6; i++ ){
904         h->dequant4_coeff[i] = h->dequant4_buffer[i];
905         for(j=0; j<i; j++){
906             if(!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i], 16*sizeof(uint8_t))){
907                 h->dequant4_coeff[i] = h->dequant4_buffer[j];
908                 break;
909             }
910         }
911         if(j<i)
912             continue;
913
914         for(q=0; q<max_qp+1; q++){
915             int shift = div6[q] + 2;
916             int idx = rem6[q];
917             for(x=0; x<16; x++)
918                 h->dequant4_coeff[i][q][(x>>2)|((x<<2)&0xF)] =
919                     ((uint32_t)dequant4_coeff_init[idx][(x&1) + ((x>>2)&1)] *
920                     h->pps.scaling_matrix4[i][x]) << shift;
921         }
922     }
923 }
924
925 static void init_dequant_tables(H264Context *h){
926     int i,x;
927     init_dequant4_coeff_table(h);
928     if(h->pps.transform_8x8_mode)
929         init_dequant8_coeff_table(h);
930     if(h->sps.transform_bypass){
931         for(i=0; i<6; i++)
932             for(x=0; x<16; x++)
933                 h->dequant4_coeff[i][0][x] = 1<<6;
934         if(h->pps.transform_8x8_mode)
935             for(i=0; i<6; i++)
936                 for(x=0; x<64; x++)
937                     h->dequant8_coeff[i][0][x] = 1<<6;
938     }
939 }
940
941
942 int ff_h264_alloc_tables(H264Context *h){
943     MpegEncContext * const s = &h->s;
944     const int big_mb_num= s->mb_stride * (s->mb_height+1);
945     const int row_mb_num= 2*s->mb_stride*s->avctx->thread_count;
946     int x,y;
947
948     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->intra4x4_pred_mode, row_mb_num * 8  * sizeof(uint8_t), fail)
949
950     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->non_zero_count    , big_mb_num * 48 * sizeof(uint8_t), fail)
951     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->slice_table_base  , (big_mb_num+s->mb_stride) * sizeof(*h->slice_table_base), fail)
952     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->cbp_table, big_mb_num * sizeof(uint16_t), fail)
953
954     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->chroma_pred_mode_table, big_mb_num * sizeof(uint8_t), fail)
955     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mvd_table[0], 16*row_mb_num * sizeof(uint8_t), fail);
956     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mvd_table[1], 16*row_mb_num * sizeof(uint8_t), fail);
957     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->direct_table, 4*big_mb_num * sizeof(uint8_t) , fail);
958     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->list_counts, big_mb_num * sizeof(uint8_t), fail)
959
960     memset(h->slice_table_base, -1, (big_mb_num+s->mb_stride)  * sizeof(*h->slice_table_base));
961     h->slice_table= h->slice_table_base + s->mb_stride*2 + 1;
962
963     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mb2b_xy  , big_mb_num * sizeof(uint32_t), fail);
964     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->mb2br_xy , big_mb_num * sizeof(uint32_t), fail);
965     for(y=0; y<s->mb_height; y++){
966         for(x=0; x<s->mb_width; x++){
967             const int mb_xy= x + y*s->mb_stride;
968             const int b_xy = 4*x + 4*y*h->b_stride;
969
970             h->mb2b_xy [mb_xy]= b_xy;
971             h->mb2br_xy[mb_xy]= 8*(FMO ? mb_xy : (mb_xy % (2*s->mb_stride)));
972         }
973     }
974
975     s->obmc_scratchpad = NULL;
976
977     if(!h->dequant4_coeff[0])
978         init_dequant_tables(h);
979
980     return 0;
981 fail:
982     free_tables(h, 1);
983     return -1;
984 }
985
986 /**
987  * Mimic alloc_tables(), but for every context thread.
988  */
989 static void clone_tables(H264Context *dst, H264Context *src, int i){
990     MpegEncContext * const s = &src->s;
991     dst->intra4x4_pred_mode       = src->intra4x4_pred_mode + i*8*2*s->mb_stride;
992     dst->non_zero_count           = src->non_zero_count;
993     dst->slice_table              = src->slice_table;
994     dst->cbp_table                = src->cbp_table;
995     dst->mb2b_xy                  = src->mb2b_xy;
996     dst->mb2br_xy                 = src->mb2br_xy;
997     dst->chroma_pred_mode_table   = src->chroma_pred_mode_table;
998     dst->mvd_table[0]             = src->mvd_table[0] + i*8*2*s->mb_stride;
999     dst->mvd_table[1]             = src->mvd_table[1] + i*8*2*s->mb_stride;
1000     dst->direct_table             = src->direct_table;
1001     dst->list_counts              = src->list_counts;
1002
1003     dst->s.obmc_scratchpad = NULL;
1004     ff_h264_pred_init(&dst->hpc, src->s.codec_id, src->sps.bit_depth_luma, src->sps.chroma_format_idc);
1005 }
1006
1007 /**
1008  * Init context
1009  * Allocate buffers which are not shared amongst multiple threads.
1010  */
1011 static int context_init(H264Context *h){
1012     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[0], h->s.mb_width * 16*3 * sizeof(uint8_t)*2, fail)
1013     FF_ALLOCZ_OR_GOTO(h->s.avctx, h->top_borders[1], h->s.mb_width * 16*3 * sizeof(uint8_t)*2, fail)
1014
1015     h->ref_cache[0][scan8[5 ]+1] = h->ref_cache[0][scan8[7 ]+1] = h->ref_cache[0][scan8[13]+1] =
1016     h->ref_cache[1][scan8[5 ]+1] = h->ref_cache[1][scan8[7 ]+1] = h->ref_cache[1][scan8[13]+1] = PART_NOT_AVAILABLE;
1017
1018     return 0;
1019 fail:
1020     return -1; // free_tables will clean up for us
1021 }
1022
1023 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size);
1024
1025 static av_cold void common_init(H264Context *h){
1026     MpegEncContext * const s = &h->s;
1027
1028     s->width = s->avctx->width;
1029     s->height = s->avctx->height;
1030     s->codec_id= s->avctx->codec->id;
1031
1032     ff_h264dsp_init(&h->h264dsp, 8, 1);
1033     ff_h264_pred_init(&h->hpc, s->codec_id, 8, 1);
1034
1035     h->dequant_coeff_pps= -1;
1036     s->unrestricted_mv=1;
1037
1038     dsputil_init(&s->dsp, s->avctx); // needed so that idct permutation is known early
1039
1040     memset(h->pps.scaling_matrix4, 16, 6*16*sizeof(uint8_t));
1041     memset(h->pps.scaling_matrix8, 16, 2*64*sizeof(uint8_t));
1042 }
1043
1044 int ff_h264_decode_extradata(H264Context *h)
1045 {
1046     AVCodecContext *avctx = h->s.avctx;
1047
1048     if(avctx->extradata[0] == 1){
1049         int i, cnt, nalsize;
1050         unsigned char *p = avctx->extradata;
1051
1052         h->is_avc = 1;
1053
1054         if(avctx->extradata_size < 7) {
1055             av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
1056             return -1;
1057         }
1058         /* sps and pps in the avcC always have length coded with 2 bytes,
1059            so put a fake nal_length_size = 2 while parsing them */
1060         h->nal_length_size = 2;
1061         // Decode sps from avcC
1062         cnt = *(p+5) & 0x1f; // Number of sps
1063         p += 6;
1064         for (i = 0; i < cnt; i++) {
1065             nalsize = AV_RB16(p) + 2;
1066             if (p - avctx->extradata + nalsize > avctx->extradata_size)
1067                 return -1;
1068             if(decode_nal_units(h, p, nalsize) < 0) {
1069                 av_log(avctx, AV_LOG_ERROR, "Decoding sps %d from avcC failed\n", i);
1070                 return -1;
1071             }
1072             p += nalsize;
1073         }
1074         // Decode pps from avcC
1075         cnt = *(p++); // Number of pps
1076         for (i = 0; i < cnt; i++) {
1077             nalsize = AV_RB16(p) + 2;
1078             if (p - avctx->extradata + nalsize > avctx->extradata_size)
1079                 return -1;
1080             if (decode_nal_units(h, p, nalsize) < 0) {
1081                 av_log(avctx, AV_LOG_ERROR, "Decoding pps %d from avcC failed\n", i);
1082                 return -1;
1083             }
1084             p += nalsize;
1085         }
1086         // Now store right nal length size, that will be use to parse all other nals
1087         h->nal_length_size = (avctx->extradata[4] & 0x03) + 1;
1088     } else {
1089         h->is_avc = 0;
1090         if(decode_nal_units(h, avctx->extradata, avctx->extradata_size) < 0)
1091             return -1;
1092     }
1093     return 0;
1094 }
1095
1096 av_cold int ff_h264_decode_init(AVCodecContext *avctx){
1097     H264Context *h= avctx->priv_data;
1098     MpegEncContext * const s = &h->s;
1099     int i;
1100
1101     MPV_decode_defaults(s);
1102
1103     s->avctx = avctx;
1104     common_init(h);
1105
1106     s->out_format = FMT_H264;
1107     s->workaround_bugs= avctx->workaround_bugs;
1108
1109     // set defaults
1110 //    s->decode_mb= ff_h263_decode_mb;
1111     s->quarter_sample = 1;
1112     if(!avctx->has_b_frames)
1113     s->low_delay= 1;
1114
1115     avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1116
1117     ff_h264_decode_init_vlc();
1118
1119     h->pixel_shift = 0;
1120     h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
1121
1122     h->thread_context[0] = h;
1123     h->outputed_poc = h->next_outputed_poc = INT_MIN;
1124     for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1125         h->last_pocs[i] = INT_MIN;
1126     h->prev_poc_msb= 1<<16;
1127     h->x264_build = -1;
1128     ff_h264_reset_sei(h);
1129     if(avctx->codec_id == CODEC_ID_H264){
1130         if(avctx->ticks_per_frame == 1){
1131             s->avctx->time_base.den *=2;
1132         }
1133         avctx->ticks_per_frame = 2;
1134     }
1135
1136     if(avctx->extradata_size > 0 && avctx->extradata &&
1137         ff_h264_decode_extradata(h))
1138         return -1;
1139
1140     if(h->sps.bitstream_restriction_flag && s->avctx->has_b_frames < h->sps.num_reorder_frames){
1141         s->avctx->has_b_frames = h->sps.num_reorder_frames;
1142         s->low_delay = 0;
1143     }
1144
1145     return 0;
1146 }
1147
1148 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b)+(size))))
1149 static void copy_picture_range(Picture **to, Picture **from, int count, MpegEncContext *new_base, MpegEncContext *old_base)
1150 {
1151     int i;
1152
1153     for (i=0; i<count; i++){
1154         assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
1155                 IN_RANGE(from[i], old_base->picture, sizeof(Picture) * old_base->picture_count) ||
1156                 !from[i]));
1157         to[i] = REBASE_PICTURE(from[i], new_base, old_base);
1158     }
1159 }
1160
1161 static void copy_parameter_set(void **to, void **from, int count, int size)
1162 {
1163     int i;
1164
1165     for (i=0; i<count; i++){
1166         if (to[i] && !from[i]) av_freep(&to[i]);
1167         else if (from[i] && !to[i]) to[i] = av_malloc(size);
1168
1169         if (from[i]) memcpy(to[i], from[i], size);
1170     }
1171 }
1172
1173 static int decode_init_thread_copy(AVCodecContext *avctx){
1174     H264Context *h= avctx->priv_data;
1175
1176     if (!avctx->internal->is_copy)
1177         return 0;
1178     memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1179     memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1180
1181     return 0;
1182 }
1183
1184 #define copy_fields(to, from, start_field, end_field) memcpy(&to->start_field, &from->start_field, (char*)&to->end_field - (char*)&to->start_field)
1185 static int decode_update_thread_context(AVCodecContext *dst, const AVCodecContext *src){
1186     H264Context *h= dst->priv_data, *h1= src->priv_data;
1187     MpegEncContext * const s = &h->s, * const s1 = &h1->s;
1188     int inited = s->context_initialized, err;
1189     int i;
1190
1191     if(dst == src || !s1->context_initialized) return 0;
1192
1193     err = ff_mpeg_update_thread_context(dst, src);
1194     if(err) return err;
1195
1196     //FIXME handle width/height changing
1197     if(!inited){
1198         for(i = 0; i < MAX_SPS_COUNT; i++)
1199             av_freep(h->sps_buffers + i);
1200
1201         for(i = 0; i < MAX_PPS_COUNT; i++)
1202             av_freep(h->pps_buffers + i);
1203
1204         memcpy(&h->s + 1, &h1->s + 1, sizeof(H264Context) - sizeof(MpegEncContext)); //copy all fields after MpegEnc
1205         memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1206         memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
1207         if (ff_h264_alloc_tables(h) < 0) {
1208             av_log(dst, AV_LOG_ERROR, "Could not allocate memory for h264\n");
1209             return AVERROR(ENOMEM);
1210         }
1211         context_init(h);
1212
1213         for(i=0; i<2; i++){
1214             h->rbsp_buffer[i] = NULL;
1215             h->rbsp_buffer_size[i] = 0;
1216         }
1217
1218         h->thread_context[0] = h;
1219
1220         // frame_start may not be called for the next thread (if it's decoding a bottom field)
1221         // so this has to be allocated here
1222         h->s.obmc_scratchpad = av_malloc(16*6*s->linesize);
1223
1224         s->dsp.clear_blocks(h->mb);
1225         s->dsp.clear_blocks(h->mb+(24*16<<h->pixel_shift));
1226     }
1227
1228     //extradata/NAL handling
1229     h->is_avc          = h1->is_avc;
1230
1231     //SPS/PPS
1232     copy_parameter_set((void**)h->sps_buffers, (void**)h1->sps_buffers, MAX_SPS_COUNT, sizeof(SPS));
1233     h->sps             = h1->sps;
1234     copy_parameter_set((void**)h->pps_buffers, (void**)h1->pps_buffers, MAX_PPS_COUNT, sizeof(PPS));
1235     h->pps             = h1->pps;
1236
1237     //Dequantization matrices
1238     //FIXME these are big - can they be only copied when PPS changes?
1239     copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
1240
1241     for(i=0; i<6; i++)
1242         h->dequant4_coeff[i] = h->dequant4_buffer[0] + (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
1243
1244     for(i=0; i<6; i++)
1245         h->dequant8_coeff[i] = h->dequant8_buffer[0] + (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
1246
1247     h->dequant_coeff_pps = h1->dequant_coeff_pps;
1248
1249     //POC timing
1250     copy_fields(h, h1, poc_lsb, redundant_pic_count);
1251
1252     //reference lists
1253     copy_fields(h, h1, ref_count, list_count);
1254     copy_fields(h, h1, ref_list,  intra_gb);
1255     copy_fields(h, h1, short_ref, cabac_init_idc);
1256
1257     copy_picture_range(h->short_ref,   h1->short_ref,   32, s, s1);
1258     copy_picture_range(h->long_ref,    h1->long_ref,    32, s, s1);
1259     copy_picture_range(h->delayed_pic, h1->delayed_pic, MAX_DELAYED_PIC_COUNT+2, s, s1);
1260
1261     h->last_slice_type = h1->last_slice_type;
1262
1263     if(!s->current_picture_ptr) return 0;
1264
1265     if(!s->dropable) {
1266         err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1267         h->prev_poc_msb     = h->poc_msb;
1268         h->prev_poc_lsb     = h->poc_lsb;
1269     }
1270     h->prev_frame_num_offset= h->frame_num_offset;
1271     h->prev_frame_num       = h->frame_num;
1272     h->outputed_poc         = h->next_outputed_poc;
1273
1274     return err;
1275 }
1276
1277 int ff_h264_frame_start(H264Context *h){
1278     MpegEncContext * const s = &h->s;
1279     int i;
1280     const int pixel_shift = h->pixel_shift;
1281     int thread_count = (s->avctx->active_thread_type & FF_THREAD_SLICE) ? s->avctx->thread_count : 1;
1282
1283     if(MPV_frame_start(s, s->avctx) < 0)
1284         return -1;
1285     ff_er_frame_start(s);
1286     /*
1287      * MPV_frame_start uses pict_type to derive key_frame.
1288      * This is incorrect for H.264; IDR markings must be used.
1289      * Zero here; IDR markings per slice in frame or fields are ORed in later.
1290      * See decode_nal_units().
1291      */
1292     s->current_picture_ptr->f.key_frame = 0;
1293     s->current_picture_ptr->mmco_reset= 0;
1294
1295     assert(s->linesize && s->uvlinesize);
1296
1297     for(i=0; i<16; i++){
1298         h->block_offset[i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 4*s->linesize*((scan8[i] - scan8[0])>>3);
1299         h->block_offset[48+i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 8*s->linesize*((scan8[i] - scan8[0])>>3);
1300     }
1301     for(i=0; i<16; i++){
1302         h->block_offset[16+i]=
1303         h->block_offset[32+i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 4*s->uvlinesize*((scan8[i] - scan8[0])>>3);
1304         h->block_offset[48+16+i]=
1305         h->block_offset[48+32+i]= (4*((scan8[i] - scan8[0])&7) << pixel_shift) + 8*s->uvlinesize*((scan8[i] - scan8[0])>>3);
1306     }
1307
1308     /* can't be in alloc_tables because linesize isn't known there.
1309      * FIXME: redo bipred weight to not require extra buffer? */
1310     for(i = 0; i < thread_count; i++)
1311         if(h->thread_context[i] && !h->thread_context[i]->s.obmc_scratchpad)
1312             h->thread_context[i]->s.obmc_scratchpad = av_malloc(16*6*s->linesize);
1313
1314     /* some macroblocks can be accessed before they're available in case of lost slices, mbaff or threading*/
1315     memset(h->slice_table, -1, (s->mb_height*s->mb_stride-1) * sizeof(*h->slice_table));
1316
1317 //    s->decode = (s->flags & CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.f.reference /*|| h->contains_intra*/ || 1;
1318
1319     // We mark the current picture as non-reference after allocating it, so
1320     // that if we break out due to an error it can be released automatically
1321     // in the next MPV_frame_start().
1322     // SVQ3 as well as most other codecs have only last/next/current and thus
1323     // get released even with set reference, besides SVQ3 and others do not
1324     // mark frames as reference later "naturally".
1325     if(s->codec_id != CODEC_ID_SVQ3)
1326         s->current_picture_ptr->f.reference = 0;
1327
1328     s->current_picture_ptr->field_poc[0]=
1329     s->current_picture_ptr->field_poc[1]= INT_MAX;
1330
1331     h->next_output_pic = NULL;
1332
1333     assert(s->current_picture_ptr->long_ref==0);
1334
1335     return 0;
1336 }
1337
1338 /**
1339   * Run setup operations that must be run after slice header decoding.
1340   * This includes finding the next displayed frame.
1341   *
1342   * @param h h264 master context
1343   * @param setup_finished enough NALs have been read that we can call
1344   * ff_thread_finish_setup()
1345   */
1346 static void decode_postinit(H264Context *h, int setup_finished){
1347     MpegEncContext * const s = &h->s;
1348     Picture *out = s->current_picture_ptr;
1349     Picture *cur = s->current_picture_ptr;
1350     int i, pics, out_of_order, out_idx;
1351
1352     s->current_picture_ptr->f.qscale_type = FF_QSCALE_TYPE_H264;
1353     s->current_picture_ptr->f.pict_type   = s->pict_type;
1354
1355     if (h->next_output_pic) return;
1356
1357     if (cur->field_poc[0]==INT_MAX || cur->field_poc[1]==INT_MAX) {
1358         //FIXME: if we have two PAFF fields in one packet, we can't start the next thread here.
1359         //If we have one field per packet, we can. The check in decode_nal_units() is not good enough
1360         //to find this yet, so we assume the worst for now.
1361         //if (setup_finished)
1362         //    ff_thread_finish_setup(s->avctx);
1363         return;
1364     }
1365
1366     cur->f.interlaced_frame = 0;
1367     cur->f.repeat_pict      = 0;
1368
1369     /* Signal interlacing information externally. */
1370     /* Prioritize picture timing SEI information over used decoding process if it exists. */
1371
1372     if(h->sps.pic_struct_present_flag){
1373         switch (h->sei_pic_struct)
1374         {
1375         case SEI_PIC_STRUCT_FRAME:
1376             break;
1377         case SEI_PIC_STRUCT_TOP_FIELD:
1378         case SEI_PIC_STRUCT_BOTTOM_FIELD:
1379             cur->f.interlaced_frame = 1;
1380             break;
1381         case SEI_PIC_STRUCT_TOP_BOTTOM:
1382         case SEI_PIC_STRUCT_BOTTOM_TOP:
1383             if (FIELD_OR_MBAFF_PICTURE)
1384                 cur->f.interlaced_frame = 1;
1385             else
1386                 // try to flag soft telecine progressive
1387                 cur->f.interlaced_frame = h->prev_interlaced_frame;
1388             break;
1389         case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
1390         case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
1391             // Signal the possibility of telecined film externally (pic_struct 5,6)
1392             // From these hints, let the applications decide if they apply deinterlacing.
1393             cur->f.repeat_pict = 1;
1394             break;
1395         case SEI_PIC_STRUCT_FRAME_DOUBLING:
1396             // Force progressive here, as doubling interlaced frame is a bad idea.
1397             cur->f.repeat_pict = 2;
1398             break;
1399         case SEI_PIC_STRUCT_FRAME_TRIPLING:
1400             cur->f.repeat_pict = 4;
1401             break;
1402         }
1403
1404         if ((h->sei_ct_type & 3) && h->sei_pic_struct <= SEI_PIC_STRUCT_BOTTOM_TOP)
1405             cur->f.interlaced_frame = (h->sei_ct_type & (1 << 1)) != 0;
1406     }else{
1407         /* Derive interlacing flag from used decoding process. */
1408         cur->f.interlaced_frame = FIELD_OR_MBAFF_PICTURE;
1409     }
1410     h->prev_interlaced_frame = cur->f.interlaced_frame;
1411
1412     if (cur->field_poc[0] != cur->field_poc[1]){
1413         /* Derive top_field_first from field pocs. */
1414         cur->f.top_field_first = cur->field_poc[0] < cur->field_poc[1];
1415     }else{
1416         if (cur->f.interlaced_frame || h->sps.pic_struct_present_flag) {
1417             /* Use picture timing SEI information. Even if it is a information of a past frame, better than nothing. */
1418             if(h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM
1419               || h->sei_pic_struct == SEI_PIC_STRUCT_TOP_BOTTOM_TOP)
1420                 cur->f.top_field_first = 1;
1421             else
1422                 cur->f.top_field_first = 0;
1423         }else{
1424             /* Most likely progressive */
1425             cur->f.top_field_first = 0;
1426         }
1427     }
1428
1429     //FIXME do something with unavailable reference frames
1430
1431     /* Sort B-frames into display order */
1432
1433     if(h->sps.bitstream_restriction_flag
1434        && s->avctx->has_b_frames < h->sps.num_reorder_frames){
1435         s->avctx->has_b_frames = h->sps.num_reorder_frames;
1436         s->low_delay = 0;
1437     }
1438
1439     if(   s->avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT
1440        && !h->sps.bitstream_restriction_flag){
1441         s->avctx->has_b_frames= MAX_DELAYED_PIC_COUNT;
1442         s->low_delay= 0;
1443     }
1444
1445     pics = 0;
1446     while(h->delayed_pic[pics]) pics++;
1447
1448     assert(pics <= MAX_DELAYED_PIC_COUNT);
1449
1450     h->delayed_pic[pics++] = cur;
1451     if (cur->f.reference == 0)
1452         cur->f.reference = DELAYED_PIC_REF;
1453
1454     out = h->delayed_pic[0];
1455     out_idx = 0;
1456     for (i = 1; h->delayed_pic[i] && !h->delayed_pic[i]->f.key_frame && !h->delayed_pic[i]->mmco_reset; i++)
1457         if(h->delayed_pic[i]->poc < out->poc){
1458             out = h->delayed_pic[i];
1459             out_idx = i;
1460         }
1461     if (s->avctx->has_b_frames == 0 && (h->delayed_pic[0]->f.key_frame || h->delayed_pic[0]->mmco_reset))
1462         h->next_outputed_poc= INT_MIN;
1463     out_of_order = out->poc < h->next_outputed_poc;
1464
1465     if(h->sps.bitstream_restriction_flag && s->avctx->has_b_frames >= h->sps.num_reorder_frames)
1466         { }
1467     else if (out_of_order && pics-1 == s->avctx->has_b_frames &&
1468              s->avctx->has_b_frames < MAX_DELAYED_PIC_COUNT) {
1469         int cnt = 0, invalid = 0;
1470         for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++) {
1471             cnt += out->poc < h->last_pocs[i];
1472             invalid += h->last_pocs[i] == INT_MIN;
1473         }
1474         if (invalid + cnt < MAX_DELAYED_PIC_COUNT) {
1475             s->avctx->has_b_frames = FFMAX(s->avctx->has_b_frames, cnt);
1476         } else if (cnt) {
1477             for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
1478                 h->last_pocs[i] = INT_MIN;
1479         }
1480         s->low_delay = 0;
1481     } else if (s->low_delay &&
1482                ((h->next_outputed_poc != INT_MIN && out->poc > h->next_outputed_poc + 2) ||
1483                 cur->f.pict_type == AV_PICTURE_TYPE_B)) {
1484         s->low_delay = 0;
1485         s->avctx->has_b_frames++;
1486     }
1487
1488     if(out_of_order || pics > s->avctx->has_b_frames){
1489         out->f.reference &= ~DELAYED_PIC_REF;
1490         out->owner2 = s; // for frame threading, the owner must be the second field's thread
1491                          // or else the first thread can release the picture and reuse it unsafely
1492         for(i=out_idx; h->delayed_pic[i]; i++)
1493             h->delayed_pic[i] = h->delayed_pic[i+1];
1494     }
1495     memmove(h->last_pocs, &h->last_pocs[1], sizeof(*h->last_pocs) * (MAX_DELAYED_PIC_COUNT - 1));
1496     h->last_pocs[MAX_DELAYED_PIC_COUNT - 1] = out->poc;
1497     if(!out_of_order && pics > s->avctx->has_b_frames){
1498         h->next_output_pic = out;
1499         if (out_idx == 0 && h->delayed_pic[0] && (h->delayed_pic[0]->f.key_frame || h->delayed_pic[0]->mmco_reset)) {
1500             h->next_outputed_poc = INT_MIN;
1501         } else
1502             h->next_outputed_poc = out->poc;
1503     }else{
1504         av_log(s->avctx, AV_LOG_DEBUG, "no picture\n");
1505     }
1506
1507     if (setup_finished)
1508         ff_thread_finish_setup(s->avctx);
1509 }
1510
1511 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
1512                                               uint8_t *src_cb, uint8_t *src_cr,
1513                                               int linesize, int uvlinesize, int simple)
1514 {
1515     MpegEncContext * const s = &h->s;
1516     uint8_t *top_border;
1517     int top_idx = 1;
1518     const int pixel_shift = h->pixel_shift;
1519     int chroma444 = CHROMA444;
1520     int chroma422 = CHROMA422;
1521
1522     src_y  -=   linesize;
1523     src_cb -= uvlinesize;
1524     src_cr -= uvlinesize;
1525
1526     if(!simple && FRAME_MBAFF){
1527         if(s->mb_y&1){
1528             if(!MB_MBAFF){
1529                 top_border = h->top_borders[0][s->mb_x];
1530                 AV_COPY128(top_border, src_y + 15*linesize);
1531                 if (pixel_shift)
1532                     AV_COPY128(top_border+16, src_y+15*linesize+16);
1533                 if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
1534                     if(chroma444){
1535                         if (pixel_shift){
1536                             AV_COPY128(top_border+32, src_cb + 15*uvlinesize);
1537                             AV_COPY128(top_border+48, src_cb + 15*uvlinesize+16);
1538                             AV_COPY128(top_border+64, src_cr + 15*uvlinesize);
1539                             AV_COPY128(top_border+80, src_cr + 15*uvlinesize+16);
1540                         } else {
1541                             AV_COPY128(top_border+16, src_cb + 15*uvlinesize);
1542                             AV_COPY128(top_border+32, src_cr + 15*uvlinesize);
1543                         }
1544                     } else if(chroma422) {
1545                         if (pixel_shift) {
1546                             AV_COPY128(top_border+32, src_cb + 15*uvlinesize);
1547                             AV_COPY128(top_border+48, src_cr + 15*uvlinesize);
1548                         } else {
1549                             AV_COPY64(top_border+16, src_cb +  15*uvlinesize);
1550                             AV_COPY64(top_border+24, src_cr +  15*uvlinesize);
1551                         }
1552                     } else {
1553                         if (pixel_shift) {
1554                             AV_COPY128(top_border+32, src_cb+7*uvlinesize);
1555                             AV_COPY128(top_border+48, src_cr+7*uvlinesize);
1556                         } else {
1557                             AV_COPY64(top_border+16, src_cb+7*uvlinesize);
1558                             AV_COPY64(top_border+24, src_cr+7*uvlinesize);
1559                         }
1560                     }
1561                 }
1562             }
1563         }else if(MB_MBAFF){
1564             top_idx = 0;
1565         }else
1566             return;
1567     }
1568
1569     top_border = h->top_borders[top_idx][s->mb_x];
1570     // There are two lines saved, the line above the the top macroblock of a pair,
1571     // and the line above the bottom macroblock
1572     AV_COPY128(top_border, src_y + 16*linesize);
1573     if (pixel_shift)
1574         AV_COPY128(top_border+16, src_y+16*linesize+16);
1575
1576     if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
1577         if(chroma444){
1578             if (pixel_shift){
1579                 AV_COPY128(top_border+32, src_cb + 16*linesize);
1580                 AV_COPY128(top_border+48, src_cb + 16*linesize+16);
1581                 AV_COPY128(top_border+64, src_cr + 16*linesize);
1582                 AV_COPY128(top_border+80, src_cr + 16*linesize+16);
1583             } else {
1584                 AV_COPY128(top_border+16, src_cb + 16*linesize);
1585                 AV_COPY128(top_border+32, src_cr + 16*linesize);
1586             }
1587         } else if(chroma422) {
1588             if (pixel_shift) {
1589                 AV_COPY128(top_border+32, src_cb+16*uvlinesize);
1590                 AV_COPY128(top_border+48, src_cr+16*uvlinesize);
1591             } else {
1592                 AV_COPY64(top_border+16, src_cb+16*uvlinesize);
1593                 AV_COPY64(top_border+24, src_cr+16*uvlinesize);
1594             }
1595         } else {
1596             if (pixel_shift) {
1597                 AV_COPY128(top_border+32, src_cb+8*uvlinesize);
1598                 AV_COPY128(top_border+48, src_cr+8*uvlinesize);
1599             } else {
1600                 AV_COPY64(top_border+16, src_cb+8*uvlinesize);
1601                 AV_COPY64(top_border+24, src_cr+8*uvlinesize);
1602             }
1603         }
1604     }
1605 }
1606
1607 static av_always_inline void xchg_mb_border(H264Context *h, uint8_t *src_y,
1608                                   uint8_t *src_cb, uint8_t *src_cr,
1609                                   int linesize, int uvlinesize,
1610                                   int xchg, int chroma444,
1611                                   int simple, int pixel_shift){
1612     MpegEncContext * const s = &h->s;
1613     int deblock_topleft;
1614     int deblock_top;
1615     int top_idx = 1;
1616     uint8_t *top_border_m1;
1617     uint8_t *top_border;
1618
1619     if(!simple && FRAME_MBAFF){
1620         if(s->mb_y&1){
1621             if(!MB_MBAFF)
1622                 return;
1623         }else{
1624             top_idx = MB_MBAFF ? 0 : 1;
1625         }
1626     }
1627
1628     if(h->deblocking_filter == 2) {
1629         deblock_topleft = h->slice_table[h->mb_xy - 1 - s->mb_stride] == h->slice_num;
1630         deblock_top     = h->top_type;
1631     } else {
1632         deblock_topleft = (s->mb_x > 0);
1633         deblock_top     = (s->mb_y > !!MB_FIELD);
1634     }
1635
1636     src_y  -=   linesize + 1 + pixel_shift;
1637     src_cb -= uvlinesize + 1 + pixel_shift;
1638     src_cr -= uvlinesize + 1 + pixel_shift;
1639
1640     top_border_m1 = h->top_borders[top_idx][s->mb_x-1];
1641     top_border    = h->top_borders[top_idx][s->mb_x];
1642
1643 #define XCHG(a,b,xchg)\
1644     if (pixel_shift) {\
1645         if (xchg) {\
1646             AV_SWAP64(b+0,a+0);\
1647             AV_SWAP64(b+8,a+8);\
1648         } else {\
1649             AV_COPY128(b,a); \
1650         }\
1651     } else \
1652 if (xchg) AV_SWAP64(b,a);\
1653 else      AV_COPY64(b,a);
1654
1655     if(deblock_top){
1656         if(deblock_topleft){
1657             XCHG(top_border_m1 + (8 << pixel_shift), src_y - (7 << pixel_shift), 1);
1658         }
1659         XCHG(top_border + (0 << pixel_shift), src_y + (1 << pixel_shift), xchg);
1660         XCHG(top_border + (8 << pixel_shift), src_y + (9 << pixel_shift), 1);
1661         if(s->mb_x+1 < s->mb_width){
1662             XCHG(h->top_borders[top_idx][s->mb_x+1], src_y + (17 << pixel_shift), 1);
1663         }
1664     }
1665     if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
1666         if(chroma444){
1667             if(deblock_topleft){
1668                 XCHG(top_border_m1 + (24 << pixel_shift), src_cb - (7 << pixel_shift), 1);
1669                 XCHG(top_border_m1 + (40 << pixel_shift), src_cr - (7 << pixel_shift), 1);
1670             }
1671             XCHG(top_border + (16 << pixel_shift), src_cb + (1 << pixel_shift), xchg);
1672             XCHG(top_border + (24 << pixel_shift), src_cb + (9 << pixel_shift), 1);
1673             XCHG(top_border + (32 << pixel_shift), src_cr + (1 << pixel_shift), xchg);
1674             XCHG(top_border + (40 << pixel_shift), src_cr + (9 << pixel_shift), 1);
1675             if(s->mb_x+1 < s->mb_width){
1676                 XCHG(h->top_borders[top_idx][s->mb_x+1] + (16 << pixel_shift), src_cb + (17 << pixel_shift), 1);
1677                 XCHG(h->top_borders[top_idx][s->mb_x+1] + (32 << pixel_shift), src_cr + (17 << pixel_shift), 1);
1678             }
1679         } else {
1680             if(deblock_top){
1681                 if(deblock_topleft){
1682                     XCHG(top_border_m1 + (16 << pixel_shift), src_cb - (7 << pixel_shift), 1);
1683                     XCHG(top_border_m1 + (24 << pixel_shift), src_cr - (7 << pixel_shift), 1);
1684                 }
1685                 XCHG(top_border + (16 << pixel_shift), src_cb+1+pixel_shift, 1);
1686                 XCHG(top_border + (24 << pixel_shift), src_cr+1+pixel_shift, 1);
1687             }
1688         }
1689     }
1690 }
1691
1692 static av_always_inline int dctcoef_get(DCTELEM *mb, int high_bit_depth, int index) {
1693     if (high_bit_depth) {
1694         return AV_RN32A(((int32_t*)mb) + index);
1695     } else
1696         return AV_RN16A(mb + index);
1697 }
1698
1699 static av_always_inline void dctcoef_set(DCTELEM *mb, int high_bit_depth, int index, int value) {
1700     if (high_bit_depth) {
1701         AV_WN32A(((int32_t*)mb) + index, value);
1702     } else
1703         AV_WN16A(mb + index, value);
1704 }
1705
1706 static av_always_inline void hl_decode_mb_predict_luma(H264Context *h, int mb_type, int is_h264, int simple, int transform_bypass,
1707                                                        int pixel_shift, int *block_offset, int linesize, uint8_t *dest_y, int p)
1708 {
1709     MpegEncContext * const s = &h->s;
1710     void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
1711     void (*idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
1712     int i;
1713     int qscale = p == 0 ? s->qscale : h->chroma_qp[p-1];
1714     block_offset += 16*p;
1715     if(IS_INTRA4x4(mb_type)){
1716         if(simple || !s->encoding){
1717             if(IS_8x8DCT(mb_type)){
1718                 if(transform_bypass){
1719                     idct_dc_add =
1720                     idct_add    = s->dsp.add_pixels8;
1721                 }else{
1722                     idct_dc_add = h->h264dsp.h264_idct8_dc_add;
1723                     idct_add    = h->h264dsp.h264_idct8_add;
1724                 }
1725                 for(i=0; i<16; i+=4){
1726                     uint8_t * const ptr= dest_y + block_offset[i];
1727                     const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
1728                     if(transform_bypass && h->sps.profile_idc==244 && dir<=1){
1729                         h->hpc.pred8x8l_add[dir](ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1730                     }else{
1731                         const int nnz = h->non_zero_count_cache[ scan8[i+p*16] ];
1732                         h->hpc.pred8x8l[ dir ](ptr, (h->topleft_samples_available<<i)&0x8000,
1733                                                     (h->topright_samples_available<<i)&0x4000, linesize);
1734                         if(nnz){
1735                             if(nnz == 1 && dctcoef_get(h->mb, pixel_shift, i*16+p*256))
1736                                 idct_dc_add(ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1737                             else
1738                                 idct_add   (ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1739                         }
1740                     }
1741                 }
1742             }else{
1743                 if(transform_bypass){
1744                     idct_dc_add =
1745                     idct_add    = s->dsp.add_pixels4;
1746                 }else{
1747                     idct_dc_add = h->h264dsp.h264_idct_dc_add;
1748                     idct_add    = h->h264dsp.h264_idct_add;
1749                 }
1750                 for(i=0; i<16; i++){
1751                     uint8_t * const ptr= dest_y + block_offset[i];
1752                     const int dir= h->intra4x4_pred_mode_cache[ scan8[i] ];
1753
1754                     if(transform_bypass && h->sps.profile_idc==244 && dir<=1){
1755                         h->hpc.pred4x4_add[dir](ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1756                     }else{
1757                         uint8_t *topright;
1758                         int nnz, tr;
1759                         uint64_t tr_high;
1760                         if(dir == DIAG_DOWN_LEFT_PRED || dir == VERT_LEFT_PRED){
1761                             const int topright_avail= (h->topright_samples_available<<i)&0x8000;
1762                             assert(s->mb_y || linesize <= block_offset[i]);
1763                             if(!topright_avail){
1764                                 if (pixel_shift) {
1765                                     tr_high= ((uint16_t*)ptr)[3 - linesize/2]*0x0001000100010001ULL;
1766                                     topright= (uint8_t*) &tr_high;
1767                                 } else {
1768                                     tr= ptr[3 - linesize]*0x01010101u;
1769                                     topright= (uint8_t*) &tr;
1770                                 }
1771                             }else
1772                                 topright= ptr + (4 << pixel_shift) - linesize;
1773                         }else
1774                             topright= NULL;
1775
1776                         h->hpc.pred4x4[ dir ](ptr, topright, linesize);
1777                         nnz = h->non_zero_count_cache[ scan8[i+p*16] ];
1778                         if(nnz){
1779                             if(is_h264){
1780                                 if(nnz == 1 && dctcoef_get(h->mb, pixel_shift, i*16+p*256))
1781                                     idct_dc_add(ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1782                                 else
1783                                     idct_add   (ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1784                             }else
1785                                 ff_svq3_add_idct_c(ptr, h->mb + i*16+p*256, linesize, qscale, 0);
1786                         }
1787                     }
1788                 }
1789             }
1790         }
1791     }else{
1792         h->hpc.pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
1793         if(is_h264){
1794             if(h->non_zero_count_cache[ scan8[LUMA_DC_BLOCK_INDEX+p] ]){
1795                 if(!transform_bypass)
1796                     h->h264dsp.h264_luma_dc_dequant_idct(h->mb+(p*256 << pixel_shift), h->mb_luma_dc[p], h->dequant4_coeff[p][qscale][0]);
1797                 else{
1798                     static const uint8_t dc_mapping[16] = { 0*16, 1*16, 4*16, 5*16, 2*16, 3*16, 6*16, 7*16,
1799                                                             8*16, 9*16,12*16,13*16,10*16,11*16,14*16,15*16};
1800                     for(i = 0; i < 16; i++)
1801                         dctcoef_set(h->mb+(p*256 << pixel_shift), pixel_shift, dc_mapping[i], dctcoef_get(h->mb_luma_dc[p], pixel_shift, i));
1802                 }
1803             }
1804         }else
1805             ff_svq3_luma_dc_dequant_idct_c(h->mb+p*256, h->mb_luma_dc[p], qscale);
1806     }
1807 }
1808
1809 static av_always_inline void hl_decode_mb_idct_luma(H264Context *h, int mb_type, int is_h264, int simple, int transform_bypass,
1810                                                     int pixel_shift, int *block_offset, int linesize, uint8_t *dest_y, int p)
1811 {
1812     MpegEncContext * const s = &h->s;
1813     void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
1814     int i;
1815     block_offset += 16*p;
1816     if(!IS_INTRA4x4(mb_type)){
1817         if(is_h264){
1818             if(IS_INTRA16x16(mb_type)){
1819                 if(transform_bypass){
1820                     if(h->sps.profile_idc==244 && (h->intra16x16_pred_mode==VERT_PRED8x8 || h->intra16x16_pred_mode==HOR_PRED8x8)){
1821                         h->hpc.pred16x16_add[h->intra16x16_pred_mode](dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize);
1822                     }else{
1823                         for(i=0; i<16; i++){
1824                             if(h->non_zero_count_cache[ scan8[i+p*16] ] || dctcoef_get(h->mb, pixel_shift, i*16+p*256))
1825                                 s->dsp.add_pixels4(dest_y + block_offset[i], h->mb + (i*16+p*256 << pixel_shift), linesize);
1826                         }
1827                     }
1828                 }else{
1829                     h->h264dsp.h264_idct_add16intra(dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize, h->non_zero_count_cache+p*5*8);
1830                 }
1831             }else if(h->cbp&15){
1832                 if(transform_bypass){
1833                     const int di = IS_8x8DCT(mb_type) ? 4 : 1;
1834                     idct_add= IS_8x8DCT(mb_type) ? s->dsp.add_pixels8 : s->dsp.add_pixels4;
1835                     for(i=0; i<16; i+=di){
1836                         if(h->non_zero_count_cache[ scan8[i+p*16] ]){
1837                             idct_add(dest_y + block_offset[i], h->mb + (i*16+p*256 << pixel_shift), linesize);
1838                         }
1839                     }
1840                 }else{
1841                     if(IS_8x8DCT(mb_type)){
1842                         h->h264dsp.h264_idct8_add4(dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize, h->non_zero_count_cache+p*5*8);
1843                     }else{
1844                         h->h264dsp.h264_idct_add16(dest_y, block_offset, h->mb + (p*256 << pixel_shift), linesize, h->non_zero_count_cache+p*5*8);
1845                     }
1846                 }
1847             }
1848         }else{
1849             for(i=0; i<16; i++){
1850                 if(h->non_zero_count_cache[ scan8[i+p*16] ] || h->mb[i*16+p*256]){ //FIXME benchmark weird rule, & below
1851                     uint8_t * const ptr= dest_y + block_offset[i];
1852                     ff_svq3_add_idct_c(ptr, h->mb + i*16 + p*256, linesize, s->qscale, IS_INTRA(mb_type) ? 1 : 0);
1853                 }
1854             }
1855         }
1856     }
1857 }
1858
1859 static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple, int pixel_shift)
1860 {
1861     MpegEncContext * const s = &h->s;
1862     const int mb_x= s->mb_x;
1863     const int mb_y= s->mb_y;
1864     const int mb_xy= h->mb_xy;
1865     const int mb_type = s->current_picture.f.mb_type[mb_xy];
1866     uint8_t  *dest_y, *dest_cb, *dest_cr;
1867     int linesize, uvlinesize /*dct_offset*/;
1868     int i, j;
1869     int *block_offset = &h->block_offset[0];
1870     const int transform_bypass = !simple && (s->qscale == 0 && h->sps.transform_bypass);
1871     /* is_h264 should always be true if SVQ3 is disabled. */
1872     const int is_h264 = !CONFIG_SVQ3_DECODER || simple || s->codec_id == CODEC_ID_H264;
1873     void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
1874     const int block_h = 16 >> s->chroma_y_shift;
1875     const int chroma422 = CHROMA422;
1876
1877     dest_y  = s->current_picture.f.data[0] + ((mb_x << pixel_shift) + mb_y * s->linesize  ) * 16;
1878     dest_cb = s->current_picture.f.data[1] + (mb_x << pixel_shift)*8 + mb_y * s->uvlinesize * block_h;
1879     dest_cr = s->current_picture.f.data[2] + (mb_x << pixel_shift)*8 + mb_y * s->uvlinesize * block_h;
1880
1881     s->dsp.prefetch(dest_y + (s->mb_x&3)*4*s->linesize + (64 << pixel_shift), s->linesize, 4);
1882     s->dsp.prefetch(dest_cb + (s->mb_x&7)*s->uvlinesize + (64 << pixel_shift), dest_cr - dest_cb, 2);
1883
1884     h->list_counts[mb_xy]= h->list_count;
1885
1886     if (!simple && MB_FIELD) {
1887         linesize   = h->mb_linesize   = s->linesize * 2;
1888         uvlinesize = h->mb_uvlinesize = s->uvlinesize * 2;
1889         block_offset = &h->block_offset[48];
1890         if(mb_y&1){ //FIXME move out of this function?
1891             dest_y -= s->linesize*15;
1892             dest_cb-= s->uvlinesize * (block_h - 1);
1893             dest_cr-= s->uvlinesize * (block_h - 1);
1894         }
1895         if(FRAME_MBAFF) {
1896             int list;
1897             for(list=0; list<h->list_count; list++){
1898                 if(!USES_LIST(mb_type, list))
1899                     continue;
1900                 if(IS_16X16(mb_type)){
1901                     int8_t *ref = &h->ref_cache[list][scan8[0]];
1902                     fill_rectangle(ref, 4, 4, 8, (16+*ref)^(s->mb_y&1), 1);
1903                 }else{
1904                     for(i=0; i<16; i+=4){
1905                         int ref = h->ref_cache[list][scan8[i]];
1906                         if(ref >= 0)
1907                             fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
1908                     }
1909                 }
1910             }
1911         }
1912     } else {
1913         linesize   = h->mb_linesize   = s->linesize;
1914         uvlinesize = h->mb_uvlinesize = s->uvlinesize;
1915 //        dct_offset = s->linesize * 16;
1916     }
1917
1918     if (!simple && IS_INTRA_PCM(mb_type)) {
1919         if (pixel_shift) {
1920             const int bit_depth = h->sps.bit_depth_luma;
1921             int j;
1922             GetBitContext gb;
1923             init_get_bits(&gb, (uint8_t*)h->mb, 384*bit_depth);
1924
1925             for (i = 0; i < 16; i++) {
1926                 uint16_t *tmp_y  = (uint16_t*)(dest_y  + i*linesize);
1927                 for (j = 0; j < 16; j++)
1928                     tmp_y[j] = get_bits(&gb, bit_depth);
1929             }
1930             if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
1931                 if (!h->sps.chroma_format_idc) {
1932                     for (i = 0; i < block_h; i++) {
1933                         uint16_t *tmp_cb = (uint16_t*)(dest_cb + i*uvlinesize);
1934                         for (j = 0; j < 8; j++) {
1935                             tmp_cb[j] = 1 << (bit_depth - 1);
1936                         }
1937                     }
1938                     for (i = 0; i < block_h; i++) {
1939                         uint16_t *tmp_cr = (uint16_t*)(dest_cr + i*uvlinesize);
1940                         for (j = 0; j < 8; j++) {
1941                             tmp_cr[j] = 1 << (bit_depth - 1);
1942                         }
1943                     }
1944                 } else {
1945                     for (i = 0; i < block_h; i++) {
1946                         uint16_t *tmp_cb = (uint16_t*)(dest_cb + i*uvlinesize);
1947                         for (j = 0; j < 8; j++)
1948                             tmp_cb[j] = get_bits(&gb, bit_depth);
1949                     }
1950                     for (i = 0; i < block_h; i++) {
1951                         uint16_t *tmp_cr = (uint16_t*)(dest_cr + i*uvlinesize);
1952                         for (j = 0; j < 8; j++)
1953                             tmp_cr[j] = get_bits(&gb, bit_depth);
1954                     }
1955                 }
1956             }
1957         } else {
1958             for (i=0; i<16; i++) {
1959                 memcpy(dest_y + i*  linesize, h->mb       + i*8, 16);
1960             }
1961             if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
1962                 if (!h->sps.chroma_format_idc) {
1963                     for (i = 0; i < block_h; i++) {
1964                         memset(dest_cb + i*uvlinesize, 128, 8);
1965                         memset(dest_cr + i*uvlinesize, 128, 8);
1966                     }
1967                 } else {
1968                     for (i = 0; i < block_h; i++) {
1969                         memcpy(dest_cb + i*uvlinesize, h->mb + 128 + i*4,  8);
1970                         memcpy(dest_cr + i*uvlinesize, h->mb + 160 + i*4,  8);
1971                     }
1972                 }
1973             }
1974         }
1975     } else {
1976         if(IS_INTRA(mb_type)){
1977             if(h->deblocking_filter)
1978                 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 1, 0, simple, pixel_shift);
1979
1980             if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
1981                 h->hpc.pred8x8[ h->chroma_pred_mode ](dest_cb, uvlinesize);
1982                 h->hpc.pred8x8[ h->chroma_pred_mode ](dest_cr, uvlinesize);
1983             }
1984
1985             hl_decode_mb_predict_luma(h, mb_type, is_h264, simple, transform_bypass, pixel_shift, block_offset, linesize, dest_y, 0);
1986
1987             if(h->deblocking_filter)
1988                 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0, 0, simple, pixel_shift);
1989         }else if(is_h264){
1990             if (chroma422) {
1991                 hl_motion_422(h, dest_y, dest_cb, dest_cr,
1992                               s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
1993                               s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
1994                               h->h264dsp.weight_h264_pixels_tab,
1995                               h->h264dsp.biweight_h264_pixels_tab,
1996                               pixel_shift);
1997             } else {
1998                 hl_motion_420(h, dest_y, dest_cb, dest_cr,
1999                               s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
2000                               s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
2001                               h->h264dsp.weight_h264_pixels_tab,
2002                               h->h264dsp.biweight_h264_pixels_tab,
2003                               pixel_shift);
2004             }
2005         }
2006
2007         hl_decode_mb_idct_luma(h, mb_type, is_h264, simple, transform_bypass, pixel_shift, block_offset, linesize, dest_y, 0);
2008
2009         if((simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)) && (h->cbp&0x30)){
2010             uint8_t *dest[2] = {dest_cb, dest_cr};
2011             if(transform_bypass){
2012                 if(IS_INTRA(mb_type) && h->sps.profile_idc==244 && (h->chroma_pred_mode==VERT_PRED8x8 || h->chroma_pred_mode==HOR_PRED8x8)){
2013                     h->hpc.pred8x8_add[h->chroma_pred_mode](dest[0], block_offset + 16, h->mb + (16*16*1 << pixel_shift), uvlinesize);
2014                     h->hpc.pred8x8_add[h->chroma_pred_mode](dest[1], block_offset + 32, h->mb + (16*16*2 << pixel_shift), uvlinesize);
2015                 }else{
2016                     idct_add = s->dsp.add_pixels4;
2017                     for(j=1; j<3; j++){
2018                         for(i=j*16; i<j*16+4; i++){
2019                             if(h->non_zero_count_cache[ scan8[i] ] || dctcoef_get(h->mb, pixel_shift, i*16))
2020                                 idct_add   (dest[j-1] + block_offset[i], h->mb + (i*16 << pixel_shift), uvlinesize);
2021                         }
2022                         if (chroma422) {
2023                             for(i=j*16+4; i<j*16+8; i++){
2024                                 if(h->non_zero_count_cache[ scan8[i+4] ] || dctcoef_get(h->mb, pixel_shift, i*16))
2025                                     idct_add   (dest[j-1] + block_offset[i+4], h->mb + (i*16 << pixel_shift), uvlinesize);
2026                             }
2027                         }
2028                     }
2029                 }
2030             }else{
2031                 if(is_h264){
2032                     int qp[2];
2033                     if (chroma422) {
2034                         qp[0] = h->chroma_qp[0] + 3;
2035                         qp[1] = h->chroma_qp[1] + 3;
2036                     } else {
2037                         qp[0] = h->chroma_qp[0];
2038                         qp[1] = h->chroma_qp[1];
2039                     }
2040                     if(h->non_zero_count_cache[ scan8[CHROMA_DC_BLOCK_INDEX+0] ])
2041                         h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + (16*16*1 << pixel_shift), h->dequant4_coeff[IS_INTRA(mb_type) ? 1:4][qp[0]][0]);
2042                     if(h->non_zero_count_cache[ scan8[CHROMA_DC_BLOCK_INDEX+1] ])
2043                         h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + (16*16*2 << pixel_shift), h->dequant4_coeff[IS_INTRA(mb_type) ? 2:5][qp[1]][0]);
2044                     h->h264dsp.h264_idct_add8(dest, block_offset,
2045                                               h->mb, uvlinesize,
2046                                               h->non_zero_count_cache);
2047                 }else{
2048                     h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + 16*16*1, h->dequant4_coeff[IS_INTRA(mb_type) ? 1:4][h->chroma_qp[0]][0]);
2049                     h->h264dsp.h264_chroma_dc_dequant_idct(h->mb + 16*16*2, h->dequant4_coeff[IS_INTRA(mb_type) ? 2:5][h->chroma_qp[1]][0]);
2050                     for(j=1; j<3; j++){
2051                         for(i=j*16; i<j*16+4; i++){
2052                             if(h->non_zero_count_cache[ scan8[i] ] || h->mb[i*16]){
2053                                 uint8_t * const ptr= dest[j-1] + block_offset[i];
2054                                 ff_svq3_add_idct_c(ptr, h->mb + i*16, uvlinesize, ff_h264_chroma_qp[0][s->qscale + 12] - 12, 2);
2055                             }
2056                         }
2057                     }
2058                 }
2059             }
2060         }
2061     }
2062     if(h->cbp || IS_INTRA(mb_type))
2063     {
2064         s->dsp.clear_blocks(h->mb);
2065         s->dsp.clear_blocks(h->mb+(24*16<<pixel_shift));
2066     }
2067 }
2068
2069 static av_always_inline void hl_decode_mb_444_internal(H264Context *h, int simple, int pixel_shift){
2070     MpegEncContext * const s = &h->s;
2071     const int mb_x= s->mb_x;
2072     const int mb_y= s->mb_y;
2073     const int mb_xy= h->mb_xy;
2074     const int mb_type = s->current_picture.f.mb_type[mb_xy];
2075     uint8_t  *dest[3];
2076     int linesize;
2077     int i, j, p;
2078     int *block_offset = &h->block_offset[0];
2079     const int transform_bypass = !simple && (s->qscale == 0 && h->sps.transform_bypass);
2080     const int plane_count = (simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)) ? 3 : 1;
2081
2082     for (p = 0; p < plane_count; p++)
2083     {
2084         dest[p] = s->current_picture.f.data[p] + ((mb_x << pixel_shift) + mb_y * s->linesize) * 16;
2085         s->dsp.prefetch(dest[p] + (s->mb_x&3)*4*s->linesize + (64 << pixel_shift), s->linesize, 4);
2086     }
2087
2088     h->list_counts[mb_xy]= h->list_count;
2089
2090     if (!simple && MB_FIELD) {
2091         linesize   = h->mb_linesize = h->mb_uvlinesize = s->linesize * 2;
2092         block_offset = &h->block_offset[48];
2093         if(mb_y&1) //FIXME move out of this function?
2094             for (p = 0; p < 3; p++)
2095                 dest[p] -= s->linesize*15;
2096         if(FRAME_MBAFF) {
2097             int list;
2098             for(list=0; list<h->list_count; list++){
2099                 if(!USES_LIST(mb_type, list))
2100                     continue;
2101                 if(IS_16X16(mb_type)){
2102                     int8_t *ref = &h->ref_cache[list][scan8[0]];
2103                     fill_rectangle(ref, 4, 4, 8, (16+*ref)^(s->mb_y&1), 1);
2104                 }else{
2105                     for(i=0; i<16; i+=4){
2106                         int ref = h->ref_cache[list][scan8[i]];
2107                         if(ref >= 0)
2108                             fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
2109                     }
2110                 }
2111             }
2112         }
2113     } else {
2114         linesize   = h->mb_linesize = h->mb_uvlinesize = s->linesize;
2115     }
2116
2117     if (!simple && IS_INTRA_PCM(mb_type)) {
2118         if (pixel_shift) {
2119             const int bit_depth = h->sps.bit_depth_luma;
2120             GetBitContext gb;
2121             init_get_bits(&gb, (uint8_t*)h->mb, 768*bit_depth);
2122
2123             for (p = 0; p < plane_count; p++) {
2124                 for (i = 0; i < 16; i++) {
2125                     uint16_t *tmp = (uint16_t*)(dest[p] + i*linesize);
2126                     for (j = 0; j < 16; j++)
2127                         tmp[j] = get_bits(&gb, bit_depth);
2128                 }
2129             }
2130         } else {
2131             for (p = 0; p < plane_count; p++) {
2132                 for (i = 0; i < 16; i++) {
2133                     memcpy(dest[p] + i*linesize, h->mb + p*128 + i*8, 16);
2134                 }
2135             }
2136         }
2137     } else {
2138         if(IS_INTRA(mb_type)){
2139             if(h->deblocking_filter)
2140                 xchg_mb_border(h, dest[0], dest[1], dest[2], linesize, linesize, 1, 1, simple, pixel_shift);
2141
2142             for (p = 0; p < plane_count; p++)
2143                 hl_decode_mb_predict_luma(h, mb_type, 1, simple, transform_bypass, pixel_shift, block_offset, linesize, dest[p], p);
2144
2145             if(h->deblocking_filter)
2146                 xchg_mb_border(h, dest[0], dest[1], dest[2], linesize, linesize, 0, 1, simple, pixel_shift);
2147         }else{
2148             hl_motion(h, dest[0], dest[1], dest[2],
2149                       s->me.qpel_put, s->dsp.put_h264_chroma_pixels_tab,
2150                       s->me.qpel_avg, s->dsp.avg_h264_chroma_pixels_tab,
2151                       h->h264dsp.weight_h264_pixels_tab,
2152                       h->h264dsp.biweight_h264_pixels_tab, pixel_shift, 3);
2153         }
2154
2155         for (p = 0; p < plane_count; p++)
2156             hl_decode_mb_idct_luma(h, mb_type, 1, simple, transform_bypass, pixel_shift, block_offset, linesize, dest[p], p);
2157     }
2158     if(h->cbp || IS_INTRA(mb_type))
2159     {
2160         s->dsp.clear_blocks(h->mb);
2161         s->dsp.clear_blocks(h->mb+(24*16<<pixel_shift));
2162     }
2163 }
2164
2165 /**
2166  * Process a macroblock; this case avoids checks for expensive uncommon cases.
2167  */
2168 #define hl_decode_mb_simple(sh, bits) \
2169 static void hl_decode_mb_simple_ ## bits(H264Context *h){ \
2170     hl_decode_mb_internal(h, 1, sh); \
2171 }
2172 hl_decode_mb_simple(0, 8);
2173 hl_decode_mb_simple(1, 16);
2174
2175 /**
2176  * Process a macroblock; this handles edge cases, such as interlacing.
2177  */
2178 static void av_noinline hl_decode_mb_complex(H264Context *h){
2179     hl_decode_mb_internal(h, 0, h->pixel_shift);
2180 }
2181
2182 static void av_noinline hl_decode_mb_444_complex(H264Context *h){
2183     hl_decode_mb_444_internal(h, 0, h->pixel_shift);
2184 }
2185
2186 static void av_noinline hl_decode_mb_444_simple(H264Context *h){
2187     hl_decode_mb_444_internal(h, 1, 0);
2188 }
2189
2190 void ff_h264_hl_decode_mb(H264Context *h){
2191     MpegEncContext * const s = &h->s;
2192     const int mb_xy= h->mb_xy;
2193     const int mb_type = s->current_picture.f.mb_type[mb_xy];
2194     int is_complex = CONFIG_SMALL || h->is_complex || IS_INTRA_PCM(mb_type) || s->qscale == 0;
2195
2196     if (CHROMA444) {
2197         if(is_complex || h->pixel_shift)
2198             hl_decode_mb_444_complex(h);
2199         else
2200             hl_decode_mb_444_simple(h);
2201     } else if (is_complex) {
2202         hl_decode_mb_complex(h);
2203     } else if (h->pixel_shift) {
2204         hl_decode_mb_simple_16(h);
2205     } else
2206         hl_decode_mb_simple_8(h);
2207 }
2208
2209 static int pred_weight_table(H264Context *h){
2210     MpegEncContext * const s = &h->s;
2211     int list, i;
2212     int luma_def, chroma_def;
2213
2214     h->use_weight= 0;
2215     h->use_weight_chroma= 0;
2216     h->luma_log2_weight_denom= get_ue_golomb(&s->gb);
2217     if(h->sps.chroma_format_idc)
2218         h->chroma_log2_weight_denom= get_ue_golomb(&s->gb);
2219     luma_def = 1<<h->luma_log2_weight_denom;
2220     chroma_def = 1<<h->chroma_log2_weight_denom;
2221
2222     for(list=0; list<2; list++){
2223         h->luma_weight_flag[list]   = 0;
2224         h->chroma_weight_flag[list] = 0;
2225         for(i=0; i<h->ref_count[list]; i++){
2226             int luma_weight_flag, chroma_weight_flag;
2227
2228             luma_weight_flag= get_bits1(&s->gb);
2229             if(luma_weight_flag){
2230                 h->luma_weight[i][list][0]= get_se_golomb(&s->gb);
2231                 h->luma_weight[i][list][1]= get_se_golomb(&s->gb);
2232                 if(   h->luma_weight[i][list][0] != luma_def
2233                    || h->luma_weight[i][list][1] != 0) {
2234                     h->use_weight= 1;
2235                     h->luma_weight_flag[list]= 1;
2236                 }
2237             }else{
2238                 h->luma_weight[i][list][0]= luma_def;
2239                 h->luma_weight[i][list][1]= 0;
2240             }
2241
2242             if(h->sps.chroma_format_idc){
2243                 chroma_weight_flag= get_bits1(&s->gb);
2244                 if(chroma_weight_flag){
2245                     int j;
2246                     for(j=0; j<2; j++){
2247                         h->chroma_weight[i][list][j][0]= get_se_golomb(&s->gb);
2248                         h->chroma_weight[i][list][j][1]= get_se_golomb(&s->gb);
2249                         if(   h->chroma_weight[i][list][j][0] != chroma_def
2250                            || h->chroma_weight[i][list][j][1] != 0) {
2251                             h->use_weight_chroma= 1;
2252                             h->chroma_weight_flag[list]= 1;
2253                         }
2254                     }
2255                 }else{
2256                     int j;
2257                     for(j=0; j<2; j++){
2258                         h->chroma_weight[i][list][j][0]= chroma_def;
2259                         h->chroma_weight[i][list][j][1]= 0;
2260                     }
2261                 }
2262             }
2263         }
2264         if(h->slice_type_nos != AV_PICTURE_TYPE_B) break;
2265     }
2266     h->use_weight= h->use_weight || h->use_weight_chroma;
2267     return 0;
2268 }
2269
2270 /**
2271  * Initialize implicit_weight table.
2272  * @param field  0/1 initialize the weight for interlaced MBAFF
2273  *                -1 initializes the rest
2274  */
2275 static void implicit_weight_table(H264Context *h, int field){
2276     MpegEncContext * const s = &h->s;
2277     int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
2278
2279     for (i = 0; i < 2; i++) {
2280         h->luma_weight_flag[i]   = 0;
2281         h->chroma_weight_flag[i] = 0;
2282     }
2283
2284     if(field < 0){
2285         if (s->picture_structure == PICT_FRAME) {
2286             cur_poc = s->current_picture_ptr->poc;
2287         } else {
2288             cur_poc = s->current_picture_ptr->field_poc[s->picture_structure - 1];
2289         }
2290     if(   h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF
2291        && h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2*cur_poc){
2292         h->use_weight= 0;
2293         h->use_weight_chroma= 0;
2294         return;
2295     }
2296         ref_start= 0;
2297         ref_count0= h->ref_count[0];
2298         ref_count1= h->ref_count[1];
2299     }else{
2300         cur_poc = s->current_picture_ptr->field_poc[field];
2301         ref_start= 16;
2302         ref_count0= 16+2*h->ref_count[0];
2303         ref_count1= 16+2*h->ref_count[1];
2304     }
2305
2306     h->use_weight= 2;
2307     h->use_weight_chroma= 2;
2308     h->luma_log2_weight_denom= 5;
2309     h->chroma_log2_weight_denom= 5;
2310
2311     for(ref0=ref_start; ref0 < ref_count0; ref0++){
2312         int poc0 = h->ref_list[0][ref0].poc;
2313         for(ref1=ref_start; ref1 < ref_count1; ref1++){
2314             int w = 32;
2315             if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
2316                 int poc1 = h->ref_list[1][ref1].poc;
2317                 int td = av_clip(poc1 - poc0, -128, 127);
2318                 if(td){
2319                     int tb = av_clip(cur_poc - poc0, -128, 127);
2320                     int tx = (16384 + (FFABS(td) >> 1)) / td;
2321                     int dist_scale_factor = (tb*tx + 32) >> 8;
2322                     if(dist_scale_factor >= -64 && dist_scale_factor <= 128)
2323                         w = 64 - dist_scale_factor;
2324                 }
2325             }
2326             if(field<0){
2327                 h->implicit_weight[ref0][ref1][0]=
2328                 h->implicit_weight[ref0][ref1][1]= w;
2329             }else{
2330                 h->implicit_weight[ref0][ref1][field]=w;
2331             }
2332         }
2333     }
2334 }
2335
2336 /**
2337  * instantaneous decoder refresh.
2338  */
2339 static void idr(H264Context *h){
2340     ff_h264_remove_all_refs(h);
2341     h->prev_frame_num= 0;
2342     h->prev_frame_num_offset= 0;
2343     h->prev_poc_msb=
2344     h->prev_poc_lsb= 0;
2345 }
2346
2347 /* forget old pics after a seek */
2348 static void flush_dpb(AVCodecContext *avctx){
2349     H264Context *h= avctx->priv_data;
2350     int i;
2351     for(i=0; i<MAX_DELAYED_PIC_COUNT; i++) {
2352         if(h->delayed_pic[i])
2353             h->delayed_pic[i]->f.reference = 0;
2354         h->delayed_pic[i]= NULL;
2355     }
2356     h->outputed_poc=h->next_outputed_poc= INT_MIN;
2357     h->prev_interlaced_frame = 1;
2358     idr(h);
2359     if(h->s.current_picture_ptr)
2360         h->s.current_picture_ptr->f.reference = 0;
2361     h->s.first_field= 0;
2362     ff_h264_reset_sei(h);
2363     ff_mpeg_flush(avctx);
2364 }
2365
2366 static int init_poc(H264Context *h){
2367     MpegEncContext * const s = &h->s;
2368     const int max_frame_num= 1<<h->sps.log2_max_frame_num;
2369     int field_poc[2];
2370     Picture *cur = s->current_picture_ptr;
2371
2372     h->frame_num_offset= h->prev_frame_num_offset;
2373     if(h->frame_num < h->prev_frame_num)
2374         h->frame_num_offset += max_frame_num;
2375
2376     if(h->sps.poc_type==0){
2377         const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb;
2378
2379         if     (h->poc_lsb < h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb >= max_poc_lsb/2)
2380             h->poc_msb = h->prev_poc_msb + max_poc_lsb;
2381         else if(h->poc_lsb > h->prev_poc_lsb && h->prev_poc_lsb - h->poc_lsb < -max_poc_lsb/2)
2382             h->poc_msb = h->prev_poc_msb - max_poc_lsb;
2383         else
2384             h->poc_msb = h->prev_poc_msb;
2385 //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb);
2386         field_poc[0] =
2387         field_poc[1] = h->poc_msb + h->poc_lsb;
2388         if(s->picture_structure == PICT_FRAME)
2389             field_poc[1] += h->delta_poc_bottom;
2390     }else if(h->sps.poc_type==1){
2391         int abs_frame_num, expected_delta_per_poc_cycle, expectedpoc;
2392         int i;
2393
2394         if(h->sps.poc_cycle_length != 0)
2395             abs_frame_num = h->frame_num_offset + h->frame_num;
2396         else
2397             abs_frame_num = 0;
2398
2399         if(h->nal_ref_idc==0 && abs_frame_num > 0)
2400             abs_frame_num--;
2401
2402         expected_delta_per_poc_cycle = 0;
2403         for(i=0; i < h->sps.poc_cycle_length; i++)
2404             expected_delta_per_poc_cycle += h->sps.offset_for_ref_frame[ i ]; //FIXME integrate during sps parse
2405
2406         if(abs_frame_num > 0){
2407             int poc_cycle_cnt          = (abs_frame_num - 1) / h->sps.poc_cycle_length;
2408             int frame_num_in_poc_cycle = (abs_frame_num - 1) % h->sps.poc_cycle_length;
2409
2410             expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
2411             for(i = 0; i <= frame_num_in_poc_cycle; i++)
2412                 expectedpoc = expectedpoc + h->sps.offset_for_ref_frame[ i ];
2413         } else
2414             expectedpoc = 0;
2415
2416         if(h->nal_ref_idc == 0)
2417             expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
2418
2419         field_poc[0] = expectedpoc + h->delta_poc[0];
2420         field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
2421
2422         if(s->picture_structure == PICT_FRAME)
2423             field_poc[1] += h->delta_poc[1];
2424     }else{
2425         int poc= 2*(h->frame_num_offset + h->frame_num);
2426
2427         if(!h->nal_ref_idc)
2428             poc--;
2429
2430         field_poc[0]= poc;
2431         field_poc[1]= poc;
2432     }
2433
2434     if(s->picture_structure != PICT_BOTTOM_FIELD)
2435         s->current_picture_ptr->field_poc[0]= field_poc[0];
2436     if(s->picture_structure != PICT_TOP_FIELD)
2437         s->current_picture_ptr->field_poc[1]= field_poc[1];
2438     cur->poc= FFMIN(cur->field_poc[0], cur->field_poc[1]);
2439
2440     return 0;
2441 }
2442
2443
2444 /**
2445  * initialize scan tables
2446  */
2447 static void init_scan_tables(H264Context *h){
2448     int i;
2449     for(i=0; i<16; i++){
2450 #define T(x) (x>>2) | ((x<<2) & 0xF)
2451         h->zigzag_scan[i] = T(zigzag_scan[i]);
2452         h-> field_scan[i] = T( field_scan[i]);
2453 #undef T
2454     }
2455     for(i=0; i<64; i++){
2456 #define T(x) (x>>3) | ((x&7)<<3)
2457         h->zigzag_scan8x8[i]       = T(ff_zigzag_direct[i]);
2458         h->zigzag_scan8x8_cavlc[i] = T(zigzag_scan8x8_cavlc[i]);
2459         h->field_scan8x8[i]        = T(field_scan8x8[i]);
2460         h->field_scan8x8_cavlc[i]  = T(field_scan8x8_cavlc[i]);
2461 #undef T
2462     }
2463     if(h->sps.transform_bypass){ //FIXME same ugly
2464         h->zigzag_scan_q0          = zigzag_scan;
2465         h->zigzag_scan8x8_q0       = ff_zigzag_direct;
2466         h->zigzag_scan8x8_cavlc_q0 = zigzag_scan8x8_cavlc;
2467         h->field_scan_q0           = field_scan;
2468         h->field_scan8x8_q0        = field_scan8x8;
2469         h->field_scan8x8_cavlc_q0  = field_scan8x8_cavlc;
2470     }else{
2471         h->zigzag_scan_q0          = h->zigzag_scan;
2472         h->zigzag_scan8x8_q0       = h->zigzag_scan8x8;
2473         h->zigzag_scan8x8_cavlc_q0 = h->zigzag_scan8x8_cavlc;
2474         h->field_scan_q0           = h->field_scan;
2475         h->field_scan8x8_q0        = h->field_scan8x8;
2476         h->field_scan8x8_cavlc_q0  = h->field_scan8x8_cavlc;
2477     }
2478 }
2479
2480 static int field_end(H264Context *h, int in_setup){
2481     MpegEncContext * const s = &h->s;
2482     AVCodecContext * const avctx= s->avctx;
2483     int err = 0;
2484     s->mb_y= 0;
2485
2486     if (!in_setup && !s->dropable)
2487         ff_thread_report_progress((AVFrame*)s->current_picture_ptr, (16*s->mb_height >> FIELD_PICTURE) - 1,
2488                                  s->picture_structure==PICT_BOTTOM_FIELD);
2489
2490     if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
2491         ff_vdpau_h264_set_reference_frames(s);
2492
2493     if(in_setup || !(avctx->active_thread_type&FF_THREAD_FRAME)){
2494         if(!s->dropable) {
2495             err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
2496             h->prev_poc_msb= h->poc_msb;
2497             h->prev_poc_lsb= h->poc_lsb;
2498         }
2499         h->prev_frame_num_offset= h->frame_num_offset;
2500         h->prev_frame_num= h->frame_num;
2501         h->outputed_poc = h->next_outputed_poc;
2502     }
2503
2504     if (avctx->hwaccel) {
2505         if (avctx->hwaccel->end_frame(avctx) < 0)
2506             av_log(avctx, AV_LOG_ERROR, "hardware accelerator failed to decode picture\n");
2507     }
2508
2509     if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
2510         ff_vdpau_h264_picture_complete(s);
2511
2512     /*
2513      * FIXME: Error handling code does not seem to support interlaced
2514      * when slices span multiple rows
2515      * The ff_er_add_slice calls don't work right for bottom
2516      * fields; they cause massive erroneous error concealing
2517      * Error marking covers both fields (top and bottom).
2518      * This causes a mismatched s->error_count
2519      * and a bad error table. Further, the error count goes to
2520      * INT_MAX when called for bottom field, because mb_y is
2521      * past end by one (callers fault) and resync_mb_y != 0
2522      * causes problems for the first MB line, too.
2523      */
2524     if (!FIELD_PICTURE)
2525         ff_er_frame_end(s);
2526
2527     MPV_frame_end(s);
2528
2529     h->current_slice=0;
2530
2531     return err;
2532 }
2533
2534 /**
2535  * Replicate H264 "master" context to thread contexts.
2536  */
2537 static void clone_slice(H264Context *dst, H264Context *src)
2538 {
2539     memcpy(dst->block_offset,     src->block_offset, sizeof(dst->block_offset));
2540     dst->s.current_picture_ptr  = src->s.current_picture_ptr;
2541     dst->s.current_picture      = src->s.current_picture;
2542     dst->s.linesize             = src->s.linesize;
2543     dst->s.uvlinesize           = src->s.uvlinesize;
2544     dst->s.first_field          = src->s.first_field;
2545
2546     dst->prev_poc_msb           = src->prev_poc_msb;
2547     dst->prev_poc_lsb           = src->prev_poc_lsb;
2548     dst->prev_frame_num_offset  = src->prev_frame_num_offset;
2549     dst->prev_frame_num         = src->prev_frame_num;
2550     dst->short_ref_count        = src->short_ref_count;
2551
2552     memcpy(dst->short_ref,        src->short_ref,        sizeof(dst->short_ref));
2553     memcpy(dst->long_ref,         src->long_ref,         sizeof(dst->long_ref));
2554     memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
2555     memcpy(dst->ref_list,         src->ref_list,         sizeof(dst->ref_list));
2556
2557     memcpy(dst->dequant4_coeff,   src->dequant4_coeff,   sizeof(src->dequant4_coeff));
2558     memcpy(dst->dequant8_coeff,   src->dequant8_coeff,   sizeof(src->dequant8_coeff));
2559 }
2560
2561 /**
2562  * computes profile from profile_idc and constraint_set?_flags
2563  *
2564  * @param sps SPS
2565  *
2566  * @return profile as defined by FF_PROFILE_H264_*
2567  */
2568 int ff_h264_get_profile(SPS *sps)
2569 {
2570     int profile = sps->profile_idc;
2571
2572     switch(sps->profile_idc) {
2573     case FF_PROFILE_H264_BASELINE:
2574         // constraint_set1_flag set to 1
2575         profile |= (sps->constraint_set_flags & 1<<1) ? FF_PROFILE_H264_CONSTRAINED : 0;
2576         break;
2577     case FF_PROFILE_H264_HIGH_10:
2578     case FF_PROFILE_H264_HIGH_422:
2579     case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
2580         // constraint_set3_flag set to 1
2581         profile |= (sps->constraint_set_flags & 1<<3) ? FF_PROFILE_H264_INTRA : 0;
2582         break;
2583     }
2584
2585     return profile;
2586 }
2587
2588 /**
2589  * decodes a slice header.
2590  * This will also call MPV_common_init() and frame_start() as needed.
2591  *
2592  * @param h h264context
2593  * @param h0 h264 master context (differs from 'h' when doing sliced based parallel decoding)
2594  *
2595  * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
2596  */
2597 static int decode_slice_header(H264Context *h, H264Context *h0){
2598     MpegEncContext * const s = &h->s;
2599     MpegEncContext * const s0 = &h0->s;
2600     unsigned int first_mb_in_slice;
2601     unsigned int pps_id;
2602     int num_ref_idx_active_override_flag;
2603     unsigned int slice_type, tmp, i, j;
2604     int default_ref_list_done = 0;
2605     int last_pic_structure;
2606
2607     s->dropable= h->nal_ref_idc == 0;
2608
2609     /* FIXME: 2tap qpel isn't implemented for high bit depth. */
2610     if((s->avctx->flags2 & CODEC_FLAG2_FAST) && !h->nal_ref_idc && !h->pixel_shift){
2611         s->me.qpel_put= s->dsp.put_2tap_qpel_pixels_tab;
2612         s->me.qpel_avg= s->dsp.avg_2tap_qpel_pixels_tab;
2613     }else{
2614         s->me.qpel_put= s->dsp.put_h264_qpel_pixels_tab;
2615         s->me.qpel_avg= s->dsp.avg_h264_qpel_pixels_tab;
2616     }
2617
2618     first_mb_in_slice= get_ue_golomb(&s->gb);
2619
2620     if(first_mb_in_slice == 0){ //FIXME better field boundary detection
2621         if(h0->current_slice && FIELD_PICTURE){
2622             field_end(h, 1);
2623         }
2624
2625         h0->current_slice = 0;
2626         if (!s0->first_field)
2627             s->current_picture_ptr= NULL;
2628     }
2629
2630     slice_type= get_ue_golomb_31(&s->gb);
2631     if(slice_type > 9){
2632         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);
2633         return -1;
2634     }
2635     if(slice_type > 4){
2636         slice_type -= 5;
2637         h->slice_type_fixed=1;
2638     }else
2639         h->slice_type_fixed=0;
2640
2641     slice_type= golomb_to_pict_type[ slice_type ];
2642     if (slice_type == AV_PICTURE_TYPE_I
2643         || (h0->current_slice != 0 && slice_type == h0->last_slice_type) ) {
2644         default_ref_list_done = 1;
2645     }
2646     h->slice_type= slice_type;
2647     h->slice_type_nos= slice_type & 3;
2648
2649     s->pict_type= h->slice_type; // to make a few old functions happy, it's wrong though
2650
2651     pps_id= get_ue_golomb(&s->gb);
2652     if(pps_id>=MAX_PPS_COUNT){
2653         av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
2654         return -1;
2655     }
2656     if(!h0->pps_buffers[pps_id]) {
2657         av_log(h->s.avctx, AV_LOG_ERROR, "non-existing PPS %u referenced\n", pps_id);
2658         return -1;
2659     }
2660     h->pps= *h0->pps_buffers[pps_id];
2661
2662     if(!h0->sps_buffers[h->pps.sps_id]) {
2663         av_log(h->s.avctx, AV_LOG_ERROR, "non-existing SPS %u referenced\n", h->pps.sps_id);
2664         return -1;
2665     }
2666     h->sps = *h0->sps_buffers[h->pps.sps_id];
2667
2668     s->avctx->profile = ff_h264_get_profile(&h->sps);
2669     s->avctx->level   = h->sps.level_idc;
2670     s->avctx->refs    = h->sps.ref_frame_count;
2671
2672     if(h == h0 && h->dequant_coeff_pps != pps_id){
2673         h->dequant_coeff_pps = pps_id;
2674         init_dequant_tables(h);
2675     }
2676
2677     s->mb_width= h->sps.mb_width;
2678     s->mb_height= h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
2679
2680     h->b_stride=  s->mb_width*4;
2681
2682     s->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
2683
2684     s->width = 16*s->mb_width - (2>>CHROMA444)*FFMIN(h->sps.crop_right, (8<<CHROMA444)-1);
2685     if(h->sps.frame_mbs_only_flag)
2686         s->height= 16*s->mb_height - (1<<s->chroma_y_shift)*FFMIN(h->sps.crop_bottom, (16>>s->chroma_y_shift)-1);
2687     else
2688         s->height= 16*s->mb_height - (2<<s->chroma_y_shift)*FFMIN(h->sps.crop_bottom, (16>>s->chroma_y_shift)-1);
2689
2690     if (s->context_initialized
2691         && (   s->width != s->avctx->width || s->height != s->avctx->height
2692             || av_cmp_q(h->sps.sar, s->avctx->sample_aspect_ratio))) {
2693         if(h != h0) {
2694             av_log_missing_feature(s->avctx, "Width/height changing with threads is", 0);
2695             return -1;   // width / height changed during parallelized decoding
2696         }
2697         free_tables(h, 0);
2698         flush_dpb(s->avctx);
2699         MPV_common_end(s);
2700     }
2701     if (!s->context_initialized) {
2702         if (h != h0) {
2703             av_log(h->s.avctx, AV_LOG_ERROR, "Cannot (re-)initialize context during parallel decoding.\n");
2704             return -1;
2705         }
2706
2707         avcodec_set_dimensions(s->avctx, s->width, s->height);
2708         s->avctx->sample_aspect_ratio= h->sps.sar;
2709         av_assert0(s->avctx->sample_aspect_ratio.den);
2710
2711         if(h->sps.video_signal_type_present_flag){
2712             s->avctx->color_range = h->sps.full_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
2713             if(h->sps.colour_description_present_flag){
2714                 s->avctx->color_primaries = h->sps.color_primaries;
2715                 s->avctx->color_trc       = h->sps.color_trc;
2716                 s->avctx->colorspace      = h->sps.colorspace;
2717             }
2718         }
2719
2720         if(h->sps.timing_info_present_flag){
2721             int64_t den= h->sps.time_scale;
2722             if(h->x264_build < 44U)
2723                 den *= 2;
2724             av_reduce(&s->avctx->time_base.num, &s->avctx->time_base.den,
2725                       h->sps.num_units_in_tick, den, 1<<30);
2726         }
2727
2728         switch (h->sps.bit_depth_luma) {
2729             case 9 :
2730                 if (CHROMA444)
2731                     s->avctx->pix_fmt = PIX_FMT_YUV444P9;
2732                 else if (CHROMA422)
2733                     s->avctx->pix_fmt = PIX_FMT_YUV422P9;
2734                 else
2735                     s->avctx->pix_fmt = PIX_FMT_YUV420P9;
2736                 break;
2737             case 10 :
2738                 if (CHROMA444)
2739                     s->avctx->pix_fmt = PIX_FMT_YUV444P10;
2740                 else if (CHROMA422)
2741                     s->avctx->pix_fmt = PIX_FMT_YUV422P10;
2742                 else
2743                     s->avctx->pix_fmt = PIX_FMT_YUV420P10;
2744                 break;
2745             default:
2746                 if (CHROMA444){
2747                     s->avctx->pix_fmt = s->avctx->color_range == AVCOL_RANGE_JPEG ? PIX_FMT_YUVJ444P : PIX_FMT_YUV444P;
2748                 } else if (CHROMA422) {
2749                     s->avctx->pix_fmt = s->avctx->color_range == AVCOL_RANGE_JPEG ? PIX_FMT_YUVJ422P : PIX_FMT_YUV422P;
2750                 }else{
2751                     s->avctx->pix_fmt = s->avctx->get_format(s->avctx,
2752                                                              s->avctx->codec->pix_fmts ?
2753                                                              s->avctx->codec->pix_fmts :
2754                                                              s->avctx->color_range == AVCOL_RANGE_JPEG ?
2755                                                              hwaccel_pixfmt_list_h264_jpeg_420 :
2756                                                              ff_hwaccel_pixfmt_list_420);
2757                 }
2758         }
2759
2760         s->avctx->hwaccel = ff_find_hwaccel(s->avctx->codec->id, s->avctx->pix_fmt);
2761
2762         if (MPV_common_init(s) < 0) {
2763             av_log(h->s.avctx, AV_LOG_ERROR, "MPV_common_init() failed.\n");
2764             return -1;
2765         }
2766         s->first_field = 0;
2767         h->prev_interlaced_frame = 1;
2768
2769         init_scan_tables(h);
2770         if (ff_h264_alloc_tables(h) < 0) {
2771             av_log(h->s.avctx, AV_LOG_ERROR, "Could not allocate memory for h264\n");
2772             return AVERROR(ENOMEM);
2773         }
2774
2775         if (!HAVE_THREADS || !(s->avctx->active_thread_type&FF_THREAD_SLICE)) {
2776             if (context_init(h) < 0) {
2777                 av_log(h->s.avctx, AV_LOG_ERROR, "context_init() failed.\n");
2778                 return -1;
2779             }
2780         } else {
2781             for(i = 1; i < s->avctx->thread_count; i++) {
2782                 H264Context *c;
2783                 c = h->thread_context[i] = av_malloc(sizeof(H264Context));
2784                 memcpy(c, h->s.thread_context[i], sizeof(MpegEncContext));
2785                 memset(&c->s + 1, 0, sizeof(H264Context) - sizeof(MpegEncContext));
2786                 c->h264dsp = h->h264dsp;
2787                 c->sps = h->sps;
2788                 c->pps = h->pps;
2789                 c->pixel_shift = h->pixel_shift;
2790                 init_scan_tables(c);
2791                 clone_tables(c, h, i);
2792             }
2793
2794             for(i = 0; i < s->avctx->thread_count; i++)
2795                 if (context_init(h->thread_context[i]) < 0) {
2796                     av_log(h->s.avctx, AV_LOG_ERROR, "context_init() failed.\n");
2797                     return -1;
2798                 }
2799         }
2800     }
2801
2802     h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num);
2803
2804     h->mb_mbaff = 0;
2805     h->mb_aff_frame = 0;
2806     last_pic_structure = s0->picture_structure;
2807     if(h->sps.frame_mbs_only_flag){
2808         s->picture_structure= PICT_FRAME;
2809     }else{
2810         if(get_bits1(&s->gb)) { //field_pic_flag
2811             s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag
2812         } else {
2813             s->picture_structure= PICT_FRAME;
2814             h->mb_aff_frame = h->sps.mb_aff;
2815         }
2816     }
2817     h->mb_field_decoding_flag= s->picture_structure != PICT_FRAME;
2818
2819     if(h0->current_slice == 0){
2820         // Shorten frame num gaps so we don't have to allocate reference frames just to throw them away
2821         if(h->frame_num != h->prev_frame_num) {
2822             int unwrap_prev_frame_num = h->prev_frame_num, max_frame_num = 1<<h->sps.log2_max_frame_num;
2823
2824             if (unwrap_prev_frame_num > h->frame_num) unwrap_prev_frame_num -= max_frame_num;
2825
2826             if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
2827                 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
2828                 if (unwrap_prev_frame_num < 0)
2829                     unwrap_prev_frame_num += max_frame_num;
2830
2831                 h->prev_frame_num = unwrap_prev_frame_num;
2832             }
2833         }
2834
2835         while(h->frame_num !=  h->prev_frame_num &&
2836               h->frame_num != (h->prev_frame_num+1)%(1<<h->sps.log2_max_frame_num)){
2837             Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
2838             av_log(h->s.avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n", h->frame_num, h->prev_frame_num);
2839             if (ff_h264_frame_start(h) < 0)
2840                 return -1;
2841             h->prev_frame_num++;
2842             h->prev_frame_num %= 1<<h->sps.log2_max_frame_num;
2843             s->current_picture_ptr->frame_num= h->prev_frame_num;
2844             ff_thread_report_progress((AVFrame*)s->current_picture_ptr, INT_MAX, 0);
2845             ff_thread_report_progress((AVFrame*)s->current_picture_ptr, INT_MAX, 1);
2846             ff_generate_sliding_window_mmcos(h);
2847             if (ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index) < 0 &&
2848                 (s->avctx->err_recognition & AV_EF_EXPLODE))
2849                 return AVERROR_INVALIDDATA;
2850             /* Error concealment: if a ref is missing, copy the previous ref in its place.
2851              * FIXME: avoiding a memcpy would be nice, but ref handling makes many assumptions
2852              * about there being no actual duplicates.
2853              * FIXME: this doesn't copy padding for out-of-frame motion vectors.  Given we're
2854              * concealing a lost frame, this probably isn't noticable by comparison, but it should
2855              * be fixed. */
2856             if (h->short_ref_count) {
2857                 if (prev) {
2858                     av_image_copy(h->short_ref[0]->f.data, h->short_ref[0]->f.linesize,
2859                                   (const uint8_t**)prev->f.data, prev->f.linesize,
2860                                   s->avctx->pix_fmt, s->mb_width*16, s->mb_height*16);
2861                     h->short_ref[0]->poc = prev->poc+2;
2862                 }
2863                 h->short_ref[0]->frame_num = h->prev_frame_num;
2864             }
2865         }
2866
2867         /* See if we have a decoded first field looking for a pair... */
2868         if (s0->first_field) {
2869             assert(s0->current_picture_ptr);
2870             assert(s0->current_picture_ptr->f.data[0]);
2871             assert(s0->current_picture_ptr->f.reference != DELAYED_PIC_REF);
2872
2873             /* figure out if we have a complementary field pair */
2874             if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {
2875                 /*
2876                  * Previous field is unmatched. Don't display it, but let it
2877                  * remain for reference if marked as such.
2878                  */
2879                 s0->current_picture_ptr = NULL;
2880                 s0->first_field = FIELD_PICTURE;
2881
2882             } else {
2883                 if (h->nal_ref_idc &&
2884                         s0->current_picture_ptr->f.reference &&
2885                         s0->current_picture_ptr->frame_num != h->frame_num) {
2886                     /*
2887                      * This and previous field were reference, but had
2888                      * different frame_nums. Consider this field first in
2889                      * pair. Throw away previous field except for reference
2890                      * purposes.
2891                      */
2892                     s0->first_field = 1;
2893                     s0->current_picture_ptr = NULL;
2894
2895                 } else {
2896                     /* Second field in complementary pair */
2897                     s0->first_field = 0;
2898                 }
2899             }
2900
2901         } else {
2902             /* Frame or first field in a potentially complementary pair */
2903             assert(!s0->current_picture_ptr);
2904             s0->first_field = FIELD_PICTURE;
2905         }
2906
2907         if(!FIELD_PICTURE || s0->first_field) {
2908             if (ff_h264_frame_start(h) < 0) {
2909                 s0->first_field = 0;
2910                 return -1;
2911             }
2912         } else {
2913             ff_release_unused_pictures(s, 0);
2914         }
2915     }
2916     if(h != h0)
2917         clone_slice(h, h0);
2918
2919     s->current_picture_ptr->frame_num= h->frame_num; //FIXME frame_num cleanup
2920
2921     assert(s->mb_num == s->mb_width * s->mb_height);
2922     if(first_mb_in_slice << FIELD_OR_MBAFF_PICTURE >= s->mb_num ||
2923        first_mb_in_slice                    >= s->mb_num){
2924         av_log(h->s.avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
2925         return -1;
2926     }
2927     s->resync_mb_x = s->mb_x = first_mb_in_slice % s->mb_width;
2928     s->resync_mb_y = s->mb_y = (first_mb_in_slice / s->mb_width) << FIELD_OR_MBAFF_PICTURE;
2929     if (s->picture_structure == PICT_BOTTOM_FIELD)
2930         s->resync_mb_y = s->mb_y = s->mb_y + 1;
2931     assert(s->mb_y < s->mb_height);
2932
2933     if(s->picture_structure==PICT_FRAME){
2934         h->curr_pic_num=   h->frame_num;
2935         h->max_pic_num= 1<< h->sps.log2_max_frame_num;
2936     }else{
2937         h->curr_pic_num= 2*h->frame_num + 1;
2938         h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1);
2939     }
2940
2941     if(h->nal_unit_type == NAL_IDR_SLICE){
2942         get_ue_golomb(&s->gb); /* idr_pic_id */
2943     }
2944
2945     if(h->sps.poc_type==0){
2946         h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb);
2947
2948         if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){
2949             h->delta_poc_bottom= get_se_golomb(&s->gb);
2950         }
2951     }
2952
2953     if(h->sps.poc_type==1 && !h->sps.delta_pic_order_always_zero_flag){
2954         h->delta_poc[0]= get_se_golomb(&s->gb);
2955
2956         if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME)
2957             h->delta_poc[1]= get_se_golomb(&s->gb);
2958     }
2959
2960     init_poc(h);
2961
2962     if(h->pps.redundant_pic_cnt_present){
2963         h->redundant_pic_count= get_ue_golomb(&s->gb);
2964     }
2965
2966     //set defaults, might be overridden a few lines later
2967     h->ref_count[0]= h->pps.ref_count[0];
2968     h->ref_count[1]= h->pps.ref_count[1];
2969
2970     if(h->slice_type_nos != AV_PICTURE_TYPE_I){
2971         if(h->slice_type_nos == AV_PICTURE_TYPE_B){
2972             h->direct_spatial_mv_pred= get_bits1(&s->gb);
2973         }
2974         num_ref_idx_active_override_flag= get_bits1(&s->gb);
2975
2976         if(num_ref_idx_active_override_flag){
2977             h->ref_count[0]= get_ue_golomb(&s->gb) + 1;
2978             if(h->slice_type_nos==AV_PICTURE_TYPE_B)
2979                 h->ref_count[1]= get_ue_golomb(&s->gb) + 1;
2980
2981             if(h->ref_count[0]-1 > 32-1 || h->ref_count[1]-1 > 32-1){
2982                 av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow\n");
2983                 h->ref_count[0]= h->ref_count[1]= 1;
2984                 return -1;
2985             }
2986         }
2987         if(h->slice_type_nos == AV_PICTURE_TYPE_B)
2988             h->list_count= 2;
2989         else
2990             h->list_count= 1;
2991     }else
2992         h->list_count= 0;
2993
2994     if(!default_ref_list_done){
2995         ff_h264_fill_default_ref_list(h);
2996     }
2997
2998     if(h->slice_type_nos!=AV_PICTURE_TYPE_I && ff_h264_decode_ref_pic_list_reordering(h) < 0) {
2999         h->ref_count[1]= h->ref_count[0]= 0;
3000         return -1;
3001     }
3002
3003     if(h->slice_type_nos!=AV_PICTURE_TYPE_I){
3004         s->last_picture_ptr= &h->ref_list[0][0];
3005         ff_copy_picture(&s->last_picture, s->last_picture_ptr);
3006     }
3007     if(h->slice_type_nos==AV_PICTURE_TYPE_B){
3008         s->next_picture_ptr= &h->ref_list[1][0];
3009         ff_copy_picture(&s->next_picture, s->next_picture_ptr);
3010     }
3011
3012     if(   (h->pps.weighted_pred          && h->slice_type_nos == AV_PICTURE_TYPE_P )
3013        ||  (h->pps.weighted_bipred_idc==1 && h->slice_type_nos== AV_PICTURE_TYPE_B ) )
3014         pred_weight_table(h);
3015     else if(h->pps.weighted_bipred_idc==2 && h->slice_type_nos== AV_PICTURE_TYPE_B){
3016         implicit_weight_table(h, -1);
3017     }else {
3018         h->use_weight = 0;
3019         for (i = 0; i < 2; i++) {
3020             h->luma_weight_flag[i]   = 0;
3021             h->chroma_weight_flag[i] = 0;
3022         }
3023     }
3024
3025     if(h->nal_ref_idc && ff_h264_decode_ref_pic_marking(h0, &s->gb) < 0 &&
3026        (s->avctx->err_recognition & AV_EF_EXPLODE))
3027         return AVERROR_INVALIDDATA;
3028
3029     if(FRAME_MBAFF){
3030         ff_h264_fill_mbaff_ref_list(h);
3031
3032         if(h->pps.weighted_bipred_idc==2 && h->slice_type_nos== AV_PICTURE_TYPE_B){
3033             implicit_weight_table(h, 0);
3034             implicit_weight_table(h, 1);
3035         }
3036     }
3037
3038     if(h->slice_type_nos==AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
3039         ff_h264_direct_dist_scale_factor(h);
3040     ff_h264_direct_ref_list_init(h);
3041
3042     if( h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac ){
3043         tmp = get_ue_golomb_31(&s->gb);
3044         if(tmp > 2){
3045             av_log(s->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
3046             return -1;
3047         }
3048         h->cabac_init_idc= tmp;
3049     }
3050
3051     h->last_qscale_diff = 0;
3052     tmp = h->pps.init_qp + get_se_golomb(&s->gb);
3053     if(tmp>51+6*(h->sps.bit_depth_luma-8)){
3054         av_log(s->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
3055         return -1;
3056     }
3057     s->qscale= tmp;
3058     h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
3059     h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
3060     //FIXME qscale / qp ... stuff
3061     if(h->slice_type == AV_PICTURE_TYPE_SP){
3062         get_bits1(&s->gb); /* sp_for_switch_flag */
3063     }
3064     if(h->slice_type==AV_PICTURE_TYPE_SP || h->slice_type == AV_PICTURE_TYPE_SI){
3065         get_se_golomb(&s->gb); /* slice_qs_delta */
3066     }
3067
3068     h->deblocking_filter = 1;
3069     h->slice_alpha_c0_offset = 52;
3070     h->slice_beta_offset = 52;
3071     if( h->pps.deblocking_filter_parameters_present ) {
3072         tmp= get_ue_golomb_31(&s->gb);
3073         if(tmp > 2){
3074             av_log(s->avctx, AV_LOG_ERROR, "deblocking_filter_idc %u out of range\n", tmp);
3075             return -1;
3076         }
3077         h->deblocking_filter= tmp;
3078         if(h->deblocking_filter < 2)
3079             h->deblocking_filter^= 1; // 1<->0
3080
3081         if( h->deblocking_filter ) {
3082             h->slice_alpha_c0_offset += get_se_golomb(&s->gb) << 1;
3083             h->slice_beta_offset     += get_se_golomb(&s->gb) << 1;
3084             if(   h->slice_alpha_c0_offset > 104U
3085                || h->slice_beta_offset     > 104U){
3086                 av_log(s->avctx, AV_LOG_ERROR, "deblocking filter parameters %d %d out of range\n", h->slice_alpha_c0_offset, h->slice_beta_offset);
3087                 return -1;
3088             }
3089         }
3090     }
3091
3092     if(   s->avctx->skip_loop_filter >= AVDISCARD_ALL
3093        ||(s->avctx->skip_loop_filter >= AVDISCARD_NONKEY && h->slice_type_nos != AV_PICTURE_TYPE_I)
3094        ||(s->avctx->skip_loop_filter >= AVDISCARD_BIDIR  && h->slice_type_nos == AV_PICTURE_TYPE_B)
3095        ||(s->avctx->skip_loop_filter >= AVDISCARD_NONREF && h->nal_ref_idc == 0))
3096         h->deblocking_filter= 0;
3097
3098     if(h->deblocking_filter == 1 && h0->max_contexts > 1) {
3099         if(s->avctx->flags2 & CODEC_FLAG2_FAST) {
3100             /* Cheat slightly for speed:
3101                Do not bother to deblock across slices. */
3102             h->deblocking_filter = 2;
3103         } else {
3104             h0->max_contexts = 1;
3105             if(!h0->single_decode_warning) {
3106                 av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
3107                 h0->single_decode_warning = 1;
3108             }
3109             if (h != h0) {
3110                 av_log(h->s.avctx, AV_LOG_ERROR, "Deblocking switched inside frame.\n");
3111                 return 1;
3112             }
3113         }
3114     }
3115     h->qp_thresh = 15 + 52 - FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset)
3116                  - FFMAX3(0, h->pps.chroma_qp_index_offset[0], h->pps.chroma_qp_index_offset[1])
3117                  + 6 * (h->sps.bit_depth_luma - 8);
3118
3119 #if 0 //FMO
3120     if( h->pps.num_slice_groups > 1  && h->pps.mb_slice_group_map_type >= 3 && h->pps.mb_slice_group_map_type <= 5)
3121         slice_group_change_cycle= get_bits(&s->gb, ?);
3122 #endif
3123
3124     h0->last_slice_type = slice_type;
3125     h->slice_num = ++h0->current_slice;
3126     if(h->slice_num >= MAX_SLICES){
3127         av_log(s->avctx, AV_LOG_ERROR, "Too many slices, increase MAX_SLICES and recompile\n");
3128     }
3129
3130     for(j=0; j<2; j++){
3131         int id_list[16];
3132         int *ref2frm= h->ref2frm[h->slice_num&(MAX_SLICES-1)][j];
3133         for(i=0; i<16; i++){
3134             id_list[i]= 60;
3135             if (h->ref_list[j][i].f.data[0]) {
3136                 int k;
3137                 uint8_t *base = h->ref_list[j][i].f.base[0];
3138                 for(k=0; k<h->short_ref_count; k++)
3139                     if (h->short_ref[k]->f.base[0] == base) {
3140                         id_list[i]= k;
3141                         break;
3142                     }
3143                 for(k=0; k<h->long_ref_count; k++)
3144                     if (h->long_ref[k] && h->long_ref[k]->f.base[0] == base) {
3145                         id_list[i]= h->short_ref_count + k;
3146                         break;
3147                     }
3148             }
3149         }
3150
3151         ref2frm[0]=
3152         ref2frm[1]= -1;
3153         for(i=0; i<16; i++)
3154             ref2frm[i+2]= 4*id_list[i]
3155                           + (h->ref_list[j][i].f.reference & 3);
3156         ref2frm[18+0]=
3157         ref2frm[18+1]= -1;
3158         for(i=16; i<48; i++)
3159             ref2frm[i+4]= 4*id_list[(i-16)>>1]
3160                           + (h->ref_list[j][i].f.reference & 3);
3161     }
3162
3163     //FIXME: fix draw_edges+PAFF+frame threads
3164     h->emu_edge_width= (s->flags&CODEC_FLAG_EMU_EDGE || (!h->sps.frame_mbs_only_flag && s->avctx->active_thread_type)) ? 0 : 16;
3165     h->emu_edge_height= (FRAME_MBAFF || FIELD_PICTURE) ? 0 : h->emu_edge_width;
3166
3167     if(s->avctx->debug&FF_DEBUG_PICT_INFO){
3168         av_log(h->s.avctx, AV_LOG_DEBUG, "slice:%d %s mb:%d %c%s%s pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n",
3169                h->slice_num,
3170                (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"),
3171                first_mb_in_slice,
3172                av_get_picture_type_char(h->slice_type), h->slice_type_fixed ? " fix" : "", h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
3173                pps_id, h->frame_num,
3174                s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1],
3175                h->ref_count[0], h->ref_count[1],
3176                s->qscale,
3177                h->deblocking_filter, h->slice_alpha_c0_offset/2-26, h->slice_beta_offset/2-26,
3178                h->use_weight,
3179                h->use_weight==1 && h->use_weight_chroma ? "c" : "",
3180                h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : ""
3181                );
3182     }
3183
3184     return 0;
3185 }
3186
3187 int ff_h264_get_slice_type(const H264Context *h)
3188 {
3189     switch (h->slice_type) {
3190     case AV_PICTURE_TYPE_P:  return 0;
3191     case AV_PICTURE_TYPE_B:  return 1;
3192     case AV_PICTURE_TYPE_I:  return 2;
3193     case AV_PICTURE_TYPE_SP: return 3;
3194     case AV_PICTURE_TYPE_SI: return 4;
3195     default:         return -1;
3196     }
3197 }
3198
3199 static av_always_inline void fill_filter_caches_inter(H264Context *h, MpegEncContext * const s, int mb_type, int top_xy,
3200                                                       int left_xy[LEFT_MBS], int top_type, int left_type[LEFT_MBS], int mb_xy, int list)
3201 {
3202     int b_stride = h->b_stride;
3203     int16_t (*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
3204     int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
3205     if(IS_INTER(mb_type) || IS_DIRECT(mb_type)){
3206         if(USES_LIST(top_type, list)){
3207             const int b_xy= h->mb2b_xy[top_xy] + 3*b_stride;
3208             const int b8_xy= 4*top_xy + 2;
3209             int (*ref2frm)[64] = h->ref2frm[ h->slice_table[top_xy]&(MAX_SLICES-1) ][0] + (MB_MBAFF ? 20 : 2);
3210             AV_COPY128(mv_dst - 1*8, s->current_picture.f.motion_val[list][b_xy + 0]);
3211             ref_cache[0 - 1*8]=
3212             ref_cache[1 - 1*8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 0]];
3213             ref_cache[2 - 1*8]=
3214             ref_cache[3 - 1*8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 1]];
3215         }else{
3216             AV_ZERO128(mv_dst - 1*8);
3217             AV_WN32A(&ref_cache[0 - 1*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
3218         }
3219
3220         if(!IS_INTERLACED(mb_type^left_type[LTOP])){
3221             if(USES_LIST(left_type[LTOP], list)){
3222                 const int b_xy= h->mb2b_xy[left_xy[LTOP]] + 3;
3223                 const int b8_xy= 4*left_xy[LTOP] + 1;
3224                 int (*ref2frm)[64] = h->ref2frm[ h->slice_table[left_xy[LTOP]]&(MAX_SLICES-1) ][0] + (MB_MBAFF ? 20 : 2);
3225                 AV_COPY32(mv_dst - 1 +  0, s->current_picture.f.motion_val[list][b_xy + b_stride*0]);
3226                 AV_COPY32(mv_dst - 1 +  8, s->current_picture.f.motion_val[list][b_xy + b_stride*1]);
3227                 AV_COPY32(mv_dst - 1 + 16, s->current_picture.f.motion_val[list][b_xy + b_stride*2]);
3228                 AV_COPY32(mv_dst - 1 + 24, s->current_picture.f.motion_val[list][b_xy + b_stride*3]);
3229                 ref_cache[-1 +  0]=
3230                 ref_cache[-1 +  8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2*0]];
3231                 ref_cache[-1 + 16]=
3232                 ref_cache[-1 + 24]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2*1]];
3233             }else{
3234                 AV_ZERO32(mv_dst - 1 + 0);
3235                 AV_ZERO32(mv_dst - 1 + 8);
3236                 AV_ZERO32(mv_dst - 1 +16);
3237                 AV_ZERO32(mv_dst - 1 +24);
3238                 ref_cache[-1 +  0]=
3239                 ref_cache[-1 +  8]=
3240                 ref_cache[-1 + 16]=
3241                 ref_cache[-1 + 24]= LIST_NOT_USED;
3242             }
3243         }
3244     }
3245
3246     if(!USES_LIST(mb_type, list)){
3247         fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0,0), 4);
3248         AV_WN32A(&ref_cache[0*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
3249         AV_WN32A(&ref_cache[1*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
3250         AV_WN32A(&ref_cache[2*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
3251         AV_WN32A(&ref_cache[3*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
3252         return;
3253     }
3254
3255     {
3256         int8_t *ref = &s->current_picture.f.ref_index[list][4*mb_xy];
3257         int (*ref2frm)[64] = h->ref2frm[ h->slice_num&(MAX_SLICES-1) ][0] + (MB_MBAFF ? 20 : 2);
3258         uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]],ref2frm[list][ref[1]])&0x00FF00FF)*0x0101;
3259         uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]],ref2frm[list][ref[3]])&0x00FF00FF)*0x0101;
3260         AV_WN32A(&ref_cache[0*8], ref01);
3261         AV_WN32A(&ref_cache[1*8], ref01);
3262         AV_WN32A(&ref_cache[2*8], ref23);
3263         AV_WN32A(&ref_cache[3*8], ref23);
3264     }
3265
3266     {
3267         int16_t (*mv_src)[2] = &s->current_picture.f.motion_val[list][4*s->mb_x + 4*s->mb_y*b_stride];
3268         AV_COPY128(mv_dst + 8*0, mv_src + 0*b_stride);
3269         AV_COPY128(mv_dst + 8*1, mv_src + 1*b_stride);
3270         AV_COPY128(mv_dst + 8*2, mv_src + 2*b_stride);
3271         AV_COPY128(mv_dst + 8*3, mv_src + 3*b_stride);
3272     }
3273 }
3274
3275 /**
3276  *
3277  * @return non zero if the loop filter can be skiped
3278  */
3279 static int fill_filter_caches(H264Context *h, int mb_type){
3280     MpegEncContext * const s = &h->s;
3281     const int mb_xy= h->mb_xy;
3282     int top_xy, left_xy[LEFT_MBS];
3283     int top_type, left_type[LEFT_MBS];
3284     uint8_t *nnz;
3285     uint8_t *nnz_cache;
3286
3287     top_xy     = mb_xy  - (s->mb_stride << MB_FIELD);
3288
3289     /* Wow, what a mess, why didn't they simplify the interlacing & intra
3290      * stuff, I can't imagine that these complex rules are worth it. */
3291
3292     left_xy[LBOT] = left_xy[LTOP] = mb_xy-1;
3293     if(FRAME_MBAFF){
3294         const int left_mb_field_flag     = IS_INTERLACED(s->current_picture.f.mb_type[mb_xy - 1]);
3295         const int curr_mb_field_flag     = IS_INTERLACED(mb_type);
3296         if(s->mb_y&1){
3297             if (left_mb_field_flag != curr_mb_field_flag) {
3298                 left_xy[LTOP] -= s->mb_stride;
3299             }
3300         }else{
3301             if(curr_mb_field_flag){
3302                 top_xy += s->mb_stride & (((s->current_picture.f.mb_type[top_xy] >> 7) & 1) - 1);
3303             }
3304             if (left_mb_field_flag != curr_mb_field_flag) {
3305                 left_xy[LBOT] += s->mb_stride;
3306             }
3307         }
3308     }
3309
3310     h->top_mb_xy = top_xy;
3311     h->left_mb_xy[LTOP] = left_xy[LTOP];
3312     h->left_mb_xy[LBOT] = left_xy[LBOT];
3313     {
3314         //for sufficiently low qp, filtering wouldn't do anything
3315         //this is a conservative estimate: could also check beta_offset and more accurate chroma_qp
3316         int qp_thresh = h->qp_thresh; //FIXME strictly we should store qp_thresh for each mb of a slice
3317         int qp = s->current_picture.f.qscale_table[mb_xy];
3318         if(qp <= qp_thresh
3319            && (left_xy[LTOP] < 0 || ((qp + s->current_picture.f.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh)
3320            && (top_xy        < 0 || ((qp + s->current_picture.f.qscale_table[top_xy       ] + 1) >> 1) <= qp_thresh)) {
3321             if(!FRAME_MBAFF)
3322                 return 1;
3323             if ((left_xy[LTOP] < 0            || ((qp + s->current_picture.f.qscale_table[left_xy[LBOT]        ] + 1) >> 1) <= qp_thresh) &&
3324                 (top_xy        < s->mb_stride || ((qp + s->current_picture.f.qscale_table[top_xy - s->mb_stride] + 1) >> 1) <= qp_thresh))
3325                 return 1;
3326         }
3327     }
3328
3329     top_type        = s->current_picture.f.mb_type[top_xy];
3330     left_type[LTOP] = s->current_picture.f.mb_type[left_xy[LTOP]];
3331     left_type[LBOT] = s->current_picture.f.mb_type[left_xy[LBOT]];
3332     if(h->deblocking_filter == 2){
3333         if(h->slice_table[top_xy       ] != h->slice_num) top_type= 0;
3334         if(h->slice_table[left_xy[LBOT]] != h->slice_num) left_type[LTOP]= left_type[LBOT]= 0;
3335     }else{
3336         if(h->slice_table[top_xy       ] == 0xFFFF) top_type= 0;
3337         if(h->slice_table[left_xy[LBOT]] == 0xFFFF) left_type[LTOP]= left_type[LBOT] =0;
3338     }
3339     h->top_type       = top_type;
3340     h->left_type[LTOP]= left_type[LTOP];
3341     h->left_type[LBOT]= left_type[LBOT];
3342
3343     if(IS_INTRA(mb_type))
3344         return 0;
3345
3346     fill_filter_caches_inter(h, s, mb_type, top_xy, left_xy, top_type, left_type, mb_xy, 0);
3347     if(h->list_count == 2)
3348         fill_filter_caches_inter(h, s, mb_type, top_xy, left_xy, top_type, left_type, mb_xy, 1);
3349
3350     nnz = h->non_zero_count[mb_xy];
3351     nnz_cache = h->non_zero_count_cache;
3352     AV_COPY32(&nnz_cache[4+8*1], &nnz[ 0]);
3353     AV_COPY32(&nnz_cache[4+8*2], &nnz[ 4]);
3354     AV_COPY32(&nnz_cache[4+8*3], &nnz[ 8]);
3355     AV_COPY32(&nnz_cache[4+8*4], &nnz[12]);
3356     h->cbp= h->cbp_table[mb_xy];
3357
3358     if(top_type){
3359         nnz = h->non_zero_count[top_xy];
3360         AV_COPY32(&nnz_cache[4+8*0], &nnz[3*4]);
3361     }
3362
3363     if(left_type[LTOP]){
3364         nnz = h->non_zero_count[left_xy[LTOP]];
3365         nnz_cache[3+8*1]= nnz[3+0*4];
3366         nnz_cache[3+8*2]= nnz[3+1*4];
3367         nnz_cache[3+8*3]= nnz[3+2*4];
3368         nnz_cache[3+8*4]= nnz[3+3*4];
3369     }
3370
3371     // CAVLC 8x8dct requires NNZ values for residual decoding that differ from what the loop filter needs
3372     if(!CABAC && h->pps.transform_8x8_mode){
3373         if(IS_8x8DCT(top_type)){
3374             nnz_cache[4+8*0]=
3375             nnz_cache[5+8*0]= (h->cbp_table[top_xy] & 0x4000) >> 12;
3376             nnz_cache[6+8*0]=
3377             nnz_cache[7+8*0]= (h->cbp_table[top_xy] & 0x8000) >> 12;
3378         }
3379         if(IS_8x8DCT(left_type[LTOP])){
3380             nnz_cache[3+8*1]=
3381             nnz_cache[3+8*2]= (h->cbp_table[left_xy[LTOP]]&0x2000) >> 12; //FIXME check MBAFF
3382         }
3383         if(IS_8x8DCT(left_type[LBOT])){
3384             nnz_cache[3+8*3]=
3385             nnz_cache[3+8*4]= (h->cbp_table[left_xy[LBOT]]&0x8000) >> 12; //FIXME check MBAFF
3386         }
3387
3388         if(IS_8x8DCT(mb_type)){
3389             nnz_cache[scan8[0   ]]= nnz_cache[scan8[1   ]]=
3390             nnz_cache[scan8[2   ]]= nnz_cache[scan8[3   ]]= (h->cbp & 0x1000) >> 12;
3391
3392             nnz_cache[scan8[0+ 4]]= nnz_cache[scan8[1+ 4]]=
3393             nnz_cache[scan8[2+ 4]]= nnz_cache[scan8[3+ 4]]= (h->cbp & 0x2000) >> 12;
3394
3395             nnz_cache[scan8[0+ 8]]= nnz_cache[scan8[1+ 8]]=
3396             nnz_cache[scan8[2+ 8]]= nnz_cache[scan8[3+ 8]]= (h->cbp & 0x4000) >> 12;
3397
3398             nnz_cache[scan8[0+12]]= nnz_cache[scan8[1+12]]=
3399             nnz_cache[scan8[2+12]]= nnz_cache[scan8[3+12]]= (h->cbp & 0x8000) >> 12;
3400         }
3401     }
3402
3403     return 0;
3404 }
3405
3406 static void loop_filter(H264Context *h, int start_x, int end_x){
3407     MpegEncContext * const s = &h->s;
3408     uint8_t  *dest_y, *dest_cb, *dest_cr;
3409     int linesize, uvlinesize, mb_x, mb_y;
3410     const int end_mb_y= s->mb_y + FRAME_MBAFF;
3411     const int old_slice_type= h->slice_type;
3412     const int pixel_shift = h->pixel_shift;
3413     const int block_h = 16 >> s->chroma_y_shift;
3414
3415     if(h->deblocking_filter) {
3416         for(mb_x= start_x; mb_x<end_x; mb_x++){
3417             for(mb_y=end_mb_y - FRAME_MBAFF; mb_y<= end_mb_y; mb_y++){
3418                 int mb_xy, mb_type;
3419                 mb_xy = h->mb_xy = mb_x + mb_y*s->mb_stride;
3420                 h->slice_num= h->slice_table[mb_xy];
3421                 mb_type = s->current_picture.f.mb_type[mb_xy];
3422                 h->list_count= h->list_counts[mb_xy];
3423
3424                 if(FRAME_MBAFF)
3425                     h->mb_mbaff = h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
3426
3427                 s->mb_x= mb_x;
3428                 s->mb_y= mb_y;
3429                 dest_y  = s->current_picture.f.data[0] + ((mb_x << pixel_shift) + mb_y * s->linesize  ) * 16;
3430                 dest_cb = s->current_picture.f.data[1] + (mb_x << pixel_shift) * (8 << CHROMA444) + mb_y * s->uvlinesize * block_h;
3431                 dest_cr = s->current_picture.f.data[2] + (mb_x << pixel_shift) * (8 << CHROMA444) + mb_y * s->uvlinesize * block_h;
3432                     //FIXME simplify above
3433
3434                 if (MB_FIELD) {
3435                     linesize   = h->mb_linesize   = s->linesize * 2;
3436                     uvlinesize = h->mb_uvlinesize = s->uvlinesize * 2;
3437                     if(mb_y&1){ //FIXME move out of this function?
3438                         dest_y -= s->linesize*15;
3439                         dest_cb-= s->uvlinesize * (block_h - 1);
3440                         dest_cr-= s->uvlinesize * (block_h - 1);
3441                     }
3442                 } else {
3443                     linesize   = h->mb_linesize   = s->linesize;
3444                     uvlinesize = h->mb_uvlinesize = s->uvlinesize;
3445                 }
3446                 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
3447                 if(fill_filter_caches(h, mb_type))
3448                     continue;
3449                 h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.f.qscale_table[mb_xy]);
3450                 h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.f.qscale_table[mb_xy]);
3451
3452                 if (FRAME_MBAFF) {
3453                     ff_h264_filter_mb     (h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
3454                 } else {
3455                     ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
3456                 }
3457             }
3458         }
3459     }
3460     h->slice_type= old_slice_type;
3461     s->mb_x= end_x;
3462     s->mb_y= end_mb_y - FRAME_MBAFF;
3463     h->chroma_qp[0] = get_chroma_qp(h, 0, s->qscale);
3464     h->chroma_qp[1] = get_chroma_qp(h, 1, s->qscale);
3465 }
3466
3467 static void predict_field_decoding_flag(H264Context *h){
3468     MpegEncContext * const s = &h->s;
3469     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
3470     int mb_type = (h->slice_table[mb_xy-1] == h->slice_num)
3471                 ? s->current_picture.f.mb_type[mb_xy - 1]
3472                 : (h->slice_table[mb_xy-s->mb_stride] == h->slice_num)
3473                 ? s->current_picture.f.mb_type[mb_xy - s->mb_stride]
3474                 : 0;
3475     h->mb_mbaff = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
3476 }
3477
3478 /**
3479  * Draw edges and report progress for the last MB row.
3480  */
3481 static void decode_finish_row(H264Context *h){
3482     MpegEncContext * const s = &h->s;
3483     int top = 16*(s->mb_y >> FIELD_PICTURE);
3484     int height = 16 << FRAME_MBAFF;
3485     int deblock_border = (16 + 4) << FRAME_MBAFF;
3486     int pic_height = 16*s->mb_height >> FIELD_PICTURE;
3487
3488     if (h->deblocking_filter) {
3489         if((top + height) >= pic_height)
3490             height += deblock_border;
3491
3492         top -= deblock_border;
3493     }
3494
3495     if (top >= pic_height || (top + height) < h->emu_edge_height)
3496         return;
3497
3498     height = FFMIN(height, pic_height - top);
3499     if (top < h->emu_edge_height) {
3500         height = top+height;
3501         top = 0;
3502     }
3503
3504     ff_draw_horiz_band(s, top, height);
3505
3506     if (s->dropable) return;
3507
3508     ff_thread_report_progress((AVFrame*)s->current_picture_ptr, top + height - 1,
3509                              s->picture_structure==PICT_BOTTOM_FIELD);
3510 }
3511
3512 static int decode_slice(struct AVCodecContext *avctx, void *arg){
3513     H264Context *h = *(void**)arg;
3514     MpegEncContext * const s = &h->s;
3515     const int part_mask= s->partitioned_frame ? (AC_END|AC_ERROR) : 0x7F;
3516     int lf_x_start = s->mb_x;
3517
3518     s->mb_skip_run= -1;
3519
3520     h->is_complex = FRAME_MBAFF || s->picture_structure != PICT_FRAME || s->codec_id != CODEC_ID_H264 ||
3521                     (CONFIG_GRAY && (s->flags&CODEC_FLAG_GRAY));
3522
3523     if( h->pps.cabac ) {
3524         /* realign */
3525         align_get_bits( &s->gb );
3526
3527         /* init cabac */
3528         ff_init_cabac_states( &h->cabac);
3529         ff_init_cabac_decoder( &h->cabac,
3530                                s->gb.buffer + get_bits_count(&s->gb)/8,
3531                                (get_bits_left(&s->gb) + 7)/8);
3532
3533         ff_h264_init_cabac_states(h);
3534
3535         for(;;){
3536 //START_TIMER
3537             int ret = ff_h264_decode_mb_cabac(h);
3538             int eos;
3539 //STOP_TIMER("decode_mb_cabac")
3540
3541             if(ret>=0) ff_h264_hl_decode_mb(h);
3542
3543             if( ret >= 0 && FRAME_MBAFF ) { //FIXME optimal? or let mb_decode decode 16x32 ?
3544                 s->mb_y++;
3545
3546                 ret = ff_h264_decode_mb_cabac(h);
3547
3548                 if(ret>=0) ff_h264_hl_decode_mb(h);
3549                 s->mb_y--;
3550             }
3551             eos = get_cabac_terminate( &h->cabac );
3552
3553             if((s->workaround_bugs & FF_BUG_TRUNCATED) && h->cabac.bytestream > h->cabac.bytestream_end + 2){
3554                 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);
3555                 if (s->mb_x >= lf_x_start) loop_filter(h, lf_x_start, s->mb_x + 1);
3556                 return 0;
3557             }
3558             if( ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 2) {
3559                 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d, bytestream (%td)\n", s->mb_x, s->mb_y, h->cabac.bytestream_end - h->cabac.bytestream);
3560                 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);
3561                 return -1;
3562             }
3563
3564             if( ++s->mb_x >= s->mb_width ) {
3565                 loop_filter(h, lf_x_start, s->mb_x);
3566                 s->mb_x = lf_x_start = 0;
3567                 decode_finish_row(h);
3568                 ++s->mb_y;
3569                 if(FIELD_OR_MBAFF_PICTURE) {
3570                     ++s->mb_y;
3571                     if(FRAME_MBAFF && s->mb_y < s->mb_height)
3572                         predict_field_decoding_flag(h);
3573                 }
3574             }
3575
3576             if( eos || s->mb_y >= s->mb_height ) {
3577                 tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
3578                 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);
3579                 if (s->mb_x > lf_x_start) loop_filter(h, lf_x_start, s->mb_x);
3580                 return 0;
3581             }
3582         }
3583
3584     } else {
3585         for(;;){
3586             int ret = ff_h264_decode_mb_cavlc(h);
3587
3588             if(ret>=0) ff_h264_hl_decode_mb(h);
3589
3590             if(ret>=0 && FRAME_MBAFF){ //FIXME optimal? or let mb_decode decode 16x32 ?
3591                 s->mb_y++;
3592                 ret = ff_h264_decode_mb_cavlc(h);
3593
3594                 if(ret>=0) ff_h264_hl_decode_mb(h);
3595                 s->mb_y--;
3596             }
3597
3598             if(ret<0){
3599                 av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
3600                 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);
3601                 return -1;
3602             }
3603
3604             if(++s->mb_x >= s->mb_width){
3605                 loop_filter(h, lf_x_start, s->mb_x);
3606                 s->mb_x = lf_x_start = 0;
3607                 decode_finish_row(h);
3608                 ++s->mb_y;
3609                 if(FIELD_OR_MBAFF_PICTURE) {
3610                     ++s->mb_y;
3611                     if(FRAME_MBAFF && s->mb_y < s->mb_height)
3612                         predict_field_decoding_flag(h);
3613                 }
3614                 if(s->mb_y >= s->mb_height){
3615                     tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
3616
3617                     if(get_bits_count(&s->gb) == s->gb.size_in_bits ) {
3618                         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);
3619
3620                         return 0;
3621                     }else{
3622                         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);
3623
3624                         return -1;
3625                     }
3626                 }
3627             }
3628
3629             if(get_bits_count(&s->gb) >= s->gb.size_in_bits && s->mb_skip_run<=0){
3630                 tprintf(s->avctx, "slice end %d %d\n", get_bits_count(&s->gb), s->gb.size_in_bits);
3631                 if(get_bits_count(&s->gb) == s->gb.size_in_bits ){
3632                     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);
3633                     if (s->mb_x > lf_x_start) loop_filter(h, lf_x_start, s->mb_x);
3634
3635                     return 0;
3636                 }else{
3637                     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);
3638
3639                     return -1;
3640                 }
3641             }
3642         }
3643     }
3644 }
3645
3646 /**
3647  * Call decode_slice() for each context.
3648  *
3649  * @param h h264 master context
3650  * @param context_count number of contexts to execute
3651  */
3652 static int execute_decode_slices(H264Context *h, int context_count){
3653     MpegEncContext * const s = &h->s;
3654     AVCodecContext * const avctx= s->avctx;
3655     H264Context *hx;
3656     int i;
3657
3658     if (s->avctx->hwaccel || s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
3659         return 0;
3660     if(context_count == 1) {
3661         return decode_slice(avctx, &h);
3662     } else {
3663         for(i = 1; i < context_count; i++) {
3664             hx = h->thread_context[i];
3665             hx->s.error_recognition = avctx->error_recognition;
3666             hx->s.error_count = 0;
3667         }
3668
3669         avctx->execute(avctx, (void *)decode_slice,
3670                        h->thread_context, NULL, context_count, sizeof(void*));
3671
3672         /* pull back stuff from slices to master context */
3673         hx = h->thread_context[context_count - 1];
3674         s->mb_x = hx->s.mb_x;
3675         s->mb_y = hx->s.mb_y;
3676         s->dropable = hx->s.dropable;
3677         s->picture_structure = hx->s.picture_structure;
3678         for(i = 1; i < context_count; i++)
3679             h->s.error_count += h->thread_context[i]->s.error_count;
3680     }
3681
3682     return 0;
3683 }
3684
3685
3686 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
3687     MpegEncContext * const s = &h->s;
3688     AVCodecContext * const avctx= s->avctx;
3689     H264Context *hx; ///< thread context
3690     int buf_index;
3691     int context_count;
3692     int next_avc;
3693     int pass = !(avctx->active_thread_type & FF_THREAD_FRAME);
3694     int nals_needed=0; ///< number of NALs that need decoding before the next frame thread starts
3695     int nal_index;
3696
3697     h->max_contexts = (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_SLICE)) ? avctx->thread_count : 1;
3698     if(!(s->flags2 & CODEC_FLAG2_CHUNKS)){
3699         h->current_slice = 0;
3700         if (!s->first_field)
3701             s->current_picture_ptr= NULL;
3702         ff_h264_reset_sei(h);
3703     }
3704
3705     for(;pass <= 1;pass++){
3706         buf_index = 0;
3707         context_count = 0;
3708         next_avc = h->is_avc ? 0 : buf_size;
3709         nal_index = 0;
3710     for(;;){
3711         int consumed;
3712         int dst_length;
3713         int bit_length;
3714         const uint8_t *ptr;
3715         int i, nalsize = 0;
3716         int err;
3717
3718         if(buf_index >= next_avc) {
3719             if(buf_index >= buf_size) break;
3720             nalsize = 0;
3721             for(i = 0; i < h->nal_length_size; i++)
3722                 nalsize = (nalsize << 8) | buf[buf_index++];
3723             if(nalsize <= 0 || nalsize > buf_size - buf_index){
3724                 av_log(h->s.avctx, AV_LOG_ERROR, "AVC: nal size %d\n", nalsize);
3725                 break;
3726             }
3727             next_avc= buf_index + nalsize;
3728         } else {
3729             // start code prefix search
3730             for(; buf_index + 3 < next_avc; buf_index++){
3731                 // This should always succeed in the first iteration.
3732                 if(buf[buf_index] == 0 && buf[buf_index+1] == 0 && buf[buf_index+2] == 1)
3733                     break;
3734             }
3735
3736             if(buf_index+3 >= buf_size) break;
3737
3738             buf_index+=3;
3739             if(buf_index >= next_avc) continue;
3740         }
3741
3742         hx = h->thread_context[context_count];
3743
3744         ptr= ff_h264_decode_nal(hx, buf + buf_index, &dst_length, &consumed, next_avc - buf_index);
3745         if (ptr==NULL || dst_length < 0){
3746             return -1;
3747         }
3748         i= buf_index + consumed;
3749         if((s->workaround_bugs & FF_BUG_AUTODETECT) && i+3<next_avc &&
3750            buf[i]==0x00 && buf[i+1]==0x00 && buf[i+2]==0x01 && buf[i+3]==0xE0)
3751             s->workaround_bugs |= FF_BUG_TRUNCATED;
3752
3753         if(!(s->workaround_bugs & FF_BUG_TRUNCATED)){
3754         while(ptr[dst_length - 1] == 0 && dst_length > 0)
3755             dst_length--;
3756         }
3757         bit_length= !dst_length ? 0 : (8*dst_length - ff_h264_decode_rbsp_trailing(h, ptr + dst_length - 1));
3758
3759         if(s->avctx->debug&FF_DEBUG_STARTCODE){
3760             av_log(h->s.avctx, AV_LOG_DEBUG, "NAL %d at %d/%d length %d\n", hx->nal_unit_type, buf_index, buf_size, dst_length);
3761         }
3762
3763         if (h->is_avc && (nalsize != consumed) && nalsize){
3764             av_log(h->s.avctx, AV_LOG_DEBUG, "AVC: Consumed only %d bytes instead of %d\n", consumed, nalsize);
3765         }
3766
3767         buf_index += consumed;
3768         nal_index++;
3769
3770         if(pass == 0) {
3771             // packets can sometimes contain multiple PPS/SPS
3772             // e.g. two PAFF field pictures in one packet, or a demuxer which splits NALs strangely
3773             // if so, when frame threading we can't start the next thread until we've read all of them
3774             switch (hx->nal_unit_type) {
3775                 case NAL_SPS:
3776                 case NAL_PPS:
3777                     nals_needed = nal_index;
3778                     break;
3779                 case NAL_IDR_SLICE:
3780                 case NAL_SLICE:
3781                     init_get_bits(&hx->s.gb, ptr, bit_length);
3782                     if (!get_ue_golomb(&hx->s.gb))
3783                         nals_needed = nal_index;
3784             }
3785             continue;
3786         }
3787
3788         //FIXME do not discard SEI id
3789         if(avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc  == 0)
3790             continue;
3791
3792       again:
3793         err = 0;
3794         switch(hx->nal_unit_type){
3795         case NAL_IDR_SLICE:
3796             if (h->nal_unit_type != NAL_IDR_SLICE) {
3797                 av_log(h->s.avctx, AV_LOG_ERROR, "Invalid mix of idr and non-idr slices");
3798                 return -1;
3799             }
3800             idr(h); //FIXME ensure we don't loose some frames if there is reordering
3801         case NAL_SLICE:
3802             init_get_bits(&hx->s.gb, ptr, bit_length);
3803             hx->intra_gb_ptr=
3804             hx->inter_gb_ptr= &hx->s.gb;
3805             hx->s.data_partitioning = 0;
3806
3807             if((err = decode_slice_header(hx, h)))
3808                break;
3809
3810             s->current_picture_ptr->f.key_frame |=
3811                     (hx->nal_unit_type == NAL_IDR_SLICE) ||
3812                     (h->sei_recovery_frame_cnt >= 0);
3813
3814             if (h->current_slice == 1) {
3815                 if(!(s->flags2 & CODEC_FLAG2_CHUNKS)) {
3816                     decode_postinit(h, nal_index >= nals_needed);
3817                 }
3818
3819                 if (s->avctx->hwaccel && s->avctx->hwaccel->start_frame(s->avctx, NULL, 0) < 0)
3820                     return -1;
3821                 if(CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
3822                     ff_vdpau_h264_picture_start(s);
3823             }
3824
3825             if(hx->redundant_pic_count==0
3826                && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
3827                && (avctx->skip_frame < AVDISCARD_BIDIR  || hx->slice_type_nos!=AV_PICTURE_TYPE_B)
3828                && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type_nos==AV_PICTURE_TYPE_I)
3829                && avctx->skip_frame < AVDISCARD_ALL){
3830                 if(avctx->hwaccel) {
3831                     if (avctx->hwaccel->decode_slice(avctx, &buf[buf_index - consumed], consumed) < 0)
3832                         return -1;
3833                 }else
3834                 if(CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU){
3835                     static const uint8_t start_code[] = {0x00, 0x00, 0x01};
3836                     ff_vdpau_add_data_chunk(s, start_code, sizeof(start_code));
3837                     ff_vdpau_add_data_chunk(s, &buf[buf_index - consumed], consumed );
3838                 }else
3839                     context_count++;
3840             }
3841             break;
3842         case NAL_DPA:
3843             init_get_bits(&hx->s.gb, ptr, bit_length);
3844             hx->intra_gb_ptr=
3845             hx->inter_gb_ptr= NULL;
3846
3847             if ((err = decode_slice_header(hx, h)) < 0)
3848                 break;
3849
3850             hx->s.data_partitioning = 1;
3851
3852             break;
3853         case NAL_DPB:
3854             init_get_bits(&hx->intra_gb, ptr, bit_length);
3855             hx->intra_gb_ptr= &hx->intra_gb;
3856             break;
3857         case NAL_DPC:
3858             init_get_bits(&hx->inter_gb, ptr, bit_length);
3859             hx->inter_gb_ptr= &hx->inter_gb;
3860
3861             if(hx->redundant_pic_count==0 && hx->intra_gb_ptr && hx->s.data_partitioning
3862                && s->context_initialized
3863                && (avctx->skip_frame < AVDISCARD_NONREF || hx->nal_ref_idc)
3864                && (avctx->skip_frame < AVDISCARD_BIDIR  || hx->slice_type_nos!=AV_PICTURE_TYPE_B)
3865                && (avctx->skip_frame < AVDISCARD_NONKEY || hx->slice_type_nos==AV_PICTURE_TYPE_I)
3866                && avctx->skip_frame < AVDISCARD_ALL)
3867                 context_count++;
3868             break;
3869         case NAL_SEI:
3870             init_get_bits(&s->gb, ptr, bit_length);
3871             ff_h264_decode_sei(h);
3872             break;
3873         case NAL_SPS:
3874             init_get_bits(&s->gb, ptr, bit_length);
3875             ff_h264_decode_seq_parameter_set(h);
3876
3877             if (s->flags& CODEC_FLAG_LOW_DELAY ||
3878                 (h->sps.bitstream_restriction_flag && !h->sps.num_reorder_frames))
3879                 s->low_delay=1;
3880
3881             if(avctx->has_b_frames < 2)
3882                 avctx->has_b_frames= !s->low_delay;
3883
3884             if (avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
3885                 h->cur_chroma_format_idc != h->sps.chroma_format_idc) {
3886                 if (h->sps.bit_depth_luma >= 8 && h->sps.bit_depth_luma <= 10) {
3887                     avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
3888                     h->cur_chroma_format_idc = h->sps.chroma_format_idc;
3889                     h->pixel_shift = h->sps.bit_depth_luma > 8;
3890
3891                     ff_h264dsp_init(&h->h264dsp, h->sps.bit_depth_luma, h->sps.chroma_format_idc);
3892                     ff_h264_pred_init(&h->hpc, s->codec_id, h->sps.bit_depth_luma, h->sps.chroma_format_idc);
3893                     s->dsp.dct_bits = h->sps.bit_depth_luma > 8 ? 32 : 16;
3894                     dsputil_init(&s->dsp, s->avctx);
3895                 } else {
3896                     av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", h->sps.bit_depth_luma);
3897                     return -1;
3898                 }
3899             }
3900             break;
3901         case NAL_PPS:
3902             init_get_bits(&s->gb, ptr, bit_length);
3903
3904             ff_h264_decode_picture_parameter_set(h, bit_length);
3905
3906             break;
3907         case NAL_AUD:
3908         case NAL_END_SEQUENCE:
3909         case NAL_END_STREAM:
3910         case NAL_FILLER_DATA:
3911         case NAL_SPS_EXT:
3912         case NAL_AUXILIARY_SLICE:
3913             break;
3914         default:
3915             av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n", hx->nal_unit_type, bit_length);
3916         }
3917
3918         if(context_count == h->max_contexts) {
3919             execute_decode_slices(h, context_count);
3920             context_count = 0;
3921         }
3922
3923         if (err < 0)
3924             av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
3925         else if(err == 1) {
3926             /* Slice could not be decoded in parallel mode, copy down
3927              * NAL unit stuff to context 0 and restart. Note that
3928              * rbsp_buffer is not transferred, but since we no longer
3929              * run in parallel mode this should not be an issue. */
3930             h->nal_unit_type = hx->nal_unit_type;
3931             h->nal_ref_idc   = hx->nal_ref_idc;
3932             hx = h;
3933             goto again;
3934         }
3935     }
3936     }
3937     if(context_count)
3938         execute_decode_slices(h, context_count);
3939     return buf_index;
3940 }
3941
3942 /**
3943  * returns the number of bytes consumed for building the current frame
3944  */
3945 static int get_consumed_bytes(MpegEncContext *s, int pos, int buf_size){
3946         if(pos==0) pos=1; //avoid infinite loops (i doubt that is needed but ...)
3947         if(pos+10>buf_size) pos=buf_size; // oops ;)
3948
3949         return pos;
3950 }
3951
3952 static int decode_frame(AVCodecContext *avctx,
3953                              void *data, int *data_size,
3954                              AVPacket *avpkt)
3955 {
3956     const uint8_t *buf = avpkt->data;
3957     int buf_size = avpkt->size;
3958     H264Context *h = avctx->priv_data;
3959     MpegEncContext *s = &h->s;
3960     AVFrame *pict = data;
3961     int buf_index;
3962
3963     s->flags= avctx->flags;
3964     s->flags2= avctx->flags2;
3965
3966    /* end of stream, output what is still in the buffers */
3967  out:
3968     if (buf_size == 0) {
3969         Picture *out;
3970         int i, out_idx;
3971
3972         s->current_picture_ptr = NULL;
3973
3974 //FIXME factorize this with the output code below
3975         out = h->delayed_pic[0];
3976         out_idx = 0;
3977         for (i = 1; h->delayed_pic[i] && !h->delayed_pic[i]->f.key_frame && !h->delayed_pic[i]->mmco_reset; i++)
3978             if(h->delayed_pic[i]->poc < out->poc){
3979                 out = h->delayed_pic[i];
3980                 out_idx = i;
3981             }
3982
3983         for(i=out_idx; h->delayed_pic[i]; i++)
3984             h->delayed_pic[i] = h->delayed_pic[i+1];
3985
3986         if(out){
3987             *data_size = sizeof(AVFrame);
3988             *pict= *(AVFrame*)out;
3989         }
3990
3991         return 0;
3992     }
3993
3994     buf_index=decode_nal_units(h, buf, buf_size);
3995     if(buf_index < 0)
3996         return -1;
3997
3998     if (!s->current_picture_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
3999         buf_size = 0;
4000         goto out;
4001     }
4002
4003     if(!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr){
4004         if (avctx->skip_frame >= AVDISCARD_NONREF)
4005             return 0;
4006         av_log(avctx, AV_LOG_ERROR, "no frame!\n");
4007         return -1;
4008     }
4009
4010     if(!(s->flags2 & CODEC_FLAG2_CHUNKS) || (s->mb_y >= s->mb_height && s->mb_height)){
4011
4012         if(s->flags2 & CODEC_FLAG2_CHUNKS) decode_postinit(h, 1);
4013
4014         field_end(h, 0);
4015
4016         if (!h->next_output_pic) {
4017             /* Wait for second field. */
4018             *data_size = 0;
4019
4020         } else {
4021             *data_size = sizeof(AVFrame);
4022             *pict = *(AVFrame*)h->next_output_pic;
4023         }
4024     }
4025
4026     assert(pict->data[0] || !*data_size);
4027     ff_print_debug_info(s, pict);
4028 //printf("out %d\n", (int)pict->data[0]);
4029
4030     return get_consumed_bytes(s, buf_index, buf_size);
4031 }
4032 #if 0
4033 static inline void fill_mb_avail(H264Context *h){
4034     MpegEncContext * const s = &h->s;
4035     const int mb_xy= s->mb_x + s->mb_y*s->mb_stride;
4036
4037     if(s->mb_y){
4038         h->mb_avail[0]= s->mb_x                 && h->slice_table[mb_xy - s->mb_stride - 1] == h->slice_num;
4039         h->mb_avail[1]=                            h->slice_table[mb_xy - s->mb_stride    ] == h->slice_num;
4040         h->mb_avail[2]= s->mb_x+1 < s->mb_width && h->slice_table[mb_xy - s->mb_stride + 1] == h->slice_num;
4041     }else{
4042         h->mb_avail[0]=
4043         h->mb_avail[1]=
4044         h->mb_avail[2]= 0;
4045     }
4046     h->mb_avail[3]= s->mb_x && h->slice_table[mb_xy - 1] == h->slice_num;
4047     h->mb_avail[4]= 1; //FIXME move out
4048     h->mb_avail[5]= 0; //FIXME move out
4049 }
4050 #endif
4051
4052 #ifdef TEST
4053 #undef printf
4054 #undef random
4055 #define COUNT 8000
4056 #define SIZE (COUNT*40)
4057 int main(void){
4058     int i;
4059     uint8_t temp[SIZE];
4060     PutBitContext pb;
4061     GetBitContext gb;
4062 //    int int_temp[10000];
4063     DSPContext dsp;
4064     AVCodecContext avctx;
4065
4066     dsputil_init(&dsp, &avctx);
4067
4068     init_put_bits(&pb, temp, SIZE);
4069     printf("testing unsigned exp golomb\n");
4070     for(i=0; i<COUNT; i++){
4071         START_TIMER
4072         set_ue_golomb(&pb, i);
4073         STOP_TIMER("set_ue_golomb");
4074     }
4075     flush_put_bits(&pb);
4076
4077     init_get_bits(&gb, temp, 8*SIZE);
4078     for(i=0; i<COUNT; i++){
4079         int j, s;
4080
4081         s= show_bits(&gb, 24);
4082
4083         START_TIMER
4084         j= get_ue_golomb(&gb);
4085         if(j != i){
4086             printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
4087 //            return -1;
4088         }
4089         STOP_TIMER("get_ue_golomb");
4090     }
4091
4092
4093     init_put_bits(&pb, temp, SIZE);
4094     printf("testing signed exp golomb\n");
4095     for(i=0; i<COUNT; i++){
4096         START_TIMER
4097         set_se_golomb(&pb, i - COUNT/2);
4098         STOP_TIMER("set_se_golomb");
4099     }
4100     flush_put_bits(&pb);
4101
4102     init_get_bits(&gb, temp, 8*SIZE);
4103     for(i=0; i<COUNT; i++){
4104         int j, s;
4105
4106         s= show_bits(&gb, 24);
4107
4108         START_TIMER
4109         j= get_se_golomb(&gb);
4110         if(j != i - COUNT/2){
4111             printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
4112 //            return -1;
4113         }
4114         STOP_TIMER("get_se_golomb");
4115     }
4116
4117     printf("Testing RBSP\n");
4118
4119
4120     return 0;
4121 }
4122 #endif /* TEST */
4123
4124
4125 av_cold void ff_h264_free_context(H264Context *h)
4126 {
4127     int i;
4128
4129     free_tables(h, 1); //FIXME cleanup init stuff perhaps
4130
4131     for(i = 0; i < MAX_SPS_COUNT; i++)
4132         av_freep(h->sps_buffers + i);
4133
4134     for(i = 0; i < MAX_PPS_COUNT; i++)
4135         av_freep(h->pps_buffers + i);
4136 }
4137
4138 av_cold int ff_h264_decode_end(AVCodecContext *avctx)
4139 {
4140     H264Context *h = avctx->priv_data;
4141     MpegEncContext *s = &h->s;
4142
4143     ff_h264_free_context(h);
4144
4145     MPV_common_end(s);
4146
4147 //    memset(h, 0, sizeof(H264Context));
4148
4149     return 0;
4150 }
4151
4152 static const AVProfile profiles[] = {
4153     { FF_PROFILE_H264_BASELINE,             "Baseline"              },
4154     { FF_PROFILE_H264_CONSTRAINED_BASELINE, "Constrained Baseline"  },
4155     { FF_PROFILE_H264_MAIN,                 "Main"                  },
4156     { FF_PROFILE_H264_EXTENDED,             "Extended"              },
4157     { FF_PROFILE_H264_HIGH,                 "High"                  },
4158     { FF_PROFILE_H264_HIGH_10,              "High 10"               },
4159     { FF_PROFILE_H264_HIGH_10_INTRA,        "High 10 Intra"         },
4160     { FF_PROFILE_H264_HIGH_422,             "High 4:2:2"            },
4161     { FF_PROFILE_H264_HIGH_422_INTRA,       "High 4:2:2 Intra"      },
4162     { FF_PROFILE_H264_HIGH_444,             "High 4:4:4"            },
4163     { FF_PROFILE_H264_HIGH_444_PREDICTIVE,  "High 4:4:4 Predictive" },
4164     { FF_PROFILE_H264_HIGH_444_INTRA,       "High 4:4:4 Intra"      },
4165     { FF_PROFILE_H264_CAVLC_444,            "CAVLC 4:4:4"           },
4166     { FF_PROFILE_UNKNOWN },
4167 };
4168
4169 AVCodec ff_h264_decoder = {
4170     .name           = "h264",
4171     .type           = AVMEDIA_TYPE_VIDEO,
4172     .id             = CODEC_ID_H264,
4173     .priv_data_size = sizeof(H264Context),
4174     .init           = ff_h264_decode_init,
4175     .close          = ff_h264_decode_end,
4176     .decode         = decode_frame,
4177     .capabilities   = /*CODEC_CAP_DRAW_HORIZ_BAND |*/ CODEC_CAP_DR1 | CODEC_CAP_DELAY |
4178                       CODEC_CAP_SLICE_THREADS | CODEC_CAP_FRAME_THREADS,
4179     .flush= flush_dpb,
4180     .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
4181     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
4182     .update_thread_context = ONLY_IF_THREADS_ENABLED(decode_update_thread_context),
4183     .profiles = NULL_IF_CONFIG_SMALL(profiles),
4184 };
4185
4186 #if CONFIG_H264_VDPAU_DECODER
4187 AVCodec ff_h264_vdpau_decoder = {
4188     .name           = "h264_vdpau",
4189     .type           = AVMEDIA_TYPE_VIDEO,
4190     .id             = CODEC_ID_H264,
4191     .priv_data_size = sizeof(H264Context),
4192     .init           = ff_h264_decode_init,
4193     .close          = ff_h264_decode_end,
4194     .decode         = decode_frame,
4195     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_HWACCEL_VDPAU,
4196     .flush= flush_dpb,
4197     .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)"),
4198     .pix_fmts = (const enum PixelFormat[]){PIX_FMT_VDPAU_H264, PIX_FMT_NONE},
4199     .profiles = NULL_IF_CONFIG_SMALL(profiles),
4200 };
4201 #endif