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/avassert.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/timer.h"
33 #include "cabac_functions.h"
35 #include "error_resilience.h"
39 #include "h264chroma.h"
40 #include "h264_mvpred.h"
43 #include "mpegutils.h"
44 #include "rectangle.h"
48 static const uint8_t rem6[QP_MAX_NUM + 1] = {
49 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
50 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
51 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
52 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
56 static const uint8_t div6[QP_MAX_NUM + 1] = {
57 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3,
58 3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6,
59 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10,
60 10,10,10,11,11,11,11,11,11,12,12,12,12,12,12,13,13,13, 13, 13, 13,
64 static const uint8_t field_scan[16+1] = {
65 0 + 0 * 4, 0 + 1 * 4, 1 + 0 * 4, 0 + 2 * 4,
66 0 + 3 * 4, 1 + 1 * 4, 1 + 2 * 4, 1 + 3 * 4,
67 2 + 0 * 4, 2 + 1 * 4, 2 + 2 * 4, 2 + 3 * 4,
68 3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4,
71 static const uint8_t field_scan8x8[64+1] = {
72 0 + 0 * 8, 0 + 1 * 8, 0 + 2 * 8, 1 + 0 * 8,
73 1 + 1 * 8, 0 + 3 * 8, 0 + 4 * 8, 1 + 2 * 8,
74 2 + 0 * 8, 1 + 3 * 8, 0 + 5 * 8, 0 + 6 * 8,
75 0 + 7 * 8, 1 + 4 * 8, 2 + 1 * 8, 3 + 0 * 8,
76 2 + 2 * 8, 1 + 5 * 8, 1 + 6 * 8, 1 + 7 * 8,
77 2 + 3 * 8, 3 + 1 * 8, 4 + 0 * 8, 3 + 2 * 8,
78 2 + 4 * 8, 2 + 5 * 8, 2 + 6 * 8, 2 + 7 * 8,
79 3 + 3 * 8, 4 + 1 * 8, 5 + 0 * 8, 4 + 2 * 8,
80 3 + 4 * 8, 3 + 5 * 8, 3 + 6 * 8, 3 + 7 * 8,
81 4 + 3 * 8, 5 + 1 * 8, 6 + 0 * 8, 5 + 2 * 8,
82 4 + 4 * 8, 4 + 5 * 8, 4 + 6 * 8, 4 + 7 * 8,
83 5 + 3 * 8, 6 + 1 * 8, 6 + 2 * 8, 5 + 4 * 8,
84 5 + 5 * 8, 5 + 6 * 8, 5 + 7 * 8, 6 + 3 * 8,
85 7 + 0 * 8, 7 + 1 * 8, 6 + 4 * 8, 6 + 5 * 8,
86 6 + 6 * 8, 6 + 7 * 8, 7 + 2 * 8, 7 + 3 * 8,
87 7 + 4 * 8, 7 + 5 * 8, 7 + 6 * 8, 7 + 7 * 8,
90 static const uint8_t field_scan8x8_cavlc[64+1] = {
91 0 + 0 * 8, 1 + 1 * 8, 2 + 0 * 8, 0 + 7 * 8,
92 2 + 2 * 8, 2 + 3 * 8, 2 + 4 * 8, 3 + 3 * 8,
93 3 + 4 * 8, 4 + 3 * 8, 4 + 4 * 8, 5 + 3 * 8,
94 5 + 5 * 8, 7 + 0 * 8, 6 + 6 * 8, 7 + 4 * 8,
95 0 + 1 * 8, 0 + 3 * 8, 1 + 3 * 8, 1 + 4 * 8,
96 1 + 5 * 8, 3 + 1 * 8, 2 + 5 * 8, 4 + 1 * 8,
97 3 + 5 * 8, 5 + 1 * 8, 4 + 5 * 8, 6 + 1 * 8,
98 5 + 6 * 8, 7 + 1 * 8, 6 + 7 * 8, 7 + 5 * 8,
99 0 + 2 * 8, 0 + 4 * 8, 0 + 5 * 8, 2 + 1 * 8,
100 1 + 6 * 8, 4 + 0 * 8, 2 + 6 * 8, 5 + 0 * 8,
101 3 + 6 * 8, 6 + 0 * 8, 4 + 6 * 8, 6 + 2 * 8,
102 5 + 7 * 8, 6 + 4 * 8, 7 + 2 * 8, 7 + 6 * 8,
103 1 + 0 * 8, 1 + 2 * 8, 0 + 6 * 8, 3 + 0 * 8,
104 1 + 7 * 8, 3 + 2 * 8, 2 + 7 * 8, 4 + 2 * 8,
105 3 + 7 * 8, 5 + 2 * 8, 4 + 7 * 8, 5 + 4 * 8,
106 6 + 3 * 8, 6 + 5 * 8, 7 + 3 * 8, 7 + 7 * 8,
109 // zigzag_scan8x8_cavlc[i] = zigzag_scan8x8[(i/4) + 16*(i%4)]
110 static const uint8_t zigzag_scan8x8_cavlc[64+1] = {
111 0 + 0 * 8, 1 + 1 * 8, 1 + 2 * 8, 2 + 2 * 8,
112 4 + 1 * 8, 0 + 5 * 8, 3 + 3 * 8, 7 + 0 * 8,
113 3 + 4 * 8, 1 + 7 * 8, 5 + 3 * 8, 6 + 3 * 8,
114 2 + 7 * 8, 6 + 4 * 8, 5 + 6 * 8, 7 + 5 * 8,
115 1 + 0 * 8, 2 + 0 * 8, 0 + 3 * 8, 3 + 1 * 8,
116 3 + 2 * 8, 0 + 6 * 8, 4 + 2 * 8, 6 + 1 * 8,
117 2 + 5 * 8, 2 + 6 * 8, 6 + 2 * 8, 5 + 4 * 8,
118 3 + 7 * 8, 7 + 3 * 8, 4 + 7 * 8, 7 + 6 * 8,
119 0 + 1 * 8, 3 + 0 * 8, 0 + 4 * 8, 4 + 0 * 8,
120 2 + 3 * 8, 1 + 5 * 8, 5 + 1 * 8, 5 + 2 * 8,
121 1 + 6 * 8, 3 + 5 * 8, 7 + 1 * 8, 4 + 5 * 8,
122 4 + 6 * 8, 7 + 4 * 8, 5 + 7 * 8, 6 + 7 * 8,
123 0 + 2 * 8, 2 + 1 * 8, 1 + 3 * 8, 5 + 0 * 8,
124 1 + 4 * 8, 2 + 4 * 8, 6 + 0 * 8, 4 + 3 * 8,
125 0 + 7 * 8, 4 + 4 * 8, 7 + 2 * 8, 3 + 6 * 8,
126 5 + 5 * 8, 6 + 5 * 8, 6 + 6 * 8, 7 + 7 * 8,
129 static const uint8_t dequant4_coeff_init[6][3] = {
138 static const uint8_t dequant8_coeff_init_scan[16] = {
139 0, 3, 4, 3, 3, 1, 5, 1, 4, 5, 2, 5, 3, 1, 5, 1
142 static const uint8_t dequant8_coeff_init[6][6] = {
143 { 20, 18, 32, 19, 25, 24 },
144 { 22, 19, 35, 21, 28, 26 },
145 { 26, 23, 42, 24, 33, 31 },
146 { 28, 25, 45, 26, 35, 33 },
147 { 32, 28, 51, 30, 40, 38 },
148 { 36, 32, 58, 34, 46, 43 },
151 static const enum AVPixelFormat h264_hwaccel_pixfmt_list_420[] = {
152 #if CONFIG_H264_DXVA2_HWACCEL
153 AV_PIX_FMT_DXVA2_VLD,
155 #if CONFIG_H264_VAAPI_HWACCEL
156 AV_PIX_FMT_VAAPI_VLD,
158 #if CONFIG_H264_VDA_HWACCEL
162 #if CONFIG_H264_VDPAU_HWACCEL
169 static const enum AVPixelFormat h264_hwaccel_pixfmt_list_jpeg_420[] = {
170 #if CONFIG_H264_DXVA2_HWACCEL
171 AV_PIX_FMT_DXVA2_VLD,
173 #if CONFIG_H264_VAAPI_HWACCEL
174 AV_PIX_FMT_VAAPI_VLD,
176 #if CONFIG_H264_VDA_HWACCEL
180 #if CONFIG_H264_VDPAU_HWACCEL
188 static void release_unused_pictures(H264Context *h, int remove_current)
192 /* release non reference frames */
193 for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
194 if (h->DPB[i].f.buf[0] && !h->DPB[i].reference &&
195 (remove_current || &h->DPB[i] != h->cur_pic_ptr)) {
196 ff_h264_unref_picture(h, &h->DPB[i]);
201 static int alloc_scratch_buffers(H264Context *h, int linesize)
203 int alloc_size = FFALIGN(FFABS(linesize) + 32, 32);
205 if (h->bipred_scratchpad)
208 h->bipred_scratchpad = av_malloc(16 * 6 * alloc_size);
209 // edge emu needs blocksize + filter length - 1
210 // (= 21x21 for h264)
211 h->edge_emu_buffer = av_mallocz(alloc_size * 2 * 21);
213 if (!h->bipred_scratchpad || !h->edge_emu_buffer) {
214 av_freep(&h->bipred_scratchpad);
215 av_freep(&h->edge_emu_buffer);
216 return AVERROR(ENOMEM);
222 static int init_table_pools(H264Context *h)
224 const int big_mb_num = h->mb_stride * (h->mb_height + 1) + 1;
225 const int mb_array_size = h->mb_stride * h->mb_height;
226 const int b4_stride = h->mb_width * 4 + 1;
227 const int b4_array_size = b4_stride * h->mb_height * 4;
229 h->qscale_table_pool = av_buffer_pool_init(big_mb_num + h->mb_stride,
231 h->mb_type_pool = av_buffer_pool_init((big_mb_num + h->mb_stride) *
232 sizeof(uint32_t), av_buffer_allocz);
233 h->motion_val_pool = av_buffer_pool_init(2 * (b4_array_size + 4) *
234 sizeof(int16_t), av_buffer_allocz);
235 h->ref_index_pool = av_buffer_pool_init(4 * mb_array_size, av_buffer_allocz);
237 if (!h->qscale_table_pool || !h->mb_type_pool || !h->motion_val_pool ||
238 !h->ref_index_pool) {
239 av_buffer_pool_uninit(&h->qscale_table_pool);
240 av_buffer_pool_uninit(&h->mb_type_pool);
241 av_buffer_pool_uninit(&h->motion_val_pool);
242 av_buffer_pool_uninit(&h->ref_index_pool);
243 return AVERROR(ENOMEM);
249 static int alloc_picture(H264Context *h, H264Picture *pic)
253 av_assert0(!pic->f.data[0]);
256 ret = ff_thread_get_buffer(h->avctx, &pic->tf, pic->reference ?
257 AV_GET_BUFFER_FLAG_REF : 0);
261 h->linesize = pic->f.linesize[0];
262 h->uvlinesize = pic->f.linesize[1];
263 pic->crop = h->sps.crop;
264 pic->crop_top = h->sps.crop_top;
265 pic->crop_left= h->sps.crop_left;
267 if (h->avctx->hwaccel) {
268 const AVHWAccel *hwaccel = h->avctx->hwaccel;
269 av_assert0(!pic->hwaccel_picture_private);
270 if (hwaccel->frame_priv_data_size) {
271 pic->hwaccel_priv_buf = av_buffer_allocz(hwaccel->frame_priv_data_size);
272 if (!pic->hwaccel_priv_buf)
273 return AVERROR(ENOMEM);
274 pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data;
277 if (!h->avctx->hwaccel && CONFIG_GRAY && h->flags & CODEC_FLAG_GRAY && pic->f.data[2]) {
278 int h_chroma_shift, v_chroma_shift;
279 av_pix_fmt_get_chroma_sub_sample(pic->f.format,
280 &h_chroma_shift, &v_chroma_shift);
282 for(i=0; i<FF_CEIL_RSHIFT(h->avctx->height, v_chroma_shift); i++) {
283 memset(pic->f.data[1] + pic->f.linesize[1]*i,
284 0x80, FF_CEIL_RSHIFT(h->avctx->width, h_chroma_shift));
285 memset(pic->f.data[2] + pic->f.linesize[2]*i,
286 0x80, FF_CEIL_RSHIFT(h->avctx->width, h_chroma_shift));
290 if (!h->qscale_table_pool) {
291 ret = init_table_pools(h);
296 pic->qscale_table_buf = av_buffer_pool_get(h->qscale_table_pool);
297 pic->mb_type_buf = av_buffer_pool_get(h->mb_type_pool);
298 if (!pic->qscale_table_buf || !pic->mb_type_buf)
301 pic->mb_type = (uint32_t*)pic->mb_type_buf->data + 2 * h->mb_stride + 1;
302 pic->qscale_table = pic->qscale_table_buf->data + 2 * h->mb_stride + 1;
304 for (i = 0; i < 2; i++) {
305 pic->motion_val_buf[i] = av_buffer_pool_get(h->motion_val_pool);
306 pic->ref_index_buf[i] = av_buffer_pool_get(h->ref_index_pool);
307 if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
310 pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
311 pic->ref_index[i] = pic->ref_index_buf[i]->data;
316 ff_h264_unref_picture(h, pic);
317 return (ret < 0) ? ret : AVERROR(ENOMEM);
320 static inline int pic_is_unused(H264Context *h, H264Picture *pic)
324 if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
329 static int find_unused_picture(H264Context *h)
333 for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
334 if (pic_is_unused(h, &h->DPB[i]))
337 if (i == H264_MAX_PICTURE_COUNT)
338 return AVERROR_INVALIDDATA;
340 if (h->DPB[i].needs_realloc) {
341 h->DPB[i].needs_realloc = 0;
342 ff_h264_unref_picture(h, &h->DPB[i]);
349 static void init_dequant8_coeff_table(H264Context *h)
352 const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
354 for (i = 0; i < 6; i++) {
355 h->dequant8_coeff[i] = h->dequant8_buffer[i];
356 for (j = 0; j < i; j++)
357 if (!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i],
358 64 * sizeof(uint8_t))) {
359 h->dequant8_coeff[i] = h->dequant8_buffer[j];
365 for (q = 0; q < max_qp + 1; q++) {
368 for (x = 0; x < 64; x++)
369 h->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
370 ((uint32_t)dequant8_coeff_init[idx][dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
371 h->pps.scaling_matrix8[i][x]) << shift;
376 static void init_dequant4_coeff_table(H264Context *h)
379 const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
380 for (i = 0; i < 6; i++) {
381 h->dequant4_coeff[i] = h->dequant4_buffer[i];
382 for (j = 0; j < i; j++)
383 if (!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i],
384 16 * sizeof(uint8_t))) {
385 h->dequant4_coeff[i] = h->dequant4_buffer[j];
391 for (q = 0; q < max_qp + 1; q++) {
392 int shift = div6[q] + 2;
394 for (x = 0; x < 16; x++)
395 h->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
396 ((uint32_t)dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
397 h->pps.scaling_matrix4[i][x]) << shift;
402 void h264_init_dequant_tables(H264Context *h)
405 init_dequant4_coeff_table(h);
406 memset(h->dequant8_coeff, 0, sizeof(h->dequant8_coeff));
408 if (h->pps.transform_8x8_mode)
409 init_dequant8_coeff_table(h);
410 if (h->sps.transform_bypass) {
411 for (i = 0; i < 6; i++)
412 for (x = 0; x < 16; x++)
413 h->dequant4_coeff[i][0][x] = 1 << 6;
414 if (h->pps.transform_8x8_mode)
415 for (i = 0; i < 6; i++)
416 for (x = 0; x < 64; x++)
417 h->dequant8_coeff[i][0][x] = 1 << 6;
422 * Mimic alloc_tables(), but for every context thread.
424 static void clone_tables(H264Context *dst, H264Context *src, int i)
426 dst->intra4x4_pred_mode = src->intra4x4_pred_mode + i * 8 * 2 * src->mb_stride;
427 dst->non_zero_count = src->non_zero_count;
428 dst->slice_table = src->slice_table;
429 dst->cbp_table = src->cbp_table;
430 dst->mb2b_xy = src->mb2b_xy;
431 dst->mb2br_xy = src->mb2br_xy;
432 dst->chroma_pred_mode_table = src->chroma_pred_mode_table;
433 dst->mvd_table[0] = src->mvd_table[0] + i * 8 * 2 * src->mb_stride;
434 dst->mvd_table[1] = src->mvd_table[1] + i * 8 * 2 * src->mb_stride;
435 dst->direct_table = src->direct_table;
436 dst->list_counts = src->list_counts;
438 dst->cur_pic_ptr = src->cur_pic_ptr;
439 dst->cur_pic = src->cur_pic;
440 dst->bipred_scratchpad = NULL;
441 dst->edge_emu_buffer = NULL;
442 ff_h264_pred_init(&dst->hpc, src->avctx->codec_id, src->sps.bit_depth_luma,
443 src->sps.chroma_format_idc);
446 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
447 #undef REBASE_PICTURE
448 #define REBASE_PICTURE(pic, new_ctx, old_ctx) \
449 (((pic) && (pic) >= (old_ctx)->DPB && \
450 (pic) < (old_ctx)->DPB + H264_MAX_PICTURE_COUNT) ? \
451 &(new_ctx)->DPB[(pic) - (old_ctx)->DPB] : NULL)
453 static void copy_picture_range(H264Picture **to, H264Picture **from, int count,
454 H264Context *new_base,
455 H264Context *old_base)
459 for (i = 0; i < count; i++) {
460 assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
461 IN_RANGE(from[i], old_base->DPB,
462 sizeof(H264Picture) * H264_MAX_PICTURE_COUNT) ||
464 to[i] = REBASE_PICTURE(from[i], new_base, old_base);
468 static int copy_parameter_set(void **to, void **from, int count, int size)
472 for (i = 0; i < count; i++) {
473 if (to[i] && !from[i]) {
475 } else if (from[i] && !to[i]) {
476 to[i] = av_malloc(size);
478 return AVERROR(ENOMEM);
482 memcpy(to[i], from[i], size);
488 #define copy_fields(to, from, start_field, end_field) \
489 memcpy(&(to)->start_field, &(from)->start_field, \
490 (char *)&(to)->end_field - (char *)&(to)->start_field)
492 static int h264_slice_header_init(H264Context *h, int reinit);
494 int ff_h264_update_thread_context(AVCodecContext *dst,
495 const AVCodecContext *src)
497 H264Context *h = dst->priv_data, *h1 = src->priv_data;
498 int inited = h->context_initialized, err = 0;
499 int context_reinitialized = 0;
506 (h->width != h1->width ||
507 h->height != h1->height ||
508 h->mb_width != h1->mb_width ||
509 h->mb_height != h1->mb_height ||
510 h->sps.bit_depth_luma != h1->sps.bit_depth_luma ||
511 h->sps.chroma_format_idc != h1->sps.chroma_format_idc ||
512 h->sps.colorspace != h1->sps.colorspace)) {
514 /* set bits_per_raw_sample to the previous value. the check for changed
515 * bit depth in h264_set_parameter_from_sps() uses it and sets it to
516 * the current value */
517 h->avctx->bits_per_raw_sample = h->sps.bit_depth_luma;
519 av_freep(&h->bipred_scratchpad);
521 h->width = h1->width;
522 h->height = h1->height;
523 h->mb_height = h1->mb_height;
524 h->mb_width = h1->mb_width;
525 h->mb_num = h1->mb_num;
526 h->mb_stride = h1->mb_stride;
527 h->b_stride = h1->b_stride;
529 if ((ret = copy_parameter_set((void **)h->sps_buffers,
530 (void **)h1->sps_buffers,
531 MAX_SPS_COUNT, sizeof(SPS))) < 0)
534 if ((ret = copy_parameter_set((void **)h->pps_buffers,
535 (void **)h1->pps_buffers,
536 MAX_PPS_COUNT, sizeof(PPS))) < 0)
540 if ((err = h264_slice_header_init(h, 1)) < 0) {
541 av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
544 context_reinitialized = 1;
547 h264_set_parameter_from_sps(h);
548 //Note we set context_reinitialized which will cause h264_set_parameter_from_sps to be reexecuted
549 h->cur_chroma_format_idc = h1->cur_chroma_format_idc;
552 /* update linesize on resize for h264. The h264 decoder doesn't
553 * necessarily call ff_MPV_frame_start in the new thread */
554 h->linesize = h1->linesize;
555 h->uvlinesize = h1->uvlinesize;
557 /* copy block_offset since frame_start may not be called */
558 memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
561 for (i = 0; i < MAX_SPS_COUNT; i++)
562 av_freep(h->sps_buffers + i);
564 for (i = 0; i < MAX_PPS_COUNT; i++)
565 av_freep(h->pps_buffers + i);
567 av_freep(&h->rbsp_buffer[0]);
568 av_freep(&h->rbsp_buffer[1]);
569 memcpy(h, h1, offsetof(H264Context, intra_pcm_ptr));
570 memcpy(&h->cabac, &h1->cabac,
571 sizeof(H264Context) - offsetof(H264Context, cabac));
572 av_assert0((void*)&h->cabac == &h->mb_padding + 1);
574 memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
575 memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
577 memset(&h->er, 0, sizeof(h->er));
578 memset(&h->mb, 0, sizeof(h->mb));
579 memset(&h->mb_luma_dc, 0, sizeof(h->mb_luma_dc));
580 memset(&h->mb_padding, 0, sizeof(h->mb_padding));
581 memset(&h->cur_pic, 0, sizeof(h->cur_pic));
585 h->qscale_table_pool = NULL;
586 h->mb_type_pool = NULL;
587 h->ref_index_pool = NULL;
588 h->motion_val_pool = NULL;
589 for (i = 0; i < 2; i++) {
590 h->rbsp_buffer[i] = NULL;
591 h->rbsp_buffer_size[i] = 0;
594 if (h1->context_initialized) {
595 h->context_initialized = 0;
597 memset(&h->cur_pic, 0, sizeof(h->cur_pic));
598 av_frame_unref(&h->cur_pic.f);
599 h->cur_pic.tf.f = &h->cur_pic.f;
601 ret = ff_h264_alloc_tables(h);
603 av_log(dst, AV_LOG_ERROR, "Could not allocate memory\n");
606 ret = ff_h264_context_init(h);
608 av_log(dst, AV_LOG_ERROR, "context_init() failed.\n");
613 h->bipred_scratchpad = NULL;
614 h->edge_emu_buffer = NULL;
616 h->thread_context[0] = h;
617 h->context_initialized = h1->context_initialized;
620 h->avctx->coded_height = h1->avctx->coded_height;
621 h->avctx->coded_width = h1->avctx->coded_width;
622 h->avctx->width = h1->avctx->width;
623 h->avctx->height = h1->avctx->height;
624 h->coded_picture_number = h1->coded_picture_number;
625 h->first_field = h1->first_field;
626 h->picture_structure = h1->picture_structure;
627 h->qscale = h1->qscale;
628 h->droppable = h1->droppable;
629 h->low_delay = h1->low_delay;
631 for (i = 0; h->DPB && i < H264_MAX_PICTURE_COUNT; i++) {
632 ff_h264_unref_picture(h, &h->DPB[i]);
633 if (h1->DPB && h1->DPB[i].f.buf[0] &&
634 (ret = ff_h264_ref_picture(h, &h->DPB[i], &h1->DPB[i])) < 0)
638 h->cur_pic_ptr = REBASE_PICTURE(h1->cur_pic_ptr, h, h1);
639 ff_h264_unref_picture(h, &h->cur_pic);
640 if (h1->cur_pic.f.buf[0] && (ret = ff_h264_ref_picture(h, &h->cur_pic, &h1->cur_pic)) < 0)
643 h->workaround_bugs = h1->workaround_bugs;
644 h->low_delay = h1->low_delay;
645 h->droppable = h1->droppable;
647 // extradata/NAL handling
648 h->is_avc = h1->is_avc;
651 if ((ret = copy_parameter_set((void **)h->sps_buffers,
652 (void **)h1->sps_buffers,
653 MAX_SPS_COUNT, sizeof(SPS))) < 0)
656 if ((ret = copy_parameter_set((void **)h->pps_buffers,
657 (void **)h1->pps_buffers,
658 MAX_PPS_COUNT, sizeof(PPS))) < 0)
662 // Dequantization matrices
663 // FIXME these are big - can they be only copied when PPS changes?
664 copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
666 for (i = 0; i < 6; i++)
667 h->dequant4_coeff[i] = h->dequant4_buffer[0] +
668 (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
670 for (i = 0; i < 6; i++)
671 h->dequant8_coeff[i] = h->dequant8_buffer[0] +
672 (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
674 h->dequant_coeff_pps = h1->dequant_coeff_pps;
677 copy_fields(h, h1, poc_lsb, redundant_pic_count);
680 copy_fields(h, h1, short_ref, cabac_init_idc);
682 copy_picture_range(h->short_ref, h1->short_ref, 32, h, h1);
683 copy_picture_range(h->long_ref, h1->long_ref, 32, h, h1);
684 copy_picture_range(h->delayed_pic, h1->delayed_pic,
685 MAX_DELAYED_PIC_COUNT + 2, h, h1);
687 h->frame_recovered = h1->frame_recovered;
689 if (context_reinitialized)
690 ff_h264_set_parameter_from_sps(h);
696 err = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
697 h->prev_poc_msb = h->poc_msb;
698 h->prev_poc_lsb = h->poc_lsb;
700 h->prev_frame_num_offset = h->frame_num_offset;
701 h->prev_frame_num = h->frame_num;
702 h->outputed_poc = h->next_outputed_poc;
704 h->recovery_frame = h1->recovery_frame;
709 static int h264_frame_start(H264Context *h)
713 const int pixel_shift = h->pixel_shift;
715 1<<(h->sps.bit_depth_luma-1),
716 1<<(h->sps.bit_depth_chroma-1),
717 1<<(h->sps.bit_depth_chroma-1),
721 if (!ff_thread_can_start_frame(h->avctx)) {
722 av_log(h->avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
726 release_unused_pictures(h, 1);
727 h->cur_pic_ptr = NULL;
729 i = find_unused_picture(h);
731 av_log(h->avctx, AV_LOG_ERROR, "no frame buffer available\n");
736 pic->reference = h->droppable ? 0 : h->picture_structure;
737 pic->f.coded_picture_number = h->coded_picture_number++;
738 pic->field_picture = h->picture_structure != PICT_FRAME;
741 * Zero key_frame here; IDR markings per slice in frame or fields are ORed
743 * See decode_nal_units().
745 pic->f.key_frame = 0;
748 pic->invalid_gap = 0;
749 pic->sei_recovery_frame_cnt = h->sei_recovery_frame_cnt;
751 if ((ret = alloc_picture(h, pic)) < 0)
753 if(!h->frame_recovered && !h->avctx->hwaccel &&
754 !(h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU))
755 avpriv_color_frame(&pic->f, c);
757 h->cur_pic_ptr = pic;
758 ff_h264_unref_picture(h, &h->cur_pic);
759 if (CONFIG_ERROR_RESILIENCE) {
760 ff_h264_set_erpic(&h->er.cur_pic, NULL);
763 if ((ret = ff_h264_ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
766 if (CONFIG_ERROR_RESILIENCE) {
767 ff_er_frame_start(&h->er);
768 ff_h264_set_erpic(&h->er.last_pic, NULL);
769 ff_h264_set_erpic(&h->er.next_pic, NULL);
772 assert(h->linesize && h->uvlinesize);
774 for (i = 0; i < 16; i++) {
775 h->block_offset[i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
776 h->block_offset[48 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
778 for (i = 0; i < 16; i++) {
779 h->block_offset[16 + i] =
780 h->block_offset[32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
781 h->block_offset[48 + 16 + i] =
782 h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
785 /* We mark the current picture as non-reference after allocating it, so
786 * that if we break out due to an error it can be released automatically
787 * in the next ff_MPV_frame_start().
789 h->cur_pic_ptr->reference = 0;
791 h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
793 h->next_output_pic = NULL;
795 assert(h->cur_pic_ptr->long_ref == 0);
800 static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y,
801 uint8_t *src_cb, uint8_t *src_cr,
802 int linesize, int uvlinesize,
807 const int pixel_shift = h->pixel_shift;
808 int chroma444 = CHROMA444(h);
809 int chroma422 = CHROMA422(h);
812 src_cb -= uvlinesize;
813 src_cr -= uvlinesize;
815 if (!simple && FRAME_MBAFF(h)) {
818 top_border = h->top_borders[0][h->mb_x];
819 AV_COPY128(top_border, src_y + 15 * linesize);
821 AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
822 if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
825 AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
826 AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
827 AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
828 AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
830 AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
831 AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
833 } else if (chroma422) {
835 AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
836 AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
838 AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
839 AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
843 AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
844 AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
846 AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
847 AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
852 } else if (MB_MBAFF(h)) {
858 top_border = h->top_borders[top_idx][h->mb_x];
859 /* There are two lines saved, the line above the top macroblock
860 * of a pair, and the line above the bottom macroblock. */
861 AV_COPY128(top_border, src_y + 16 * linesize);
863 AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
865 if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
868 AV_COPY128(top_border + 32, src_cb + 16 * linesize);
869 AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
870 AV_COPY128(top_border + 64, src_cr + 16 * linesize);
871 AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
873 AV_COPY128(top_border + 16, src_cb + 16 * linesize);
874 AV_COPY128(top_border + 32, src_cr + 16 * linesize);
876 } else if (chroma422) {
878 AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
879 AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
881 AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
882 AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
886 AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
887 AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
889 AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
890 AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
897 * Initialize implicit_weight table.
898 * @param field 0/1 initialize the weight for interlaced MBAFF
899 * -1 initializes the rest
901 static void implicit_weight_table(H264Context *h, int field)
903 int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
905 for (i = 0; i < 2; i++) {
906 h->luma_weight_flag[i] = 0;
907 h->chroma_weight_flag[i] = 0;
911 if (h->picture_structure == PICT_FRAME) {
912 cur_poc = h->cur_pic_ptr->poc;
914 cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure - 1];
916 if (h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF(h) &&
917 h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
919 h->use_weight_chroma = 0;
923 ref_count0 = h->ref_count[0];
924 ref_count1 = h->ref_count[1];
926 cur_poc = h->cur_pic_ptr->field_poc[field];
928 ref_count0 = 16 + 2 * h->ref_count[0];
929 ref_count1 = 16 + 2 * h->ref_count[1];
933 h->use_weight_chroma = 2;
934 h->luma_log2_weight_denom = 5;
935 h->chroma_log2_weight_denom = 5;
937 for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
938 int poc0 = h->ref_list[0][ref0].poc;
939 for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
941 if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
942 int poc1 = h->ref_list[1][ref1].poc;
943 int td = av_clip(poc1 - poc0, -128, 127);
945 int tb = av_clip(cur_poc - poc0, -128, 127);
946 int tx = (16384 + (FFABS(td) >> 1)) / td;
947 int dist_scale_factor = (tb * tx + 32) >> 8;
948 if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
949 w = 64 - dist_scale_factor;
953 h->implicit_weight[ref0][ref1][0] =
954 h->implicit_weight[ref0][ref1][1] = w;
956 h->implicit_weight[ref0][ref1][field] = w;
963 * initialize scan tables
965 static void init_scan_tables(H264Context *h)
968 for (i = 0; i < 16; i++) {
969 #define TRANSPOSE(x) ((x) >> 2) | (((x) << 2) & 0xF)
970 h->zigzag_scan[i] = TRANSPOSE(zigzag_scan[i]);
971 h->field_scan[i] = TRANSPOSE(field_scan[i]);
974 for (i = 0; i < 64; i++) {
975 #define TRANSPOSE(x) ((x) >> 3) | (((x) & 7) << 3)
976 h->zigzag_scan8x8[i] = TRANSPOSE(ff_zigzag_direct[i]);
977 h->zigzag_scan8x8_cavlc[i] = TRANSPOSE(zigzag_scan8x8_cavlc[i]);
978 h->field_scan8x8[i] = TRANSPOSE(field_scan8x8[i]);
979 h->field_scan8x8_cavlc[i] = TRANSPOSE(field_scan8x8_cavlc[i]);
982 if (h->sps.transform_bypass) { // FIXME same ugly
983 memcpy(h->zigzag_scan_q0 , zigzag_scan , sizeof(h->zigzag_scan_q0 ));
984 memcpy(h->zigzag_scan8x8_q0 , ff_zigzag_direct , sizeof(h->zigzag_scan8x8_q0 ));
985 memcpy(h->zigzag_scan8x8_cavlc_q0 , zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
986 memcpy(h->field_scan_q0 , field_scan , sizeof(h->field_scan_q0 ));
987 memcpy(h->field_scan8x8_q0 , field_scan8x8 , sizeof(h->field_scan8x8_q0 ));
988 memcpy(h->field_scan8x8_cavlc_q0 , field_scan8x8_cavlc , sizeof(h->field_scan8x8_cavlc_q0 ));
990 memcpy(h->zigzag_scan_q0 , h->zigzag_scan , sizeof(h->zigzag_scan_q0 ));
991 memcpy(h->zigzag_scan8x8_q0 , h->zigzag_scan8x8 , sizeof(h->zigzag_scan8x8_q0 ));
992 memcpy(h->zigzag_scan8x8_cavlc_q0 , h->zigzag_scan8x8_cavlc , sizeof(h->zigzag_scan8x8_cavlc_q0));
993 memcpy(h->field_scan_q0 , h->field_scan , sizeof(h->field_scan_q0 ));
994 memcpy(h->field_scan8x8_q0 , h->field_scan8x8 , sizeof(h->field_scan8x8_q0 ));
995 memcpy(h->field_scan8x8_cavlc_q0 , h->field_scan8x8_cavlc , sizeof(h->field_scan8x8_cavlc_q0 ));
1000 * Replicate H264 "master" context to thread contexts.
1002 static int clone_slice(H264Context *dst, H264Context *src)
1004 memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
1005 dst->cur_pic_ptr = src->cur_pic_ptr;
1006 dst->cur_pic = src->cur_pic;
1007 dst->linesize = src->linesize;
1008 dst->uvlinesize = src->uvlinesize;
1009 dst->first_field = src->first_field;
1011 dst->prev_poc_msb = src->prev_poc_msb;
1012 dst->prev_poc_lsb = src->prev_poc_lsb;
1013 dst->prev_frame_num_offset = src->prev_frame_num_offset;
1014 dst->prev_frame_num = src->prev_frame_num;
1015 dst->short_ref_count = src->short_ref_count;
1017 memcpy(dst->short_ref, src->short_ref, sizeof(dst->short_ref));
1018 memcpy(dst->long_ref, src->long_ref, sizeof(dst->long_ref));
1019 memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
1021 memcpy(dst->dequant4_coeff, src->dequant4_coeff, sizeof(src->dequant4_coeff));
1022 memcpy(dst->dequant8_coeff, src->dequant8_coeff, sizeof(src->dequant8_coeff));
1027 static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
1029 switch (h->sps.bit_depth_luma) {
1032 if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1033 return AV_PIX_FMT_GBRP9;
1035 return AV_PIX_FMT_YUV444P9;
1036 } else if (CHROMA422(h))
1037 return AV_PIX_FMT_YUV422P9;
1039 return AV_PIX_FMT_YUV420P9;
1043 if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1044 return AV_PIX_FMT_GBRP10;
1046 return AV_PIX_FMT_YUV444P10;
1047 } else if (CHROMA422(h))
1048 return AV_PIX_FMT_YUV422P10;
1050 return AV_PIX_FMT_YUV420P10;
1054 if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1055 return AV_PIX_FMT_GBRP12;
1057 return AV_PIX_FMT_YUV444P12;
1058 } else if (CHROMA422(h))
1059 return AV_PIX_FMT_YUV422P12;
1061 return AV_PIX_FMT_YUV420P12;
1065 if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1066 return AV_PIX_FMT_GBRP14;
1068 return AV_PIX_FMT_YUV444P14;
1069 } else if (CHROMA422(h))
1070 return AV_PIX_FMT_YUV422P14;
1072 return AV_PIX_FMT_YUV420P14;
1076 if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1077 av_log(h->avctx, AV_LOG_DEBUG, "Detected GBR colorspace.\n");
1078 return AV_PIX_FMT_GBR24P;
1079 } else if (h->avctx->colorspace == AVCOL_SPC_YCGCO) {
1080 av_log(h->avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
1082 return h->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ444P
1083 : AV_PIX_FMT_YUV444P;
1084 } else if (CHROMA422(h)) {
1085 return h->avctx->color_range == AVCOL_RANGE_JPEG ? AV_PIX_FMT_YUVJ422P
1086 : AV_PIX_FMT_YUV422P;
1089 const enum AVPixelFormat * fmt = h->avctx->codec->pix_fmts ?
1090 h->avctx->codec->pix_fmts :
1091 h->avctx->color_range == AVCOL_RANGE_JPEG ?
1092 h264_hwaccel_pixfmt_list_jpeg_420 :
1093 h264_hwaccel_pixfmt_list_420;
1095 for (i=0; fmt[i] != AV_PIX_FMT_NONE; i++)
1096 if (fmt[i] == h->avctx->pix_fmt && !force_callback)
1098 return ff_thread_get_format(h->avctx, fmt);
1102 av_log(h->avctx, AV_LOG_ERROR,
1103 "Unsupported bit depth %d\n", h->sps.bit_depth_luma);
1104 return AVERROR_INVALIDDATA;
1108 /* export coded and cropped frame dimensions to AVCodecContext */
1109 static int init_dimensions(H264Context *h)
1111 int width = h->width - (h->sps.crop_right + h->sps.crop_left);
1112 int height = h->height - (h->sps.crop_top + h->sps.crop_bottom);
1113 av_assert0(h->sps.crop_right + h->sps.crop_left < (unsigned)h->width);
1114 av_assert0(h->sps.crop_top + h->sps.crop_bottom < (unsigned)h->height);
1116 /* handle container cropping */
1118 FFALIGN(h->avctx->width, 16) == h->width &&
1119 FFALIGN(h->avctx->height, 16) == h->height) {
1120 width = h->avctx->width;
1121 height = h->avctx->height;
1124 if (width <= 0 || height <= 0) {
1125 av_log(h->avctx, AV_LOG_ERROR, "Invalid cropped dimensions: %dx%d.\n",
1127 if (h->avctx->err_recognition & AV_EF_EXPLODE)
1128 return AVERROR_INVALIDDATA;
1130 av_log(h->avctx, AV_LOG_WARNING, "Ignoring cropping information.\n");
1131 h->sps.crop_bottom = h->sps.crop_top = h->sps.crop_right = h->sps.crop_left = 0;
1138 h->avctx->coded_width = h->width;
1139 h->avctx->coded_height = h->height;
1140 h->avctx->width = width;
1141 h->avctx->height = height;
1146 static int h264_slice_header_init(H264Context *h, int reinit)
1148 int nb_slices = (HAVE_THREADS &&
1149 h->avctx->active_thread_type & FF_THREAD_SLICE) ?
1150 h->avctx->thread_count : 1;
1153 h->avctx->sample_aspect_ratio = h->sps.sar;
1154 av_assert0(h->avctx->sample_aspect_ratio.den);
1155 av_pix_fmt_get_chroma_sub_sample(h->avctx->pix_fmt,
1156 &h->chroma_x_shift, &h->chroma_y_shift);
1158 if (h->sps.timing_info_present_flag) {
1159 int64_t den = h->sps.time_scale;
1160 if (h->x264_build < 44U)
1162 av_reduce(&h->avctx->time_base.num, &h->avctx->time_base.den,
1163 h->sps.num_units_in_tick, den, 1 << 30);
1167 ff_h264_free_tables(h, 0);
1169 h->prev_interlaced_frame = 1;
1171 init_scan_tables(h);
1172 ret = ff_h264_alloc_tables(h);
1174 av_log(h->avctx, AV_LOG_ERROR, "Could not allocate memory\n");
1178 if (nb_slices > H264_MAX_THREADS || (nb_slices > h->mb_height && h->mb_height)) {
1181 max_slices = FFMIN(H264_MAX_THREADS, h->mb_height);
1183 max_slices = H264_MAX_THREADS;
1184 av_log(h->avctx, AV_LOG_WARNING, "too many threads/slices %d,"
1185 " reducing to %d\n", nb_slices, max_slices);
1186 nb_slices = max_slices;
1188 h->slice_context_count = nb_slices;
1190 if (!HAVE_THREADS || !(h->avctx->active_thread_type & FF_THREAD_SLICE)) {
1191 ret = ff_h264_context_init(h);
1193 av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1197 for (i = 1; i < h->slice_context_count; i++) {
1199 c = h->thread_context[i] = av_mallocz(sizeof(H264Context));
1201 return AVERROR(ENOMEM);
1202 c->avctx = h->avctx;
1203 if (CONFIG_ERROR_RESILIENCE) {
1207 c->h264dsp = h->h264dsp;
1208 c->h264qpel = h->h264qpel;
1209 c->h264chroma = h->h264chroma;
1212 c->pixel_shift = h->pixel_shift;
1213 c->cur_chroma_format_idc = h->cur_chroma_format_idc;
1214 c->width = h->width;
1215 c->height = h->height;
1216 c->linesize = h->linesize;
1217 c->uvlinesize = h->uvlinesize;
1218 c->chroma_x_shift = h->chroma_x_shift;
1219 c->chroma_y_shift = h->chroma_y_shift;
1220 c->qscale = h->qscale;
1221 c->droppable = h->droppable;
1222 c->data_partitioning = h->data_partitioning;
1223 c->low_delay = h->low_delay;
1224 c->mb_width = h->mb_width;
1225 c->mb_height = h->mb_height;
1226 c->mb_stride = h->mb_stride;
1227 c->mb_num = h->mb_num;
1228 c->flags = h->flags;
1229 c->workaround_bugs = h->workaround_bugs;
1230 c->pict_type = h->pict_type;
1232 init_scan_tables(c);
1233 clone_tables(c, h, i);
1234 c->context_initialized = 1;
1237 for (i = 0; i < h->slice_context_count; i++)
1238 if ((ret = ff_h264_context_init(h->thread_context[i])) < 0) {
1239 av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1244 h->context_initialized = 1;
1249 static enum AVPixelFormat non_j_pixfmt(enum AVPixelFormat a)
1252 case AV_PIX_FMT_YUVJ420P: return AV_PIX_FMT_YUV420P;
1253 case AV_PIX_FMT_YUVJ422P: return AV_PIX_FMT_YUV422P;
1254 case AV_PIX_FMT_YUVJ444P: return AV_PIX_FMT_YUV444P;
1261 * Decode a slice header.
1262 * This will (re)intialize the decoder and call h264_frame_start() as needed.
1264 * @param h h264context
1265 * @param h0 h264 master context (differs from 'h' when doing sliced based
1266 * parallel decoding)
1268 * @return 0 if okay, <0 if an error occurred, 1 if decoding must not be multithreaded
1270 int ff_h264_decode_slice_header(H264Context *h, H264Context *h0)
1272 unsigned int first_mb_in_slice;
1273 unsigned int pps_id;
1275 unsigned int slice_type, tmp, i, j;
1276 int last_pic_structure, last_pic_droppable;
1278 int needs_reinit = 0;
1279 int field_pic_flag, bottom_field_flag;
1281 h->qpel_put = h->h264qpel.put_h264_qpel_pixels_tab;
1282 h->qpel_avg = h->h264qpel.avg_h264_qpel_pixels_tab;
1284 first_mb_in_slice = get_ue_golomb_long(&h->gb);
1286 if (first_mb_in_slice == 0) { // FIXME better field boundary detection
1287 if (h0->current_slice && h->cur_pic_ptr && FIELD_PICTURE(h)) {
1288 ff_h264_field_end(h, 1);
1291 h0->current_slice = 0;
1292 if (!h0->first_field) {
1293 if (h->cur_pic_ptr && !h->droppable) {
1294 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX,
1295 h->picture_structure == PICT_BOTTOM_FIELD);
1297 h->cur_pic_ptr = NULL;
1301 slice_type = get_ue_golomb_31(&h->gb);
1302 if (slice_type > 9) {
1303 av_log(h->avctx, AV_LOG_ERROR,
1304 "slice type %d too large at %d %d\n",
1305 slice_type, h->mb_x, h->mb_y);
1306 return AVERROR_INVALIDDATA;
1308 if (slice_type > 4) {
1310 h->slice_type_fixed = 1;
1312 h->slice_type_fixed = 0;
1314 slice_type = golomb_to_pict_type[slice_type];
1315 h->slice_type = slice_type;
1316 h->slice_type_nos = slice_type & 3;
1318 if (h->nal_unit_type == NAL_IDR_SLICE &&
1319 h->slice_type_nos != AV_PICTURE_TYPE_I) {
1320 av_log(h->avctx, AV_LOG_ERROR, "A non-intra slice in an IDR NAL unit.\n");
1321 return AVERROR_INVALIDDATA;
1325 (h->avctx->skip_frame >= AVDISCARD_NONREF && !h->nal_ref_idc) ||
1326 (h->avctx->skip_frame >= AVDISCARD_BIDIR && h->slice_type_nos == AV_PICTURE_TYPE_B) ||
1327 (h->avctx->skip_frame >= AVDISCARD_NONINTRA && h->slice_type_nos != AV_PICTURE_TYPE_I) ||
1328 (h->avctx->skip_frame >= AVDISCARD_NONKEY && h->nal_unit_type != NAL_IDR_SLICE) ||
1329 h->avctx->skip_frame >= AVDISCARD_ALL) {
1330 return SLICE_SKIPED;
1333 // to make a few old functions happy, it's wrong though
1334 h->pict_type = h->slice_type;
1336 pps_id = get_ue_golomb(&h->gb);
1337 if (pps_id >= MAX_PPS_COUNT) {
1338 av_log(h->avctx, AV_LOG_ERROR, "pps_id %u out of range\n", pps_id);
1339 return AVERROR_INVALIDDATA;
1341 if (!h0->pps_buffers[pps_id]) {
1342 av_log(h->avctx, AV_LOG_ERROR,
1343 "non-existing PPS %u referenced\n",
1345 return AVERROR_INVALIDDATA;
1347 if (h0->au_pps_id >= 0 && pps_id != h0->au_pps_id) {
1348 av_log(h->avctx, AV_LOG_ERROR,
1349 "PPS change from %d to %d forbidden\n",
1350 h0->au_pps_id, pps_id);
1351 return AVERROR_INVALIDDATA;
1353 h->pps = *h0->pps_buffers[pps_id];
1355 if (!h0->sps_buffers[h->pps.sps_id]) {
1356 av_log(h->avctx, AV_LOG_ERROR,
1357 "non-existing SPS %u referenced\n",
1359 return AVERROR_INVALIDDATA;
1362 if (h->pps.sps_id != h->sps.sps_id ||
1363 h->pps.sps_id != h->current_sps_id ||
1364 h0->sps_buffers[h->pps.sps_id]->new) {
1366 h->sps = *h0->sps_buffers[h->pps.sps_id];
1368 if (h->mb_width != h->sps.mb_width ||
1369 h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) ||
1370 h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
1371 h->cur_chroma_format_idc != h->sps.chroma_format_idc
1375 if (h->bit_depth_luma != h->sps.bit_depth_luma ||
1376 h->chroma_format_idc != h->sps.chroma_format_idc) {
1377 h->bit_depth_luma = h->sps.bit_depth_luma;
1378 h->chroma_format_idc = h->sps.chroma_format_idc;
1381 if ((ret = ff_h264_set_parameter_from_sps(h)) < 0)
1385 h->avctx->profile = ff_h264_get_profile(&h->sps);
1386 h->avctx->level = h->sps.level_idc;
1387 h->avctx->refs = h->sps.ref_frame_count;
1389 must_reinit = (h->context_initialized &&
1390 ( 16*h->sps.mb_width != h->avctx->coded_width
1391 || 16*h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) != h->avctx->coded_height
1392 || h->avctx->bits_per_raw_sample != h->sps.bit_depth_luma
1393 || h->cur_chroma_format_idc != h->sps.chroma_format_idc
1394 || av_cmp_q(h->sps.sar, h->avctx->sample_aspect_ratio)
1395 || h->mb_width != h->sps.mb_width
1396 || h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag)
1398 if (non_j_pixfmt(h0->avctx->pix_fmt) != non_j_pixfmt(get_pixel_format(h0, 0)))
1401 h->mb_width = h->sps.mb_width;
1402 h->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
1403 h->mb_num = h->mb_width * h->mb_height;
1404 h->mb_stride = h->mb_width + 1;
1406 h->b_stride = h->mb_width * 4;
1408 h->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
1410 h->width = 16 * h->mb_width;
1411 h->height = 16 * h->mb_height;
1413 ret = init_dimensions(h);
1417 if (h->sps.video_signal_type_present_flag) {
1418 h->avctx->color_range = h->sps.full_range>0 ? AVCOL_RANGE_JPEG
1420 if (h->sps.colour_description_present_flag) {
1421 if (h->avctx->colorspace != h->sps.colorspace)
1423 h->avctx->color_primaries = h->sps.color_primaries;
1424 h->avctx->color_trc = h->sps.color_trc;
1425 h->avctx->colorspace = h->sps.colorspace;
1429 if (h->context_initialized &&
1430 (must_reinit || needs_reinit)) {
1432 av_log(h->avctx, AV_LOG_ERROR,
1433 "changing width %d -> %d / height %d -> %d on "
1435 h->width, h->avctx->coded_width,
1436 h->height, h->avctx->coded_height,
1437 h0->current_slice + 1);
1438 return AVERROR_INVALIDDATA;
1441 ff_h264_flush_change(h);
1443 if ((ret = get_pixel_format(h, 1)) < 0)
1445 h->avctx->pix_fmt = ret;
1447 av_log(h->avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
1448 "pix_fmt: %s\n", h->width, h->height, av_get_pix_fmt_name(h->avctx->pix_fmt));
1450 if ((ret = h264_slice_header_init(h, 1)) < 0) {
1451 av_log(h->avctx, AV_LOG_ERROR,
1452 "h264_slice_header_init() failed\n");
1456 if (!h->context_initialized) {
1458 av_log(h->avctx, AV_LOG_ERROR,
1459 "Cannot (re-)initialize context during parallel decoding.\n");
1460 return AVERROR_PATCHWELCOME;
1463 if ((ret = get_pixel_format(h, 1)) < 0)
1465 h->avctx->pix_fmt = ret;
1467 if ((ret = h264_slice_header_init(h, 0)) < 0) {
1468 av_log(h->avctx, AV_LOG_ERROR,
1469 "h264_slice_header_init() failed\n");
1474 if (h == h0 && h->dequant_coeff_pps != pps_id) {
1475 h->dequant_coeff_pps = pps_id;
1476 h264_init_dequant_tables(h);
1479 h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
1482 h->mb_aff_frame = 0;
1483 last_pic_structure = h0->picture_structure;
1484 last_pic_droppable = h0->droppable;
1485 h->droppable = h->nal_ref_idc == 0;
1486 if (h->sps.frame_mbs_only_flag) {
1487 h->picture_structure = PICT_FRAME;
1489 if (!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B) {
1490 av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
1493 field_pic_flag = get_bits1(&h->gb);
1494 if (field_pic_flag) {
1495 bottom_field_flag = get_bits1(&h->gb);
1496 h->picture_structure = PICT_TOP_FIELD + bottom_field_flag;
1498 h->picture_structure = PICT_FRAME;
1499 h->mb_aff_frame = h->sps.mb_aff;
1502 h->mb_field_decoding_flag = h->picture_structure != PICT_FRAME;
1504 if (h0->current_slice != 0) {
1505 if (last_pic_structure != h->picture_structure ||
1506 last_pic_droppable != h->droppable) {
1507 av_log(h->avctx, AV_LOG_ERROR,
1508 "Changing field mode (%d -> %d) between slices is not allowed\n",
1509 last_pic_structure, h->picture_structure);
1510 h->picture_structure = last_pic_structure;
1511 h->droppable = last_pic_droppable;
1512 return AVERROR_INVALIDDATA;
1513 } else if (!h0->cur_pic_ptr) {
1514 av_log(h->avctx, AV_LOG_ERROR,
1515 "unset cur_pic_ptr on slice %d\n",
1516 h0->current_slice + 1);
1517 return AVERROR_INVALIDDATA;
1520 /* Shorten frame num gaps so we don't have to allocate reference
1521 * frames just to throw them away */
1522 if (h->frame_num != h->prev_frame_num) {
1523 int unwrap_prev_frame_num = h->prev_frame_num;
1524 int max_frame_num = 1 << h->sps.log2_max_frame_num;
1526 if (unwrap_prev_frame_num > h->frame_num)
1527 unwrap_prev_frame_num -= max_frame_num;
1529 if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
1530 unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
1531 if (unwrap_prev_frame_num < 0)
1532 unwrap_prev_frame_num += max_frame_num;
1534 h->prev_frame_num = unwrap_prev_frame_num;
1538 /* See if we have a decoded first field looking for a pair...
1539 * Here, we're using that to see if we should mark previously
1540 * decode frames as "finished".
1541 * We have to do that before the "dummy" in-between frame allocation,
1542 * since that can modify h->cur_pic_ptr. */
1543 if (h0->first_field) {
1544 assert(h0->cur_pic_ptr);
1545 assert(h0->cur_pic_ptr->f.buf[0]);
1546 assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1548 /* Mark old field/frame as completed */
1549 if (h0->cur_pic_ptr->tf.owner == h0->avctx) {
1550 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1551 last_pic_structure == PICT_BOTTOM_FIELD);
1554 /* figure out if we have a complementary field pair */
1555 if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1556 /* Previous field is unmatched. Don't display it, but let it
1557 * remain for reference if marked as such. */
1558 if (last_pic_structure != PICT_FRAME) {
1559 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1560 last_pic_structure == PICT_TOP_FIELD);
1563 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1564 /* This and previous field were reference, but had
1565 * different frame_nums. Consider this field first in
1566 * pair. Throw away previous field except for reference
1568 if (last_pic_structure != PICT_FRAME) {
1569 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1570 last_pic_structure == PICT_TOP_FIELD);
1573 /* Second field in complementary pair */
1574 if (!((last_pic_structure == PICT_TOP_FIELD &&
1575 h->picture_structure == PICT_BOTTOM_FIELD) ||
1576 (last_pic_structure == PICT_BOTTOM_FIELD &&
1577 h->picture_structure == PICT_TOP_FIELD))) {
1578 av_log(h->avctx, AV_LOG_ERROR,
1579 "Invalid field mode combination %d/%d\n",
1580 last_pic_structure, h->picture_structure);
1581 h->picture_structure = last_pic_structure;
1582 h->droppable = last_pic_droppable;
1583 return AVERROR_INVALIDDATA;
1584 } else if (last_pic_droppable != h->droppable) {
1585 avpriv_request_sample(h->avctx,
1586 "Found reference and non-reference fields in the same frame, which");
1587 h->picture_structure = last_pic_structure;
1588 h->droppable = last_pic_droppable;
1589 return AVERROR_PATCHWELCOME;
1595 while (h->frame_num != h->prev_frame_num && !h0->first_field &&
1596 h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
1597 H264Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
1598 av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
1599 h->frame_num, h->prev_frame_num);
1600 if (!h->sps.gaps_in_frame_num_allowed_flag)
1601 for(i=0; i<FF_ARRAY_ELEMS(h->last_pocs); i++)
1602 h->last_pocs[i] = INT_MIN;
1603 ret = h264_frame_start(h);
1605 h0->first_field = 0;
1609 h->prev_frame_num++;
1610 h->prev_frame_num %= 1 << h->sps.log2_max_frame_num;
1611 h->cur_pic_ptr->frame_num = h->prev_frame_num;
1612 h->cur_pic_ptr->invalid_gap = !h->sps.gaps_in_frame_num_allowed_flag;
1613 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
1614 ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
1615 ret = ff_generate_sliding_window_mmcos(h, 1);
1616 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1618 ret = ff_h264_execute_ref_pic_marking(h, h->mmco, h->mmco_index);
1619 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1621 /* Error concealment: If a ref is missing, copy the previous ref
1623 * FIXME: Avoiding a memcpy would be nice, but ref handling makes
1624 * many assumptions about there being no actual duplicates.
1625 * FIXME: This does not copy padding for out-of-frame motion
1626 * vectors. Given we are concealing a lost frame, this probably
1627 * is not noticeable by comparison, but it should be fixed. */
1628 if (h->short_ref_count) {
1630 av_image_copy(h->short_ref[0]->f.data,
1631 h->short_ref[0]->f.linesize,
1632 (const uint8_t **)prev->f.data,
1637 h->short_ref[0]->poc = prev->poc + 2;
1639 h->short_ref[0]->frame_num = h->prev_frame_num;
1643 /* See if we have a decoded first field looking for a pair...
1644 * We're using that to see whether to continue decoding in that
1645 * frame, or to allocate a new one. */
1646 if (h0->first_field) {
1647 assert(h0->cur_pic_ptr);
1648 assert(h0->cur_pic_ptr->f.buf[0]);
1649 assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1651 /* figure out if we have a complementary field pair */
1652 if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1653 /* Previous field is unmatched. Don't display it, but let it
1654 * remain for reference if marked as such. */
1655 h0->cur_pic_ptr = NULL;
1656 h0->first_field = FIELD_PICTURE(h);
1658 if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1659 ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1660 h0->picture_structure==PICT_BOTTOM_FIELD);
1661 /* This and the previous field had different frame_nums.
1662 * Consider this field first in pair. Throw away previous
1663 * one except for reference purposes. */
1664 h0->first_field = 1;
1665 h0->cur_pic_ptr = NULL;
1667 /* Second field in complementary pair */
1668 h0->first_field = 0;
1672 /* Frame or first field in a potentially complementary pair */
1673 h0->first_field = FIELD_PICTURE(h);
1676 if (!FIELD_PICTURE(h) || h0->first_field) {
1677 if (h264_frame_start(h) < 0) {
1678 h0->first_field = 0;
1679 return AVERROR_INVALIDDATA;
1682 release_unused_pictures(h, 0);
1684 /* Some macroblocks can be accessed before they're available in case
1685 * of lost slices, MBAFF or threading. */
1686 if (FIELD_PICTURE(h)) {
1687 for(i = (h->picture_structure == PICT_BOTTOM_FIELD); i<h->mb_height; i++)
1688 memset(h->slice_table + i*h->mb_stride, -1, (h->mb_stride - (i+1==h->mb_height)) * sizeof(*h->slice_table));
1690 memset(h->slice_table, -1,
1691 (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
1693 h0->last_slice_type = -1;
1695 if (h != h0 && (ret = clone_slice(h, h0)) < 0)
1698 /* can't be in alloc_tables because linesize isn't known there.
1699 * FIXME: redo bipred weight to not require extra buffer? */
1700 for (i = 0; i < h->slice_context_count; i++)
1701 if (h->thread_context[i]) {
1702 ret = alloc_scratch_buffers(h->thread_context[i], h->linesize);
1707 h->cur_pic_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
1709 av_assert1(h->mb_num == h->mb_width * h->mb_height);
1710 if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
1711 first_mb_in_slice >= h->mb_num) {
1712 av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
1713 return AVERROR_INVALIDDATA;
1715 h->resync_mb_x = h->mb_x = first_mb_in_slice % h->mb_width;
1716 h->resync_mb_y = h->mb_y = (first_mb_in_slice / h->mb_width) <<
1717 FIELD_OR_MBAFF_PICTURE(h);
1718 if (h->picture_structure == PICT_BOTTOM_FIELD)
1719 h->resync_mb_y = h->mb_y = h->mb_y + 1;
1720 av_assert1(h->mb_y < h->mb_height);
1722 if (h->picture_structure == PICT_FRAME) {
1723 h->curr_pic_num = h->frame_num;
1724 h->max_pic_num = 1 << h->sps.log2_max_frame_num;
1726 h->curr_pic_num = 2 * h->frame_num + 1;
1727 h->max_pic_num = 1 << (h->sps.log2_max_frame_num + 1);
1730 if (h->nal_unit_type == NAL_IDR_SLICE)
1731 get_ue_golomb(&h->gb); /* idr_pic_id */
1733 if (h->sps.poc_type == 0) {
1734 h->poc_lsb = get_bits(&h->gb, h->sps.log2_max_poc_lsb);
1736 if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1737 h->delta_poc_bottom = get_se_golomb(&h->gb);
1740 if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
1741 h->delta_poc[0] = get_se_golomb(&h->gb);
1743 if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1744 h->delta_poc[1] = get_se_golomb(&h->gb);
1747 ff_init_poc(h, h->cur_pic_ptr->field_poc, &h->cur_pic_ptr->poc);
1749 if (h->pps.redundant_pic_cnt_present)
1750 h->redundant_pic_count = get_ue_golomb(&h->gb);
1752 ret = ff_set_ref_count(h);
1756 if (slice_type != AV_PICTURE_TYPE_I &&
1757 (h0->current_slice == 0 ||
1758 slice_type != h0->last_slice_type ||
1759 memcmp(h0->last_ref_count, h0->ref_count, sizeof(h0->ref_count)))) {
1761 ff_h264_fill_default_ref_list(h);
1764 if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
1765 ret = ff_h264_decode_ref_pic_list_reordering(h);
1767 h->ref_count[1] = h->ref_count[0] = 0;
1772 if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
1773 (h->pps.weighted_bipred_idc == 1 &&
1774 h->slice_type_nos == AV_PICTURE_TYPE_B))
1775 ff_pred_weight_table(h);
1776 else if (h->pps.weighted_bipred_idc == 2 &&
1777 h->slice_type_nos == AV_PICTURE_TYPE_B) {
1778 implicit_weight_table(h, -1);
1781 for (i = 0; i < 2; i++) {
1782 h->luma_weight_flag[i] = 0;
1783 h->chroma_weight_flag[i] = 0;
1787 // If frame-mt is enabled, only update mmco tables for the first slice
1788 // in a field. Subsequent slices can temporarily clobber h->mmco_index
1789 // or h->mmco, which will cause ref list mix-ups and decoding errors
1790 // further down the line. This may break decoding if the first slice is
1791 // corrupt, thus we only do this if frame-mt is enabled.
1792 if (h->nal_ref_idc) {
1793 ret = ff_h264_decode_ref_pic_marking(h0, &h->gb,
1794 !(h->avctx->active_thread_type & FF_THREAD_FRAME) ||
1795 h0->current_slice == 0);
1796 if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1797 return AVERROR_INVALIDDATA;
1800 if (FRAME_MBAFF(h)) {
1801 ff_h264_fill_mbaff_ref_list(h);
1803 if (h->pps.weighted_bipred_idc == 2 && h->slice_type_nos == AV_PICTURE_TYPE_B) {
1804 implicit_weight_table(h, 0);
1805 implicit_weight_table(h, 1);
1809 if (h->slice_type_nos == AV_PICTURE_TYPE_B && !h->direct_spatial_mv_pred)
1810 ff_h264_direct_dist_scale_factor(h);
1811 ff_h264_direct_ref_list_init(h);
1813 if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
1814 tmp = get_ue_golomb_31(&h->gb);
1816 av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc %u overflow\n", tmp);
1817 return AVERROR_INVALIDDATA;
1819 h->cabac_init_idc = tmp;
1822 h->last_qscale_diff = 0;
1823 tmp = h->pps.init_qp + get_se_golomb(&h->gb);
1824 if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
1825 av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
1826 return AVERROR_INVALIDDATA;
1829 h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
1830 h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
1831 // FIXME qscale / qp ... stuff
1832 if (h->slice_type == AV_PICTURE_TYPE_SP)
1833 get_bits1(&h->gb); /* sp_for_switch_flag */
1834 if (h->slice_type == AV_PICTURE_TYPE_SP ||
1835 h->slice_type == AV_PICTURE_TYPE_SI)
1836 get_se_golomb(&h->gb); /* slice_qs_delta */
1838 h->deblocking_filter = 1;
1839 h->slice_alpha_c0_offset = 0;
1840 h->slice_beta_offset = 0;
1841 if (h->pps.deblocking_filter_parameters_present) {
1842 tmp = get_ue_golomb_31(&h->gb);
1844 av_log(h->avctx, AV_LOG_ERROR,
1845 "deblocking_filter_idc %u out of range\n", tmp);
1846 return AVERROR_INVALIDDATA;
1848 h->deblocking_filter = tmp;
1849 if (h->deblocking_filter < 2)
1850 h->deblocking_filter ^= 1; // 1<->0
1852 if (h->deblocking_filter) {
1853 h->slice_alpha_c0_offset = get_se_golomb(&h->gb) * 2;
1854 h->slice_beta_offset = get_se_golomb(&h->gb) * 2;
1855 if (h->slice_alpha_c0_offset > 12 ||
1856 h->slice_alpha_c0_offset < -12 ||
1857 h->slice_beta_offset > 12 ||
1858 h->slice_beta_offset < -12) {
1859 av_log(h->avctx, AV_LOG_ERROR,
1860 "deblocking filter parameters %d %d out of range\n",
1861 h->slice_alpha_c0_offset, h->slice_beta_offset);
1862 return AVERROR_INVALIDDATA;
1867 if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
1868 (h->avctx->skip_loop_filter >= AVDISCARD_NONKEY &&
1869 h->nal_unit_type != NAL_IDR_SLICE) ||
1870 (h->avctx->skip_loop_filter >= AVDISCARD_NONINTRA &&
1871 h->slice_type_nos != AV_PICTURE_TYPE_I) ||
1872 (h->avctx->skip_loop_filter >= AVDISCARD_BIDIR &&
1873 h->slice_type_nos == AV_PICTURE_TYPE_B) ||
1874 (h->avctx->skip_loop_filter >= AVDISCARD_NONREF &&
1875 h->nal_ref_idc == 0))
1876 h->deblocking_filter = 0;
1878 if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
1879 if (h->avctx->flags2 & CODEC_FLAG2_FAST) {
1880 /* Cheat slightly for speed:
1881 * Do not bother to deblock across slices. */
1882 h->deblocking_filter = 2;
1884 h0->max_contexts = 1;
1885 if (!h0->single_decode_warning) {
1886 av_log(h->avctx, AV_LOG_INFO,
1887 "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
1888 h0->single_decode_warning = 1;
1891 av_log(h->avctx, AV_LOG_ERROR,
1892 "Deblocking switched inside frame.\n");
1893 return SLICE_SINGLETHREAD;
1898 FFMIN(h->slice_alpha_c0_offset, h->slice_beta_offset) -
1900 h->pps.chroma_qp_index_offset[0],
1901 h->pps.chroma_qp_index_offset[1]) +
1902 6 * (h->sps.bit_depth_luma - 8);
1904 h0->last_slice_type = slice_type;
1905 memcpy(h0->last_ref_count, h0->ref_count, sizeof(h0->last_ref_count));
1906 h->slice_num = ++h0->current_slice;
1909 h0->slice_row[(h->slice_num-1)&(MAX_SLICES-1)]= h->resync_mb_y;
1910 if ( h0->slice_row[h->slice_num&(MAX_SLICES-1)] + 3 >= h->resync_mb_y
1911 && h0->slice_row[h->slice_num&(MAX_SLICES-1)] <= h->resync_mb_y
1912 && h->slice_num >= MAX_SLICES) {
1913 //in case of ASO this check needs to be updated depending on how we decide to assign slice numbers in this case
1914 av_log(h->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);
1917 for (j = 0; j < 2; j++) {
1919 int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
1920 for (i = 0; i < 16; i++) {
1922 if (j < h->list_count && i < h->ref_count[j] &&
1923 h->ref_list[j][i].f.buf[0]) {
1925 AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
1926 for (k = 0; k < h->short_ref_count; k++)
1927 if (h->short_ref[k]->f.buf[0]->buffer == buf) {
1931 for (k = 0; k < h->long_ref_count; k++)
1932 if (h->long_ref[k] && h->long_ref[k]->f.buf[0]->buffer == buf) {
1933 id_list[i] = h->short_ref_count + k;
1941 for (i = 0; i < 16; i++)
1942 ref2frm[i + 2] = 4 * id_list[i] + (h->ref_list[j][i].reference & 3);
1944 ref2frm[18 + 1] = -1;
1945 for (i = 16; i < 48; i++)
1946 ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
1947 (h->ref_list[j][i].reference & 3);
1950 if (h->ref_count[0]) ff_h264_set_erpic(&h->er.last_pic, &h->ref_list[0][0]);
1951 if (h->ref_count[1]) ff_h264_set_erpic(&h->er.next_pic, &h->ref_list[1][0]);
1953 h->er.ref_count = h->ref_count[0];
1954 h0->au_pps_id = pps_id;
1956 h0->sps_buffers[h->pps.sps_id]->new = 0;
1957 h->current_sps_id = h->pps.sps_id;
1959 if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
1960 av_log(h->avctx, AV_LOG_DEBUG,
1961 "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",
1963 (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
1965 av_get_picture_type_char(h->slice_type),
1966 h->slice_type_fixed ? " fix" : "",
1967 h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
1968 pps_id, h->frame_num,
1969 h->cur_pic_ptr->field_poc[0],
1970 h->cur_pic_ptr->field_poc[1],
1971 h->ref_count[0], h->ref_count[1],
1973 h->deblocking_filter,
1974 h->slice_alpha_c0_offset, h->slice_beta_offset,
1976 h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
1977 h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
1983 int ff_h264_get_slice_type(const H264Context *h)
1985 switch (h->slice_type) {
1986 case AV_PICTURE_TYPE_P:
1988 case AV_PICTURE_TYPE_B:
1990 case AV_PICTURE_TYPE_I:
1992 case AV_PICTURE_TYPE_SP:
1994 case AV_PICTURE_TYPE_SI:
1997 return AVERROR_INVALIDDATA;
2001 static av_always_inline void fill_filter_caches_inter(H264Context *h,
2002 int mb_type, int top_xy,
2003 int left_xy[LEFT_MBS],
2005 int left_type[LEFT_MBS],
2006 int mb_xy, int list)
2008 int b_stride = h->b_stride;
2009 int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
2010 int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
2011 if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
2012 if (USES_LIST(top_type, list)) {
2013 const int b_xy = h->mb2b_xy[top_xy] + 3 * b_stride;
2014 const int b8_xy = 4 * top_xy + 2;
2015 int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2016 AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
2017 ref_cache[0 - 1 * 8] =
2018 ref_cache[1 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 0]];
2019 ref_cache[2 - 1 * 8] =
2020 ref_cache[3 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 1]];
2022 AV_ZERO128(mv_dst - 1 * 8);
2023 AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2026 if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
2027 if (USES_LIST(left_type[LTOP], list)) {
2028 const int b_xy = h->mb2b_xy[left_xy[LTOP]] + 3;
2029 const int b8_xy = 4 * left_xy[LTOP] + 1;
2030 int (*ref2frm)[64] =(void*)( h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2031 AV_COPY32(mv_dst - 1 + 0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
2032 AV_COPY32(mv_dst - 1 + 8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
2033 AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
2034 AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
2036 ref_cache[-1 + 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
2037 ref_cache[-1 + 16] =
2038 ref_cache[-1 + 24] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
2040 AV_ZERO32(mv_dst - 1 + 0);
2041 AV_ZERO32(mv_dst - 1 + 8);
2042 AV_ZERO32(mv_dst - 1 + 16);
2043 AV_ZERO32(mv_dst - 1 + 24);
2046 ref_cache[-1 + 16] =
2047 ref_cache[-1 + 24] = LIST_NOT_USED;
2052 if (!USES_LIST(mb_type, list)) {
2053 fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
2054 AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2055 AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2056 AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2057 AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
2062 int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
2063 int (*ref2frm)[64] = (void*)(h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2));
2064 uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
2065 uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
2066 AV_WN32A(&ref_cache[0 * 8], ref01);
2067 AV_WN32A(&ref_cache[1 * 8], ref01);
2068 AV_WN32A(&ref_cache[2 * 8], ref23);
2069 AV_WN32A(&ref_cache[3 * 8], ref23);
2073 int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * h->mb_x + 4 * h->mb_y * b_stride];
2074 AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
2075 AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
2076 AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
2077 AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
2083 * @return non zero if the loop filter can be skipped
2085 static int fill_filter_caches(H264Context *h, int mb_type)
2087 const int mb_xy = h->mb_xy;
2088 int top_xy, left_xy[LEFT_MBS];
2089 int top_type, left_type[LEFT_MBS];
2093 top_xy = mb_xy - (h->mb_stride << MB_FIELD(h));
2095 /* Wow, what a mess, why didn't they simplify the interlacing & intra
2096 * stuff, I can't imagine that these complex rules are worth it. */
2098 left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
2099 if (FRAME_MBAFF(h)) {
2100 const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
2101 const int curr_mb_field_flag = IS_INTERLACED(mb_type);
2103 if (left_mb_field_flag != curr_mb_field_flag)
2104 left_xy[LTOP] -= h->mb_stride;
2106 if (curr_mb_field_flag)
2107 top_xy += h->mb_stride &
2108 (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
2109 if (left_mb_field_flag != curr_mb_field_flag)
2110 left_xy[LBOT] += h->mb_stride;
2114 h->top_mb_xy = top_xy;
2115 h->left_mb_xy[LTOP] = left_xy[LTOP];
2116 h->left_mb_xy[LBOT] = left_xy[LBOT];
2118 /* For sufficiently low qp, filtering wouldn't do anything.
2119 * This is a conservative estimate: could also check beta_offset
2120 * and more accurate chroma_qp. */
2121 int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
2122 int qp = h->cur_pic.qscale_table[mb_xy];
2123 if (qp <= qp_thresh &&
2124 (left_xy[LTOP] < 0 ||
2125 ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
2127 ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
2128 if (!FRAME_MBAFF(h))
2130 if ((left_xy[LTOP] < 0 ||
2131 ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
2132 (top_xy < h->mb_stride ||
2133 ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
2138 top_type = h->cur_pic.mb_type[top_xy];
2139 left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
2140 left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
2141 if (h->deblocking_filter == 2) {
2142 if (h->slice_table[top_xy] != h->slice_num)
2144 if (h->slice_table[left_xy[LBOT]] != h->slice_num)
2145 left_type[LTOP] = left_type[LBOT] = 0;
2147 if (h->slice_table[top_xy] == 0xFFFF)
2149 if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
2150 left_type[LTOP] = left_type[LBOT] = 0;
2152 h->top_type = top_type;
2153 h->left_type[LTOP] = left_type[LTOP];
2154 h->left_type[LBOT] = left_type[LBOT];
2156 if (IS_INTRA(mb_type))
2159 fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2160 top_type, left_type, mb_xy, 0);
2161 if (h->list_count == 2)
2162 fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2163 top_type, left_type, mb_xy, 1);
2165 nnz = h->non_zero_count[mb_xy];
2166 nnz_cache = h->non_zero_count_cache;
2167 AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
2168 AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
2169 AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
2170 AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
2171 h->cbp = h->cbp_table[mb_xy];
2174 nnz = h->non_zero_count[top_xy];
2175 AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
2178 if (left_type[LTOP]) {
2179 nnz = h->non_zero_count[left_xy[LTOP]];
2180 nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
2181 nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
2182 nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
2183 nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
2186 /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
2187 * from what the loop filter needs */
2188 if (!CABAC(h) && h->pps.transform_8x8_mode) {
2189 if (IS_8x8DCT(top_type)) {
2190 nnz_cache[4 + 8 * 0] =
2191 nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
2192 nnz_cache[6 + 8 * 0] =
2193 nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
2195 if (IS_8x8DCT(left_type[LTOP])) {
2196 nnz_cache[3 + 8 * 1] =
2197 nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
2199 if (IS_8x8DCT(left_type[LBOT])) {
2200 nnz_cache[3 + 8 * 3] =
2201 nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
2204 if (IS_8x8DCT(mb_type)) {
2205 nnz_cache[scan8[0]] =
2206 nnz_cache[scan8[1]] =
2207 nnz_cache[scan8[2]] =
2208 nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
2210 nnz_cache[scan8[0 + 4]] =
2211 nnz_cache[scan8[1 + 4]] =
2212 nnz_cache[scan8[2 + 4]] =
2213 nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
2215 nnz_cache[scan8[0 + 8]] =
2216 nnz_cache[scan8[1 + 8]] =
2217 nnz_cache[scan8[2 + 8]] =
2218 nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
2220 nnz_cache[scan8[0 + 12]] =
2221 nnz_cache[scan8[1 + 12]] =
2222 nnz_cache[scan8[2 + 12]] =
2223 nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
2230 static void loop_filter(H264Context *h, int start_x, int end_x)
2232 uint8_t *dest_y, *dest_cb, *dest_cr;
2233 int linesize, uvlinesize, mb_x, mb_y;
2234 const int end_mb_y = h->mb_y + FRAME_MBAFF(h);
2235 const int old_slice_type = h->slice_type;
2236 const int pixel_shift = h->pixel_shift;
2237 const int block_h = 16 >> h->chroma_y_shift;
2239 if (h->deblocking_filter) {
2240 for (mb_x = start_x; mb_x < end_x; mb_x++)
2241 for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
2243 mb_xy = h->mb_xy = mb_x + mb_y * h->mb_stride;
2244 h->slice_num = h->slice_table[mb_xy];
2245 mb_type = h->cur_pic.mb_type[mb_xy];
2246 h->list_count = h->list_counts[mb_xy];
2250 h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
2254 dest_y = h->cur_pic.f.data[0] +
2255 ((mb_x << pixel_shift) + mb_y * h->linesize) * 16;
2256 dest_cb = h->cur_pic.f.data[1] +
2257 (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2258 mb_y * h->uvlinesize * block_h;
2259 dest_cr = h->cur_pic.f.data[2] +
2260 (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2261 mb_y * h->uvlinesize * block_h;
2262 // FIXME simplify above
2265 linesize = h->mb_linesize = h->linesize * 2;
2266 uvlinesize = h->mb_uvlinesize = h->uvlinesize * 2;
2267 if (mb_y & 1) { // FIXME move out of this function?
2268 dest_y -= h->linesize * 15;
2269 dest_cb -= h->uvlinesize * (block_h - 1);
2270 dest_cr -= h->uvlinesize * (block_h - 1);
2273 linesize = h->mb_linesize = h->linesize;
2274 uvlinesize = h->mb_uvlinesize = h->uvlinesize;
2276 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
2278 if (fill_filter_caches(h, mb_type))
2280 h->chroma_qp[0] = get_chroma_qp(h, 0, h->cur_pic.qscale_table[mb_xy]);
2281 h->chroma_qp[1] = get_chroma_qp(h, 1, h->cur_pic.qscale_table[mb_xy]);
2283 if (FRAME_MBAFF(h)) {
2284 ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
2285 linesize, uvlinesize);
2287 ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
2288 dest_cr, linesize, uvlinesize);
2292 h->slice_type = old_slice_type;
2294 h->mb_y = end_mb_y - FRAME_MBAFF(h);
2295 h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
2296 h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
2299 static void predict_field_decoding_flag(H264Context *h)
2301 const int mb_xy = h->mb_x + h->mb_y * h->mb_stride;
2302 int mb_type = (h->slice_table[mb_xy - 1] == h->slice_num) ?
2303 h->cur_pic.mb_type[mb_xy - 1] :
2304 (h->slice_table[mb_xy - h->mb_stride] == h->slice_num) ?
2305 h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
2306 h->mb_mbaff = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
2310 * Draw edges and report progress for the last MB row.
2312 static void decode_finish_row(H264Context *h)
2314 int top = 16 * (h->mb_y >> FIELD_PICTURE(h));
2315 int pic_height = 16 * h->mb_height >> FIELD_PICTURE(h);
2316 int height = 16 << FRAME_MBAFF(h);
2317 int deblock_border = (16 + 4) << FRAME_MBAFF(h);
2319 if (h->deblocking_filter) {
2320 if ((top + height) >= pic_height)
2321 height += deblock_border;
2322 top -= deblock_border;
2325 if (top >= pic_height || (top + height) < 0)
2328 height = FFMIN(height, pic_height - top);
2330 height = top + height;
2334 ff_h264_draw_horiz_band(h, top, height);
2336 if (h->droppable || h->er.error_occurred)
2339 ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
2340 h->picture_structure == PICT_BOTTOM_FIELD);
2343 static void er_add_slice(H264Context *h, int startx, int starty,
2344 int endx, int endy, int status)
2346 if (CONFIG_ERROR_RESILIENCE) {
2347 ERContext *er = &h->er;
2349 ff_er_add_slice(er, startx, starty, endx, endy, status);
2353 static int decode_slice(struct AVCodecContext *avctx, void *arg)
2355 H264Context *h = *(void **)arg;
2356 int lf_x_start = h->mb_x;
2358 h->mb_skip_run = -1;
2360 av_assert0(h->block_offset[15] == (4 * ((scan8[15] - scan8[0]) & 7) << h->pixel_shift) + 4 * h->linesize * ((scan8[15] - scan8[0]) >> 3));
2362 h->is_complex = FRAME_MBAFF(h) || h->picture_structure != PICT_FRAME ||
2363 avctx->codec_id != AV_CODEC_ID_H264 ||
2364 (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
2366 if (!(h->avctx->active_thread_type & FF_THREAD_SLICE) && h->picture_structure == PICT_FRAME && h->er.error_status_table) {
2367 const int start_i = av_clip(h->resync_mb_x + h->resync_mb_y * h->mb_width, 0, h->mb_num - 1);
2369 int prev_status = h->er.error_status_table[h->er.mb_index2xy[start_i - 1]];
2370 prev_status &= ~ VP_START;
2371 if (prev_status != (ER_MV_END | ER_DC_END | ER_AC_END))
2372 h->er.error_occurred = 1;
2378 align_get_bits(&h->gb);
2381 ff_init_cabac_decoder(&h->cabac,
2382 h->gb.buffer + get_bits_count(&h->gb) / 8,
2383 (get_bits_left(&h->gb) + 7) / 8);
2385 ff_h264_init_cabac_states(h);
2389 int ret = ff_h264_decode_mb_cabac(h);
2391 // STOP_TIMER("decode_mb_cabac")
2394 ff_h264_hl_decode_mb(h);
2396 // FIXME optimal? or let mb_decode decode 16x32 ?
2397 if (ret >= 0 && FRAME_MBAFF(h)) {
2400 ret = ff_h264_decode_mb_cabac(h);
2403 ff_h264_hl_decode_mb(h);
2406 eos = get_cabac_terminate(&h->cabac);
2408 if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
2409 h->cabac.bytestream > h->cabac.bytestream_end + 2) {
2410 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2411 h->mb_y, ER_MB_END);
2412 if (h->mb_x >= lf_x_start)
2413 loop_filter(h, lf_x_start, h->mb_x + 1);
2416 if (h->cabac.bytestream > h->cabac.bytestream_end + 2 )
2417 av_log(h->avctx, AV_LOG_DEBUG, "bytestream overread %"PTRDIFF_SPECIFIER"\n", h->cabac.bytestream_end - h->cabac.bytestream);
2418 if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 4) {
2419 av_log(h->avctx, AV_LOG_ERROR,
2420 "error while decoding MB %d %d, bytestream %"PTRDIFF_SPECIFIER"\n",
2422 h->cabac.bytestream_end - h->cabac.bytestream);
2423 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2424 h->mb_y, ER_MB_ERROR);
2425 return AVERROR_INVALIDDATA;
2428 if (++h->mb_x >= h->mb_width) {
2429 loop_filter(h, lf_x_start, h->mb_x);
2430 h->mb_x = lf_x_start = 0;
2431 decode_finish_row(h);
2433 if (FIELD_OR_MBAFF_PICTURE(h)) {
2435 if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2436 predict_field_decoding_flag(h);
2440 if (eos || h->mb_y >= h->mb_height) {
2441 tprintf(h->avctx, "slice end %d %d\n",
2442 get_bits_count(&h->gb), h->gb.size_in_bits);
2443 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2444 h->mb_y, ER_MB_END);
2445 if (h->mb_x > lf_x_start)
2446 loop_filter(h, lf_x_start, h->mb_x);
2452 int ret = ff_h264_decode_mb_cavlc(h);
2455 ff_h264_hl_decode_mb(h);
2457 // FIXME optimal? or let mb_decode decode 16x32 ?
2458 if (ret >= 0 && FRAME_MBAFF(h)) {
2460 ret = ff_h264_decode_mb_cavlc(h);
2463 ff_h264_hl_decode_mb(h);
2468 av_log(h->avctx, AV_LOG_ERROR,
2469 "error while decoding MB %d %d\n", h->mb_x, h->mb_y);
2470 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2471 h->mb_y, ER_MB_ERROR);
2475 if (++h->mb_x >= h->mb_width) {
2476 loop_filter(h, lf_x_start, h->mb_x);
2477 h->mb_x = lf_x_start = 0;
2478 decode_finish_row(h);
2480 if (FIELD_OR_MBAFF_PICTURE(h)) {
2482 if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2483 predict_field_decoding_flag(h);
2485 if (h->mb_y >= h->mb_height) {
2486 tprintf(h->avctx, "slice end %d %d\n",
2487 get_bits_count(&h->gb), h->gb.size_in_bits);
2489 if ( get_bits_left(&h->gb) == 0
2490 || get_bits_left(&h->gb) > 0 && !(h->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
2491 er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2492 h->mb_x - 1, h->mb_y,
2497 er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2501 return AVERROR_INVALIDDATA;
2506 if (get_bits_left(&h->gb) <= 0 && h->mb_skip_run <= 0) {
2507 tprintf(h->avctx, "slice end %d %d\n",
2508 get_bits_count(&h->gb), h->gb.size_in_bits);
2510 if (get_bits_left(&h->gb) == 0) {
2511 er_add_slice(h, h->resync_mb_x, h->resync_mb_y,
2512 h->mb_x - 1, h->mb_y,
2514 if (h->mb_x > lf_x_start)
2515 loop_filter(h, lf_x_start, h->mb_x);
2519 er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2520 h->mb_y, ER_MB_ERROR);
2522 return AVERROR_INVALIDDATA;
2530 * Call decode_slice() for each context.
2532 * @param h h264 master context
2533 * @param context_count number of contexts to execute
2535 int ff_h264_execute_decode_slices(H264Context *h, unsigned context_count)
2537 AVCodecContext *const avctx = h->avctx;
2541 av_assert0(h->mb_y < h->mb_height);
2543 if (h->avctx->hwaccel ||
2544 h->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)
2546 if (context_count == 1) {
2547 return decode_slice(avctx, &h);
2549 av_assert0(context_count > 0);
2550 for (i = 1; i < context_count; i++) {
2551 hx = h->thread_context[i];
2552 if (CONFIG_ERROR_RESILIENCE) {
2553 hx->er.error_count = 0;
2555 hx->x264_build = h->x264_build;
2558 avctx->execute(avctx, decode_slice, h->thread_context,
2559 NULL, context_count, sizeof(void *));
2561 /* pull back stuff from slices to master context */
2562 hx = h->thread_context[context_count - 1];
2565 h->droppable = hx->droppable;
2566 h->picture_structure = hx->picture_structure;
2567 if (CONFIG_ERROR_RESILIENCE) {
2568 for (i = 1; i < context_count; i++)
2569 h->er.error_count += h->thread_context[i]->er.error_count;