2 * H.26L/H.264/AVC/JVT/14496-10/... decoder
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of FFmpeg.
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.
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.
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
24 * H.264 / AVC / MPEG4 part10 codec.
25 * @author Michael Niedermayer <michaelni@gmx.at>
28 #include "libavutil/imgutils.h"
29 #include "libavutil/opt.h"
33 #include "mpegvideo.h"
36 #include "h264_mvpred.h"
39 #include "rectangle.h"
41 #include "vdpau_internal.h"
42 #include "libavutil/avassert.h"
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,
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,
57 static const enum PixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = {
66 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
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};
74 if(!(h->top_samples_available&0x8000)){
76 int status= top[ h->intra4x4_pred_mode_cache[scan8[0] + i] ];
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);
81 h->intra4x4_pred_mode_cache[scan8[0] + i]= status;
86 if((h->left_samples_available&0x8888)!=0x8888){
87 static const int mask[4]={0x8000,0x2000,0x80,0x20};
89 if(!(h->left_samples_available&mask[i])){
90 int status= left[ h->intra4x4_pred_mode_cache[scan8[0] + 8*i] ];
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);
95 h->intra4x4_pred_mode_cache[scan8[0] + 8*i]= status;
102 } //FIXME cleanup like check_intra_pred_mode
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};
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);
114 if(!(h->top_samples_available&0x8000)){
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);
122 if((h->left_samples_available&0x8080) != 0x8080){
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);
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);
137 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
139 int ff_h264_check_intra16x16_pred_mode(H264Context *h, int mode)
141 return check_intra_pred_mode(h, mode, 0);
145 * checks if the top & left blocks are available if needed & changes the dc mode so it only uses the available blocks.
147 int ff_h264_check_intra_chroma_pred_mode(H264Context *h, int mode)
149 return check_intra_pred_mode(h, mode, 1);
153 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length){
158 // src[0]&0x80; //forbidden bit
159 h->nal_ref_idc= src[0]>>5;
160 h->nal_unit_type= src[0]&0x1F;
164 #if HAVE_FAST_UNALIGNED
167 for(i=0; i+1<length; i+=9){
168 if(!((~AV_RN64A(src+i) & (AV_RN64A(src+i) - 0x0100010001000101ULL)) & 0x8000800080008080ULL))
171 for(i=0; i+1<length; i+=5){
172 if(!((~AV_RN32A(src+i) & (AV_RN32A(src+i) - 0x01000101U)) & 0x80008080U))
175 if(i>0 && !src[i]) i--;
179 for(i=0; i+1<length; i+=2){
181 if(i>0 && src[i-1]==0) i--;
183 if(i+2<length && src[i+1]==0 && src[i+2]<=3){
185 /* startcode, so we must be past the end */
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);
204 if(i>=length-1){ //no escaped 0
206 *consumed= length+1; //+1 for the header
207 if(h->s.avctx->flags2 & CODEC_FLAG2_FAST){
210 memcpy(dst, src, length);
215 //printf("decoding esc\n");
219 //remove escapes (very rare 1:2^22)
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
229 }else //next start code
233 dst[di++]= src[si++];
236 dst[di++]= src[si++];
239 memset(dst+di, 0, FF_INPUT_BUFFER_PADDING_SIZE);
242 *consumed= si + 1;//+1 for the header
243 //FIXME store exact number of bits in the getbitcontext (it is needed for decoding)
248 * Identify the exact end of the bitstream
249 * @return the length of the trailing, or 0 if damaged
251 static int ff_h264_decode_rbsp_trailing(H264Context *h, const uint8_t *src){
255 tprintf(h->s.avctx, "rbsp trailing %X\n", v);
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;
271 return FFMAX(abs(top), bottom);
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;
279 y_offset += 16*(s->mb_y >> MB_FIELD);
282 int ref_n = h->ref_cache[0][ scan8[n] ];
283 Picture *ref= &h->ref_list[0][ref_n];
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);
297 int ref_n = h->ref_cache[1][ scan8[n] ];
298 Picture *ref= &h->ref_list[1][ref_n];
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);
310 * Wait until all reference frames are available for MC operations.
312 * @param h the H264 context
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];
322 memset(refs, -1, sizeof(refs));
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);
340 assert(IS_8X8(mb_type));
343 const int sub_mb_type= h->sub_mb_type[i];
345 int y_offset= (i&2)<<2;
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);
362 assert(IS_SUB_4X4(sub_mb_type));
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);
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];
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;
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);
392 ff_thread_await_progress((AVFrame*)ref_pic, FFMIN(row, pic_height-1), 0);
401 * DCT transforms the 16 dc values.
402 * @param qp quantization parameter ??? FIXME
404 static void h264_luma_dc_dct_c(DCTELEM *block/*, int qp*/){
405 // const int qmul= dequant_coeff[qp][0];
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};
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];
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];
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;
443 static void chroma_dc_dct_c(DCTELEM *block){
444 const int stride= 16*2;
445 const int xStride= 16;
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];
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);
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)
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;
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;
489 if(mx&7) extra_width -= 3;
490 if(my&7) extra_height -= 3;
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;
502 qpix_op[luma_xy](dest_y, src_y, h->mb_linesize); //FIXME try variable height perhaps?
504 qpix_op[luma_xy](dest_y + delta, src_y + delta, h->mb_linesize);
507 if(CONFIG_GRAY && s->flags&CODEC_FLAG_GRAY) return;
509 if(chroma_idc == 3 /* yuv444 */){
510 src_cb = pic->f.data[1] + offset;
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;
516 qpix_op[luma_xy](dest_cb, src_cb, h->mb_linesize); //FIXME try variable height perhaps?
518 qpix_op[luma_xy](dest_cb + delta, src_cb + delta, h->mb_linesize);
521 src_cr = pic->f.data[2] + offset;
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;
527 qpix_op[luma_xy](dest_cr, src_cr, h->mb_linesize); //FIXME try variable height perhaps?
529 qpix_op[luma_xy](dest_cr + delta, src_cr + delta, h->mb_linesize);
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);
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;
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;
550 chroma_op(dest_cb, src_cb, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
551 mx&7, (my << (chroma_idc == 2 /* yuv422 */)) &7);
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;
559 chroma_op(dest_cr, src_cr, h->mb_uvlinesize, height >> (chroma_idc == 1 /* yuv420 */),
560 mx&7, (my << (chroma_idc == 2 /* yuv422 */)) &7);
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)
571 MpegEncContext * const s = &h->s;
572 qpel_mc_func *qpix_op= qpix_put;
573 h264_chroma_mc_func chroma_op= chroma_put;
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;
586 x_offset += 8*s->mb_x;
587 y_offset += 8*(s->mb_y >> MB_FIELD);
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);
596 chroma_op= chroma_avg;
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);
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;
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;
634 x_offset += 8*s->mb_x;
635 y_offset += 8*(s->mb_y >> MB_FIELD);
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] ];
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);
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);
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]);
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);
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]);
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)
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))
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);
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);
716 static av_always_inline void
717 prefetch_motion(H264Context *h, int list, int pixel_shift, int chroma_idc)
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]];
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);
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);
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)
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];
749 assert(IS_INTER(mb_type));
751 if(HAVE_THREADS && (s->avctx->active_thread_type & FF_THREAD_FRAME))
753 prefetch_motion(h, 0, pixel_shift, chroma_idc);
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);
786 assert(IS_8X8(mb_type));
789 const int sub_mb_type= h->sub_mb_type[i];
791 int x_offset= (i&1)<<2;
792 int y_offset= (i&2)<<1;
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);
824 assert(IS_SUB_4X4(sub_mb_type));
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);
838 prefetch_motion(h, 1, pixel_shift, chroma_idc);
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,
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);
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,
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);
863 static void free_tables(H264Context *h, int free_rbsp){
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);
878 av_freep(&h->mb2b_xy);
879 av_freep(&h->mb2br_xy);
881 for(i = 0; i < MAX_THREADS; i++) {
882 hx = h->thread_context[i];
884 av_freep(&hx->top_borders[1]);
885 av_freep(&hx->top_borders[0]);
886 av_freep(&hx->s.obmc_scratchpad);
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;
893 if (i) av_freep(&h->thread_context[i]);
897 static void init_dequant8_coeff_table(H264Context *h){
899 const int max_qp = 51 + 6*(h->sps.bit_depth_luma-8);
902 h->dequant8_coeff[i] = h->dequant8_buffer[i];
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];
912 for(q=0; q<max_qp+1; q++){
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;
923 static void init_dequant4_coeff_table(H264Context *h){
925 const int max_qp = 51 + 6*(h->sps.bit_depth_luma-8);
927 h->dequant4_coeff[i] = h->dequant4_buffer[i];
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];
937 for(q=0; q<max_qp+1; q++){
938 int shift = div6[q] + 2;
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;
948 static void init_dequant_tables(H264Context *h){
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){
956 h->dequant4_coeff[i][0][x] = 1<<6;
957 if(h->pps.transform_8x8_mode)
960 h->dequant8_coeff[i][0][x] = 1<<6;
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;
971 FF_ALLOCZ_OR_GOTO(h->s.avctx, h->intra4x4_pred_mode, row_mb_num * 8 * sizeof(uint8_t), fail)
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)
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)
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;
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;
993 h->mb2b_xy [mb_xy]= b_xy;
994 h->mb2br_xy[mb_xy]= 8*(FMO ? mb_xy : (mb_xy % (2*s->mb_stride)));
998 s->obmc_scratchpad = NULL;
1000 if(!h->dequant4_coeff[0])
1001 init_dequant_tables(h);
1010 * Mimic alloc_tables(), but for every context thread.
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;
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);
1032 * Allocate buffers which are not shared amongst multiple threads.
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)
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;
1043 return -1; // free_tables will clean up for us
1046 static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size);
1048 static av_cold void common_init(H264Context *h){
1049 MpegEncContext * const s = &h->s;
1051 s->width = s->avctx->width;
1052 s->height = s->avctx->height;
1053 s->codec_id= s->avctx->codec->id;
1055 s->avctx->bits_per_raw_sample = 8;
1056 h->cur_chroma_format_idc = 1;
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);
1063 h->dequant_coeff_pps= -1;
1064 s->unrestricted_mv=1;
1066 s->dsp.dct_bits = 16;
1067 dsputil_init(&s->dsp, s->avctx); // needed so that idct permutation is known early
1069 memset(h->pps.scaling_matrix4, 16, 6*16*sizeof(uint8_t));
1070 memset(h->pps.scaling_matrix8, 16, 2*64*sizeof(uint8_t));
1073 int ff_h264_decode_extradata(H264Context *h, const uint8_t *buf, int size)
1075 AVCodecContext *avctx = h->s.avctx;
1077 if(!buf || size <= 0)
1081 int i, cnt, nalsize;
1082 const unsigned char *p = buf;
1087 av_log(avctx, AV_LOG_ERROR, "avcC too short\n");
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
1096 for (i = 0; i < cnt; i++) {
1097 nalsize = AV_RB16(p) + 2;
1098 if(nalsize > size - (p-buf))
1100 if(decode_nal_units(h, p, nalsize) < 0) {
1101 av_log(avctx, AV_LOG_ERROR, "Decoding sps %d from avcC failed\n", i);
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))
1112 if (decode_nal_units(h, p, nalsize) < 0) {
1113 av_log(avctx, AV_LOG_ERROR, "Decoding pps %d from avcC failed\n", i);
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;
1122 if(decode_nal_units(h, buf, size) < 0)
1128 av_cold int ff_h264_decode_init(AVCodecContext *avctx){
1129 H264Context *h= avctx->priv_data;
1130 MpegEncContext * const s = &h->s;
1133 MPV_decode_defaults(s);
1138 s->out_format = FMT_H264;
1139 s->workaround_bugs= avctx->workaround_bugs;
1142 // s->decode_mb= ff_h263_decode_mb;
1143 s->quarter_sample = 1;
1144 if(!avctx->has_b_frames)
1147 avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
1149 ff_h264_decode_init_vlc();
1152 h->sps.bit_depth_luma = avctx->bits_per_raw_sample = 8;
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;
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;
1165 avctx->ticks_per_frame = 2;
1168 if(avctx->extradata_size > 0 && avctx->extradata &&
1169 ff_h264_decode_extradata(h, avctx->extradata, avctx->extradata_size))
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;
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)
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) ||
1189 to[i] = REBASE_PICTURE(from[i], new_base, old_base);
1193 static void copy_parameter_set(void **to, void **from, int count, int size)
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);
1201 if (from[i]) memcpy(to[i], from[i], size);
1205 static int decode_init_thread_copy(AVCodecContext *avctx){
1206 H264Context *h= avctx->priv_data;
1208 if (!avctx->internal->is_copy)
1210 memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
1211 memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
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;
1223 if(dst == src || !s1->context_initialized) return 0;
1225 err = ff_mpeg_update_thread_context(dst, src);
1228 //FIXME handle width/height changing
1230 for(i = 0; i < MAX_SPS_COUNT; i++)
1231 av_freep(h->sps_buffers + i);
1233 for(i = 0; i < MAX_PPS_COUNT; i++)
1234 av_freep(h->pps_buffers + i);
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);
1246 h->rbsp_buffer[i] = NULL;
1247 h->rbsp_buffer_size[i] = 0;
1250 h->thread_context[0] = h;
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);
1256 s->dsp.clear_blocks(h->mb);
1257 s->dsp.clear_blocks(h->mb+(24*16<<h->pixel_shift));
1260 //extradata/NAL handling
1261 h->is_avc = h1->is_avc;
1264 copy_parameter_set((void**)h->sps_buffers, (void**)h1->sps_buffers, MAX_SPS_COUNT, sizeof(SPS));
1266 copy_parameter_set((void**)h->pps_buffers, (void**)h1->pps_buffers, MAX_PPS_COUNT, sizeof(PPS));
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);
1274 h->dequant4_coeff[i] = h->dequant4_buffer[0] + (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
1277 h->dequant8_coeff[i] = h->dequant8_buffer[0] + (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
1279 h->dequant_coeff_pps = h1->dequant_coeff_pps;
1282 copy_fields(h, h1, poc_lsb, redundant_pic_count);
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);
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);
1293 h->last_slice_type = h1->last_slice_type;
1296 if(!s->current_picture_ptr) return 0;
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;
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;
1310 int ff_h264_frame_start(H264Context *h){
1311 MpegEncContext * const s = &h->s;
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;
1316 if(MPV_frame_start(s, s->avctx) < 0)
1318 ff_er_frame_start(s);
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().
1325 s->current_picture_ptr->f.key_frame = 0;
1326 s->current_picture_ptr->mmco_reset= 0;
1328 assert(s->linesize && s->uvlinesize);
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);
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);
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);
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));
1350 // s->decode = (s->flags & CODEC_FLAG_PSNR) || !s->encoding || s->current_picture.f.reference /*|| h->contains_intra*/ || 1;
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;
1361 s->current_picture_ptr->field_poc[0]=
1362 s->current_picture_ptr->field_poc[1]= INT_MAX;
1364 h->next_output_pic = NULL;
1366 assert(s->current_picture_ptr->long_ref==0);
1372 * Run setup operations that must be run after slice header decoding.
1373 * This includes finding the next displayed frame.
1375 * @param h h264 master context
1376 * @param setup_finished enough NALs have been read that we can call
1377 * ff_thread_finish_setup()
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;
1385 s->current_picture_ptr->f.qscale_type = FF_QSCALE_TYPE_H264;
1386 s->current_picture_ptr->f.pict_type = s->pict_type;
1388 if (h->next_output_pic) return;
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);
1399 cur->f.interlaced_frame = 0;
1400 cur->f.repeat_pict = 0;
1402 /* Signal interlacing information externally. */
1403 /* Prioritize picture timing SEI information over used decoding process if it exists. */
1405 if(h->sps.pic_struct_present_flag){
1406 switch (h->sei_pic_struct)
1408 case SEI_PIC_STRUCT_FRAME:
1410 case SEI_PIC_STRUCT_TOP_FIELD:
1411 case SEI_PIC_STRUCT_BOTTOM_FIELD:
1412 cur->f.interlaced_frame = 1;
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;
1419 // try to flag soft telecine progressive
1420 cur->f.interlaced_frame = h->prev_interlaced_frame;
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;
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;
1432 case SEI_PIC_STRUCT_FRAME_TRIPLING:
1433 cur->f.repeat_pict = 4;
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;
1440 /* Derive interlacing flag from used decoding process. */
1441 cur->f.interlaced_frame = FIELD_OR_MBAFF_PICTURE;
1443 h->prev_interlaced_frame = cur->f.interlaced_frame;
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];
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;
1455 cur->f.top_field_first = 0;
1457 /* Most likely progressive */
1458 cur->f.top_field_first = 0;
1462 //FIXME do something with unavailable reference frames
1464 /* Sort B-frames into display order */
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;
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;
1478 for (i = 0; 1; i++) {
1479 if(i == MAX_DELAYED_PIC_COUNT || cur->poc < h->last_pocs[i]){
1481 h->last_pocs[i-1] = cur->poc;
1484 h->last_pocs[i-1]= h->last_pocs[i];
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;
1498 while(h->delayed_pic[pics]) pics++;
1500 av_assert0(pics <= MAX_DELAYED_PIC_COUNT);
1502 h->delayed_pic[pics++] = cur;
1503 if (cur->f.reference == 0)
1504 cur->f.reference = DELAYED_PIC_REF;
1506 out = h->delayed_pic[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];
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;
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];
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;
1529 h->next_outputed_poc = out->poc;
1531 av_log(s->avctx, AV_LOG_DEBUG, "no picture\n");
1534 if (h->next_output_pic && h->next_output_pic->sync) {
1539 ff_thread_finish_setup(s->avctx);
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)
1546 MpegEncContext * const s = &h->s;
1547 uint8_t *top_border;
1549 const int pixel_shift = h->pixel_shift;
1550 int chroma444 = CHROMA444;
1551 int chroma422 = CHROMA422;
1554 src_cb -= uvlinesize;
1555 src_cr -= uvlinesize;
1557 if(!simple && FRAME_MBAFF){
1560 top_border = h->top_borders[0][s->mb_x];
1561 AV_COPY128(top_border, src_y + 15*linesize);
1563 AV_COPY128(top_border+16, src_y+15*linesize+16);
1564 if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
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);
1572 AV_COPY128(top_border+16, src_cb + 15*uvlinesize);
1573 AV_COPY128(top_border+32, src_cr + 15*uvlinesize);
1575 } else if(chroma422){
1577 AV_COPY128(top_border+32, src_cb + 15*uvlinesize);
1578 AV_COPY128(top_border+48, src_cr + 15*uvlinesize);
1580 AV_COPY64(top_border+16, src_cb + 15*uvlinesize);
1581 AV_COPY64(top_border+24, src_cr + 15*uvlinesize);
1585 AV_COPY128(top_border+32, src_cb+7*uvlinesize);
1586 AV_COPY128(top_border+48, src_cr+7*uvlinesize);
1588 AV_COPY64(top_border+16, src_cb+7*uvlinesize);
1589 AV_COPY64(top_border+24, src_cr+7*uvlinesize);
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);
1605 AV_COPY128(top_border+16, src_y+16*linesize+16);
1607 if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
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);
1615 AV_COPY128(top_border+16, src_cb + 16*linesize);
1616 AV_COPY128(top_border+32, src_cr + 16*linesize);
1618 } else if(chroma422) {
1620 AV_COPY128(top_border+32, src_cb+16*uvlinesize);
1621 AV_COPY128(top_border+48, src_cr+16*uvlinesize);
1623 AV_COPY64(top_border+16, src_cb+16*uvlinesize);
1624 AV_COPY64(top_border+24, src_cr+16*uvlinesize);
1628 AV_COPY128(top_border+32, src_cb+8*uvlinesize);
1629 AV_COPY128(top_border+48, src_cr+8*uvlinesize);
1631 AV_COPY64(top_border+16, src_cb+8*uvlinesize);
1632 AV_COPY64(top_border+24, src_cr+8*uvlinesize);
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;
1647 uint8_t *top_border_m1;
1648 uint8_t *top_border;
1650 if(!simple && FRAME_MBAFF){
1655 top_idx = MB_MBAFF ? 0 : 1;
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;
1663 deblock_topleft = (s->mb_x > 0);
1664 deblock_top = (s->mb_y > !!MB_FIELD);
1667 src_y -= linesize + 1 + pixel_shift;
1668 src_cb -= uvlinesize + 1 + pixel_shift;
1669 src_cr -= uvlinesize + 1 + pixel_shift;
1671 top_border_m1 = h->top_borders[top_idx][s->mb_x-1];
1672 top_border = h->top_borders[top_idx][s->mb_x];
1674 #define XCHG(a,b,xchg)\
1677 AV_SWAP64(b+0,a+0);\
1678 AV_SWAP64(b+8,a+8);\
1683 if (xchg) AV_SWAP64(b,a);\
1684 else AV_COPY64(b,a);
1687 if(deblock_topleft){
1688 XCHG(top_border_m1 + (8 << pixel_shift), src_y - (7 << pixel_shift), 1);
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);
1696 if(simple || !CONFIG_GRAY || !(s->flags&CODEC_FLAG_GRAY)){
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);
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);
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);
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);
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);
1727 return AV_RN16A(mb + index);
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);
1734 AV_WN16A(mb + index, value);
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)
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);
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){
1751 idct_add = s->dsp.add_pixels8;
1753 idct_dc_add = h->h264dsp.h264_idct8_dc_add;
1754 idct_add = h->h264dsp.h264_idct8_add;
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);
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);
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);
1769 idct_add (ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1774 if(transform_bypass){
1776 idct_add = s->dsp.add_pixels4;
1778 idct_dc_add = h->h264dsp.h264_idct_dc_add;
1779 idct_add = h->h264dsp.h264_idct_add;
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] ];
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);
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){
1796 tr_high= ((uint16_t*)ptr)[3 - linesize/2]*0x0001000100010001ULL;
1797 topright= (uint8_t*) &tr_high;
1799 tr= ptr[3 - linesize]*0x01010101u;
1800 topright= (uint8_t*) &tr;
1803 topright= ptr + (4 << pixel_shift) - linesize;
1807 h->hpc.pred4x4[ dir ](ptr, topright, linesize);
1808 nnz = h->non_zero_count_cache[ scan8[i+p*16] ];
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);
1814 idct_add (ptr, h->mb + (i*16+p*256 << pixel_shift), linesize);
1816 ff_svq3_add_idct_c(ptr, h->mb + i*16+p*256, linesize, qscale, 0);
1823 h->hpc.pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
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]);
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));
1836 ff_svq3_luma_dc_dequant_idct_c(h->mb+p*256, h->mb_luma_dc[p], qscale);
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)
1843 MpegEncContext * const s = &h->s;
1844 void (*idct_add)(uint8_t *dst, DCTELEM *block, int stride);
1846 block_offset += 16*p;
1847 if(!IS_INTRA4x4(mb_type)){
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);
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);
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);
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);
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);
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);
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);
1890 static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple, int pixel_shift)
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*/;
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;
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;
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);
1915 h->list_counts[mb_xy]= h->list_count;
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);
1928 for(list=0; list<h->list_count; list++){
1929 if(!USES_LIST(mb_type, list))
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);
1935 for(i=0; i<16; i+=4){
1936 int ref = h->ref_cache[list][scan8[i]];
1938 fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
1944 linesize = h->mb_linesize = s->linesize;
1945 uvlinesize = h->mb_uvlinesize = s->uvlinesize;
1946 // dct_offset = s->linesize * 16;
1949 if (!simple && IS_INTRA_PCM(mb_type)) {
1950 const int bit_depth = h->sps.bit_depth_luma;
1954 init_get_bits(&gb, (uint8_t*)h->mb, 384*bit_depth);
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);
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);
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);
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);
1984 for (i=0; i<16; i++) {
1985 memcpy(dest_y + i* linesize, h->mb + i*8, 16);
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);
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);
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);
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);
2011 hl_decode_mb_predict_luma(h, mb_type, is_h264, simple, transform_bypass, pixel_shift, block_offset, linesize, dest_y, 0);
2013 if(h->deblocking_filter)
2014 xchg_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0, 0, simple, pixel_shift);
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,
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,
2033 hl_decode_mb_idct_luma(h, mb_type, is_h264, simple, transform_bypass, pixel_shift, block_offset, linesize, dest_y, 0);
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);
2042 idct_add = s->dsp.add_pixels4;
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);
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);
2060 qp[0] = h->chroma_qp[0] + 3;
2061 qp[1] = h->chroma_qp[1] + 3;
2063 qp[0] = h->chroma_qp[0];
2064 qp[1] = h->chroma_qp[1];
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,
2072 h->non_zero_count_cache);
2074 #if CONFIG_SVQ3_DECODER
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]);
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);
2091 if(h->cbp || IS_INTRA(mb_type))
2093 s->dsp.clear_blocks(h->mb);
2094 s->dsp.clear_blocks(h->mb+(24*16<<pixel_shift));
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];
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;
2111 for (p = 0; p < plane_count; p++)
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);
2117 h->list_counts[mb_xy]= h->list_count;
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;
2127 for(list=0; list<h->list_count; list++){
2128 if(!USES_LIST(mb_type, list))
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);
2134 for(i=0; i<16; i+=4){
2135 int ref = h->ref_cache[list][scan8[i]];
2137 fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1);
2143 linesize = h->mb_linesize = h->mb_uvlinesize = s->linesize;
2146 if (!simple && IS_INTRA_PCM(mb_type)) {
2148 const int bit_depth = h->sps.bit_depth_luma;
2150 init_get_bits(&gb, (uint8_t*)h->mb, 768*bit_depth);
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);
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);
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);
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);
2174 if(h->deblocking_filter)
2175 xchg_mb_border(h, dest[0], dest[1], dest[2], linesize, linesize, 0, 1, simple, pixel_shift);
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);
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);
2187 if(h->cbp || IS_INTRA(mb_type))
2189 s->dsp.clear_blocks(h->mb);
2190 s->dsp.clear_blocks(h->mb+(24*16<<pixel_shift));
2195 * Process a macroblock; this case avoids checks for expensive uncommon cases.
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); \
2201 hl_decode_mb_simple(0, 8);
2202 hl_decode_mb_simple(1, 16);
2205 * Process a macroblock; this handles edge cases, such as interlacing.
2207 static void av_noinline hl_decode_mb_complex(H264Context *h){
2208 hl_decode_mb_internal(h, 0, h->pixel_shift);
2211 static void av_noinline hl_decode_mb_444_complex(H264Context *h){
2212 hl_decode_mb_444_internal(h, 0, h->pixel_shift);
2215 static void av_noinline hl_decode_mb_444_simple(H264Context *h){
2216 hl_decode_mb_444_internal(h, 1, 0);
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;
2226 if(is_complex || h->pixel_shift)
2227 hl_decode_mb_444_complex(h);
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);
2235 hl_decode_mb_simple_8(h);
2238 static int pred_weight_table(H264Context *h){
2239 MpegEncContext * const s = &h->s;
2241 int luma_def, chroma_def;
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;
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;
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) {
2264 h->luma_weight_flag[list]= 1;
2267 h->luma_weight[i][list][0]= luma_def;
2268 h->luma_weight[i][list][1]= 0;
2271 if(h->sps.chroma_format_idc){
2272 chroma_weight_flag= get_bits1(&s->gb);
2273 if(chroma_weight_flag){
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;
2287 h->chroma_weight[i][list][j][0]= chroma_def;
2288 h->chroma_weight[i][list][j][1]= 0;
2293 if(h->slice_type_nos != AV_PICTURE_TYPE_B) break;
2295 h->use_weight= h->use_weight || h->use_weight_chroma;
2300 * Initialize implicit_weight table.
2301 * @param field 0/1 initialize the weight for interlaced MBAFF
2302 * -1 initializes the rest
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;
2308 for (i = 0; i < 2; i++) {
2309 h->luma_weight_flag[i] = 0;
2310 h->chroma_weight_flag[i] = 0;
2314 if (s->picture_structure == PICT_FRAME) {
2315 cur_poc = s->current_picture_ptr->poc;
2317 cur_poc = s->current_picture_ptr->field_poc[s->picture_structure - 1];
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){
2322 h->use_weight_chroma= 0;
2326 ref_count0= h->ref_count[0];
2327 ref_count1= h->ref_count[1];
2329 cur_poc = s->current_picture_ptr->field_poc[field];
2331 ref_count0= 16+2*h->ref_count[0];
2332 ref_count1= 16+2*h->ref_count[1];
2336 h->use_weight_chroma= 2;
2337 h->luma_log2_weight_denom= 5;
2338 h->chroma_log2_weight_denom= 5;
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++){
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);
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;
2356 h->implicit_weight[ref0][ref1][0]=
2357 h->implicit_weight[ref0][ref1][1]= w;
2359 h->implicit_weight[ref0][ref1][field]=w;
2366 * instantaneous decoder refresh.
2368 static void idr(H264Context *h){
2370 ff_h264_remove_all_refs(h);
2371 h->prev_frame_num= -1;
2372 h->prev_frame_num_offset= 0;
2375 for (i = 0; i < MAX_DELAYED_PIC_COUNT; i++)
2376 h->last_pocs[i] = INT_MIN;
2379 /* forget old pics after a seek */
2380 static void flush_dpb(AVCodecContext *avctx){
2381 H264Context *h= avctx->priv_data;
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;
2388 h->outputed_poc=h->next_outputed_poc= INT_MIN;
2389 h->prev_interlaced_frame = 1;
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;
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;
2404 Picture *cur = s->current_picture_ptr;
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;
2410 if(h->sps.poc_type==0){
2411 const int max_poc_lsb= 1<<h->sps.log2_max_poc_lsb;
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;
2418 h->poc_msb = h->prev_poc_msb;
2419 //printf("poc: %d %d\n", h->poc_msb, h->poc_lsb);
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;
2428 if(h->sps.poc_cycle_length != 0)
2429 abs_frame_num = h->frame_num_offset + h->frame_num;
2433 if(h->nal_ref_idc==0 && abs_frame_num > 0)
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
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;
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 ];
2450 if(h->nal_ref_idc == 0)
2451 expectedpoc = expectedpoc + h->sps.offset_for_non_ref_pic;
2453 field_poc[0] = expectedpoc + h->delta_poc[0];
2454 field_poc[1] = field_poc[0] + h->sps.offset_for_top_to_bottom_field;
2456 if(s->picture_structure == PICT_FRAME)
2457 field_poc[1] += h->delta_poc[1];
2459 int poc= 2*(h->frame_num_offset + h->frame_num);
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]);
2479 * initialize scan tables
2481 static void init_scan_tables(H264Context *h){
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]);
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]);
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;
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;
2514 static int field_end(H264Context *h, int in_setup){
2515 MpegEncContext * const s = &h->s;
2516 AVCodecContext * const avctx= s->avctx;
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);
2524 if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
2525 ff_vdpau_h264_set_reference_frames(s);
2527 if(in_setup || !(avctx->active_thread_type&FF_THREAD_FRAME)){
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;
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;
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");
2543 if (CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
2544 ff_vdpau_h264_picture_complete(s);
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.
2569 * Replicate H264 "master" context to thread contexts.
2571 static void clone_slice(H264Context *dst, H264Context *src)
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;
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;
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));
2591 memcpy(dst->dequant4_coeff, src->dequant4_coeff, sizeof(src->dequant4_coeff));
2592 memcpy(dst->dequant8_coeff, src->dequant8_coeff, sizeof(src->dequant8_coeff));
2596 * computes profile from profile_idc and constraint_set?_flags
2600 * @return profile as defined by FF_PROFILE_H264_*
2602 int ff_h264_get_profile(SPS *sps)
2604 int profile = sps->profile_idc;
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;
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;
2623 * decodes a slice header.
2624 * This will also call MPV_common_init() and frame_start() as needed.
2626 * @param h h264context
2627 * @param h0 h264 master context (differs from 'h' when doing sliced based parallel decoding)
2629 * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
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;
2641 s->dropable= h->nal_ref_idc == 0;
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;
2648 s->me.qpel_put= s->dsp.put_h264_qpel_pixels_tab;
2649 s->me.qpel_avg= s->dsp.avg_h264_qpel_pixels_tab;
2652 first_mb_in_slice= get_ue_golomb_long(&s->gb);
2654 if(first_mb_in_slice == 0){ //FIXME better field boundary detection
2655 if(h0->current_slice && FIELD_PICTURE){
2659 h0->current_slice = 0;
2660 if (!s0->first_field)
2661 s->current_picture_ptr= NULL;
2664 slice_type= get_ue_golomb_31(&s->gb);
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);
2671 h->slice_type_fixed=1;
2673 h->slice_type_fixed=0;
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;
2680 h->slice_type= slice_type;
2681 h->slice_type_nos= slice_type & 3;
2683 s->pict_type= h->slice_type; // to make a few old functions happy, it's wrong though
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");
2690 if(!h0->pps_buffers[pps_id]) {
2691 av_log(h->s.avctx, AV_LOG_ERROR, "non-existing PPS %u referenced\n", pps_id);
2694 h->pps= *h0->pps_buffers[pps_id];
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);
2700 h->sps = *h0->sps_buffers[h->pps.sps_id];
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;
2706 if(h == h0 && h->dequant_coeff_pps != pps_id){
2707 h->dequant_coeff_pps = pps_id;
2708 init_dequant_tables(h);
2711 s->mb_width= h->sps.mb_width;
2712 s->mb_height= h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
2714 h->b_stride= s->mb_width*4;
2716 s->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
2718 s->width = 16*s->mb_width;
2719 s->height= 16*s->mb_height;
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))) {
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
2731 flush_dpb(s->avctx);
2735 if (!s->context_initialized) {
2737 av_log(h->s.avctx, AV_LOG_ERROR, "Cannot (re-)initialize context during parallel decoding.\n");
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);
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;
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);
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);
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;
2774 if(h->sps.timing_info_present_flag){
2775 int64_t den= h->sps.time_scale;
2776 if(h->x264_build < 44U)
2778 av_reduce(&s->avctx->time_base.num, &s->avctx->time_base.den,
2779 h->sps.num_units_in_tick, den, 1<<30);
2782 switch (h->sps.bit_depth_luma) {
2785 s->avctx->pix_fmt = PIX_FMT_YUV444P9;
2787 s->avctx->pix_fmt = PIX_FMT_YUV422P9;
2789 s->avctx->pix_fmt = PIX_FMT_YUV420P9;
2793 s->avctx->pix_fmt = PIX_FMT_YUV444P10;
2795 s->avctx->pix_fmt = PIX_FMT_YUV422P10;
2797 s->avctx->pix_fmt = PIX_FMT_YUV420P10;
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");
2808 } else if (CHROMA422) {
2809 s->avctx->pix_fmt = s->avctx->color_range == AVCOL_RANGE_JPEG ? PIX_FMT_YUVJ422P : PIX_FMT_YUV422P;
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);
2820 s->avctx->hwaccel = ff_find_hwaccel(s->avctx->codec->id, s->avctx->pix_fmt);
2822 if (MPV_common_init(s) < 0) {
2823 av_log(h->s.avctx, AV_LOG_ERROR, "MPV_common_init() failed.\n");
2827 h->prev_interlaced_frame = 1;
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);
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");
2841 for(i = 1; i < s->avctx->thread_count; i++) {
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;
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);
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");
2863 h->frame_num= get_bits(&s->gb, h->sps.log2_max_frame_num);
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;
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");
2875 if(get_bits1(&s->gb)) { //field_pic_flag
2876 s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag
2878 s->picture_structure= PICT_FRAME;
2879 h->mb_aff_frame = h->sps.mb_aff;
2882 h->mb_field_decoding_flag= s->picture_structure != PICT_FRAME;
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;
2889 if (unwrap_prev_frame_num > h->frame_num) unwrap_prev_frame_num -= max_frame_num;
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;
2896 h->prev_frame_num = unwrap_prev_frame_num;
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)
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
2921 if (h->short_ref_count) {
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;
2928 h->short_ref[0]->frame_num = h->prev_frame_num;
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);
2938 /* figure out if we have a complementary field pair */
2939 if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {
2941 * Previous field is unmatched. Don't display it, but let it
2942 * remain for reference if marked as such.
2944 s0->current_picture_ptr = NULL;
2945 s0->first_field = FIELD_PICTURE;
2948 if (s0->current_picture_ptr->frame_num != h->frame_num) {
2950 * This and previous field had
2951 * different frame_nums. Consider this field first in
2952 * pair. Throw away previous field except for reference
2955 s0->first_field = 1;
2956 s0->current_picture_ptr = NULL;
2959 /* Second field in complementary pair */
2960 s0->first_field = 0;
2965 /* Frame or first field in a potentially complementary pair */
2966 assert(!s0->current_picture_ptr);
2967 s0->first_field = FIELD_PICTURE;
2970 if(!FIELD_PICTURE || s0->first_field) {
2971 if (ff_h264_frame_start(h) < 0) {
2972 s0->first_field = 0;
2976 ff_release_unused_pictures(s, 0);
2982 s->current_picture_ptr->frame_num= h->frame_num; //FIXME frame_num cleanup
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");
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);
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;
3000 h->curr_pic_num= 2*h->frame_num + 1;
3001 h->max_pic_num= 1<<(h->sps.log2_max_frame_num + 1);
3004 if(h->nal_unit_type == NAL_IDR_SLICE){
3005 get_ue_golomb(&s->gb); /* idr_pic_id */
3008 if(h->sps.poc_type==0){
3009 h->poc_lsb= get_bits(&s->gb, h->sps.log2_max_poc_lsb);
3011 if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME){
3012 h->delta_poc_bottom= get_se_golomb(&s->gb);
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);
3019 if(h->pps.pic_order_present==1 && s->picture_structure==PICT_FRAME)
3020 h->delta_poc[1]= get_se_golomb(&s->gb);
3025 if(h->pps.redundant_pic_cnt_present){
3026 h->redundant_pic_count= get_ue_golomb(&s->gb);
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];
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);
3038 num_ref_idx_active_override_flag= get_bits1(&s->gb);
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;
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;
3051 if(h->slice_type_nos == AV_PICTURE_TYPE_B)
3056 h->ref_count[1]= h->ref_count[0]= h->list_count= 0;
3058 if(!default_ref_list_done){
3059 ff_h264_fill_default_ref_list(h);
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;
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);
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);
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);
3083 for (i = 0; i < 2; i++) {
3084 h->luma_weight_flag[i] = 0;
3085 h->chroma_weight_flag[i] = 0;
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;
3094 ff_h264_fill_mbaff_ref_list(h);
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);
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);
3106 if( h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac ){
3107 tmp = get_ue_golomb_31(&s->gb);
3109 av_log(s->avctx, AV_LOG_ERROR, "cabac_init_idc overflow\n");
3112 h->cabac_init_idc= tmp;
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);
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 */
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 */
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);
3138 av_log(s->avctx, AV_LOG_ERROR, "deblocking_filter_idc %u out of range\n", tmp);
3141 h->deblocking_filter= tmp;
3142 if(h->deblocking_filter < 2)
3143 h->deblocking_filter^= 1; // 1<->0
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);
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;
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;
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;
3174 av_log(h->s.avctx, AV_LOG_ERROR, "Deblocking switched inside frame.\n");
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);
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, ?);
3188 h0->last_slice_type = slice_type;
3189 h->slice_num = ++h0->current_slice;
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);
3202 int *ref2frm= h->ref2frm[h->slice_num&(MAX_SLICES-1)][j];
3203 for(i=0; i<16; i++){
3205 if (h->ref_list[j][i].f.data[0]) {
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) {
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;
3224 ref2frm[i+2]= 4*id_list[i]
3225 + (h->ref_list[j][i].f.reference & 3);
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);
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;
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",
3240 (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"),
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],
3247 h->deblocking_filter, h->slice_alpha_c0_offset/2-26, h->slice_beta_offset/2-26,
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") : ""
3257 int ff_h264_get_slice_type(const H264Context *h)
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;
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)
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]);
3282 ref_cache[1 - 1*8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 0]];
3284 ref_cache[3 - 1*8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 1]];
3286 AV_ZERO128(mv_dst - 1*8);
3287 AV_WN32A(&ref_cache[0 - 1*8], ((LIST_NOT_USED)&0xFF)*0x01010101u);
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]);
3300 ref_cache[-1 + 8]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2*0]];
3302 ref_cache[-1 + 24]= ref2frm[list][s->current_picture.f.ref_index[list][b8_xy + 2*1]];
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);
3311 ref_cache[-1 + 24]= LIST_NOT_USED;
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);
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);
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);
3347 * @return non zero if the loop filter can be skiped
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];
3357 top_xy = mb_xy - (s->mb_stride << MB_FIELD);
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. */
3362 left_xy[LBOT] = left_xy[LTOP] = mb_xy-1;
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);
3367 if (left_mb_field_flag != curr_mb_field_flag) {
3368 left_xy[LTOP] -= s->mb_stride;
3371 if(curr_mb_field_flag){
3372 top_xy += s->mb_stride & (((s->current_picture.f.mb_type[top_xy] >> 7) & 1) - 1);
3374 if (left_mb_field_flag != curr_mb_field_flag) {
3375 left_xy[LBOT] += s->mb_stride;
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];
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];
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)) {
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))
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;
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;
3409 h->top_type = top_type;
3410 h->left_type[LTOP]= left_type[LTOP];
3411 h->left_type[LBOT]= left_type[LBOT];
3413 if(IS_INTRA(mb_type))
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);
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];
3429 nnz = h->non_zero_count[top_xy];
3430 AV_COPY32(&nnz_cache[4+8*0], &nnz[3*4]);
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];
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)){
3445 nnz_cache[5+8*0]= (h->cbp_table[top_xy] & 0x4000) >> 12;
3447 nnz_cache[7+8*0]= (h->cbp_table[top_xy] & 0x8000) >> 12;
3449 if(IS_8x8DCT(left_type[LTOP])){
3451 nnz_cache[3+8*2]= (h->cbp_table[left_xy[LTOP]]&0x2000) >> 12; //FIXME check MBAFF
3453 if(IS_8x8DCT(left_type[LBOT])){
3455 nnz_cache[3+8*4]= (h->cbp_table[left_xy[LBOT]]&0x8000) >> 12; //FIXME check MBAFF
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;
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;
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;
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;
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;
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++){
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];
3495 h->mb_mbaff = h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
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
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);
3513 linesize = h->mb_linesize = s->linesize;
3514 uvlinesize = h->mb_uvlinesize = s->uvlinesize;
3516 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
3517 if(fill_filter_caches(h, mb_type))
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]);
3523 ff_h264_filter_mb (h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
3525 ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb, dest_cr, linesize, uvlinesize);
3530 h->slice_type= old_slice_type;
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);
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]
3545 h->mb_mbaff = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
3549 * Draw edges and report progress for the last MB row.
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;
3558 if (h->deblocking_filter) {
3559 if((top + height) >= pic_height)
3560 height += deblock_border;
3562 top -= deblock_border;
3565 if (top >= pic_height || (top + height) < h->emu_edge_height)
3568 height = FFMIN(height, pic_height - top);
3569 if (top < h->emu_edge_height) {
3570 height = top+height;
3574 ff_draw_horiz_band(s, top, height);
3576 if (s->dropable) return;
3578 ff_thread_report_progress((AVFrame*)s->current_picture_ptr, top + height - 1,
3579 s->picture_structure==PICT_BOTTOM_FIELD);
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;
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));
3593 if( h->pps.cabac ) {
3595 align_get_bits( &s->gb );
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);
3603 ff_h264_init_cabac_states(h);
3607 int ret = ff_h264_decode_mb_cabac(h);
3609 //STOP_TIMER("decode_mb_cabac")
3611 if(ret>=0) ff_h264_hl_decode_mb(h);
3613 if( ret >= 0 && FRAME_MBAFF ) { //FIXME optimal? or let mb_decode decode 16x32 ?
3616 ret = ff_h264_decode_mb_cabac(h);
3618 if(ret>=0) ff_h264_hl_decode_mb(h);
3621 eos = get_cabac_terminate( &h->cabac );
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);
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);
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);
3639 if(FIELD_OR_MBAFF_PICTURE) {
3641 if(FRAME_MBAFF && s->mb_y < s->mb_height)
3642 predict_field_decoding_flag(h);
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);
3656 int ret = ff_h264_decode_mb_cavlc(h);
3658 if(ret>=0) ff_h264_hl_decode_mb(h);
3660 if(ret>=0 && FRAME_MBAFF){ //FIXME optimal? or let mb_decode decode 16x32 ?
3662 ret = ff_h264_decode_mb_cavlc(h);
3664 if(ret>=0) ff_h264_hl_decode_mb(h);
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);
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);
3679 if(FIELD_OR_MBAFF_PICTURE) {
3681 if(FRAME_MBAFF && s->mb_y < s->mb_height)
3682 predict_field_decoding_flag(h);
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);
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);
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);
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);
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);
3718 * Call decode_slice() for each context.
3720 * @param h h264 master context
3721 * @param context_count number of contexts to execute
3723 static int execute_decode_slices(H264Context *h, int context_count){
3724 MpegEncContext * const s = &h->s;
3725 AVCodecContext * const avctx= s->avctx;
3729 if (s->avctx->hwaccel || s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
3731 if(context_count == 1) {
3732 return decode_slice(avctx, &h);
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;
3741 avctx->execute(avctx, (void *)decode_slice,
3742 h->thread_context, NULL, context_count, sizeof(void*));
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;
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
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
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);
3777 for(;pass <= 1;pass++){
3780 next_avc = h->is_avc ? 0 : buf_size;
3790 if(buf_index >= next_avc) {
3791 if(buf_index >= buf_size) break;
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);
3799 next_avc= buf_index + nalsize;
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)
3808 if(buf_index+3 >= buf_size) break;
3811 if(buf_index >= next_avc) continue;
3814 hx = h->thread_context[context_count];
3816 ptr= ff_h264_decode_nal(hx, buf + buf_index, &dst_length, &consumed, next_avc - buf_index);
3817 if (ptr==NULL || dst_length < 0){
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;
3825 if(!(s->workaround_bugs & FF_BUG_TRUNCATED)){
3826 while(dst_length > 0 && ptr[dst_length - 1] == 0)
3829 bit_length= !dst_length ? 0 : (8*dst_length - ff_h264_decode_rbsp_trailing(h, ptr + dst_length - 1));
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);
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);
3839 buf_index += consumed;
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) {
3849 nals_needed = nal_index;
3853 init_get_bits(&hx->s.gb, ptr, bit_length);
3854 if (!get_ue_golomb(&hx->s.gb))
3855 nals_needed = nal_index;
3860 //FIXME do not discard SEI id
3861 if(avctx->skip_frame >= AVDISCARD_NONREF && h->nal_ref_idc == 0)
3866 switch(hx->nal_unit_type){
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");
3872 idr(h); //FIXME ensure we don't loose some frames if there is reordering
3874 init_get_bits(&hx->s.gb, ptr, bit_length);
3876 hx->inter_gb_ptr= &hx->s.gb;
3877 hx->s.data_partitioning = 0;
3879 if((err = decode_slice_header(hx, h)))
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);
3888 s->current_picture_ptr->f.key_frame |=
3889 (hx->nal_unit_type == NAL_IDR_SLICE);
3891 if (h->recovery_frame == h->frame_num) {
3893 h->recovery_frame = -1;
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;
3900 if (h->current_slice == 1) {
3901 if(!(s->flags2 & CODEC_FLAG2_CHUNKS)) {
3902 decode_postinit(h, nal_index >= nals_needed);
3905 if (s->avctx->hwaccel && s->avctx->hwaccel->start_frame(s->avctx, NULL, 0) < 0)
3907 if(CONFIG_H264_VDPAU_DECODER && s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
3908 ff_vdpau_h264_picture_start(s);
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)
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 );
3929 init_get_bits(&hx->s.gb, ptr, bit_length);
3931 hx->inter_gb_ptr= NULL;
3933 if ((err = decode_slice_header(hx, h)) < 0)
3936 hx->s.data_partitioning = 1;
3940 init_get_bits(&hx->intra_gb, ptr, bit_length);
3941 hx->intra_gb_ptr= &hx->intra_gb;
3944 init_get_bits(&hx->inter_gb, ptr, bit_length);
3945 hx->inter_gb_ptr= &hx->inter_gb;
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)
3956 init_get_bits(&s->gb, ptr, bit_length);
3957 ff_h264_decode_sei(h);
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);
3968 if (s->flags& CODEC_FLAG_LOW_DELAY ||
3969 (h->sps.bitstream_restriction_flag && !h->sps.num_reorder_frames))
3972 if(avctx->has_b_frames < 2)
3973 avctx->has_b_frames= !s->low_delay;
3976 init_get_bits(&s->gb, ptr, bit_length);
3978 ff_h264_decode_picture_parameter_set(h, bit_length);
3982 case NAL_END_SEQUENCE:
3983 case NAL_END_STREAM:
3984 case NAL_FILLER_DATA:
3986 case NAL_AUXILIARY_SLICE:
3989 av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n", hx->nal_unit_type, bit_length);
3992 if(context_count == h->max_contexts) {
3993 execute_decode_slices(h, context_count);
3998 av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
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;
4012 execute_decode_slices(h, context_count);
4017 * returns the number of bytes consumed for building the current frame
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 ;)
4026 static int decode_frame(AVCodecContext *avctx,
4027 void *data, int *data_size,
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;
4037 s->flags= avctx->flags;
4038 s->flags2= avctx->flags2;
4040 /* end of stream, output what is still in the buffers */
4042 if (buf_size == 0) {
4046 s->current_picture_ptr = NULL;
4048 //FIXME factorize this with the output code below
4049 out = h->delayed_pic[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];
4057 for(i=out_idx; h->delayed_pic[i]; i++)
4058 h->delayed_pic[i] = h->delayed_pic[i+1];
4061 *data_size = sizeof(AVFrame);
4062 *pict= *(AVFrame*)out;
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);
4070 buf_index=decode_nal_units(h, buf, buf_size);
4074 if (!s->current_picture_ptr && h->nal_unit_type == NAL_END_SEQUENCE) {
4079 if(!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr){
4080 if (avctx->skip_frame >= AVDISCARD_NONREF)
4082 av_log(avctx, AV_LOG_ERROR, "no frame!\n");
4086 if(!(s->flags2 & CODEC_FLAG2_CHUNKS) || (s->mb_y >= s->mb_height && s->mb_height)){
4088 if(s->flags2 & CODEC_FLAG2_CHUNKS) decode_postinit(h, 1);
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;
4101 assert(pict->data[0] || !*data_size);
4102 ff_print_debug_info(s, pict);
4103 //printf("out %d\n", (int)pict->data[0]);
4105 return get_consumed_bytes(s, buf_index, buf_size);
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;
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;
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
4131 #define SIZE (COUNT*40)
4132 extern AVCodec ff_h264_decoder;
4138 // int int_temp[10000];
4140 AVCodecContext avctx;
4142 avcodec_get_context_defaults3(&avctx, &ff_h264_decoder);
4144 dsputil_init(&dsp, &avctx);
4146 init_put_bits(&pb, temp, SIZE);
4147 printf("testing unsigned exp golomb\n");
4148 for(i=0; i<COUNT; i++){
4150 set_ue_golomb(&pb, i);
4151 STOP_TIMER("set_ue_golomb");
4153 flush_put_bits(&pb);
4155 init_get_bits(&gb, temp, 8*SIZE);
4156 for(i=0; i<COUNT; i++){
4159 s= show_bits(&gb, 24);
4162 j= get_ue_golomb(&gb);
4164 printf("mismatch! at %d (%d should be %d) bits:%6X\n", i, j, i, s);
4167 STOP_TIMER("get_ue_golomb");
4171 init_put_bits(&pb, temp, SIZE);
4172 printf("testing signed exp golomb\n");
4173 for(i=0; i<COUNT; i++){
4175 set_se_golomb(&pb, i - COUNT/2);
4176 STOP_TIMER("set_se_golomb");
4178 flush_put_bits(&pb);
4180 init_get_bits(&gb, temp, 8*SIZE);
4181 for(i=0; i<COUNT; i++){
4184 s= show_bits(&gb, 24);
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);
4192 STOP_TIMER("get_se_golomb");
4195 printf("Testing RBSP\n");
4203 av_cold void ff_h264_free_context(H264Context *h)
4207 free_tables(h, 1); //FIXME cleanup init stuff perhaps
4209 for(i = 0; i < MAX_SPS_COUNT; i++)
4210 av_freep(h->sps_buffers + i);
4212 for(i = 0; i < MAX_PPS_COUNT; i++)
4213 av_freep(h->pps_buffers + i);
4216 av_cold int ff_h264_decode_end(AVCodecContext *avctx)
4218 H264Context *h = avctx->priv_data;
4219 MpegEncContext *s = &h->s;
4221 ff_h264_free_context(h);
4225 // memset(h, 0, sizeof(H264Context));
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 },
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},
4253 static const AVClass h264_class = {
4255 av_default_item_name,
4257 LIBAVUTIL_VERSION_INT,
4260 static const AVClass h264_vdpau_class = {
4261 "H264 VDPAU Decoder",
4262 av_default_item_name,
4264 LIBAVUTIL_VERSION_INT,
4267 AVCodec ff_h264_decoder = {
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,
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,
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,
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,