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