Libav
h264_slice.c
Go to the documentation of this file.
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... decoder
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
28 #include "libavutil/avassert.h"
29 #include "libavutil/imgutils.h"
30 #include "libavutil/timer.h"
31 #include "internal.h"
32 #include "cabac.h"
33 #include "cabac_functions.h"
34 #include "error_resilience.h"
35 #include "avcodec.h"
36 #include "h264.h"
37 #include "h264data.h"
38 #include "h264chroma.h"
39 #include "h264_mvpred.h"
40 #include "golomb.h"
41 #include "mathops.h"
42 #include "mpegutils.h"
43 #include "rectangle.h"
44 #include "thread.h"
45 
46 
47 static const uint8_t rem6[QP_MAX_NUM + 1] = {
48  0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2,
49  3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5,
50  0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3,
51 };
52 
53 static const uint8_t div6[QP_MAX_NUM + 1] = {
54  0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3,
55  3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6,
56  7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10,
57 };
58 
59 static const uint8_t field_scan[16] = {
60  0 + 0 * 4, 0 + 1 * 4, 1 + 0 * 4, 0 + 2 * 4,
61  0 + 3 * 4, 1 + 1 * 4, 1 + 2 * 4, 1 + 3 * 4,
62  2 + 0 * 4, 2 + 1 * 4, 2 + 2 * 4, 2 + 3 * 4,
63  3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4,
64 };
65 
66 static const uint8_t field_scan8x8[64] = {
67  0 + 0 * 8, 0 + 1 * 8, 0 + 2 * 8, 1 + 0 * 8,
68  1 + 1 * 8, 0 + 3 * 8, 0 + 4 * 8, 1 + 2 * 8,
69  2 + 0 * 8, 1 + 3 * 8, 0 + 5 * 8, 0 + 6 * 8,
70  0 + 7 * 8, 1 + 4 * 8, 2 + 1 * 8, 3 + 0 * 8,
71  2 + 2 * 8, 1 + 5 * 8, 1 + 6 * 8, 1 + 7 * 8,
72  2 + 3 * 8, 3 + 1 * 8, 4 + 0 * 8, 3 + 2 * 8,
73  2 + 4 * 8, 2 + 5 * 8, 2 + 6 * 8, 2 + 7 * 8,
74  3 + 3 * 8, 4 + 1 * 8, 5 + 0 * 8, 4 + 2 * 8,
75  3 + 4 * 8, 3 + 5 * 8, 3 + 6 * 8, 3 + 7 * 8,
76  4 + 3 * 8, 5 + 1 * 8, 6 + 0 * 8, 5 + 2 * 8,
77  4 + 4 * 8, 4 + 5 * 8, 4 + 6 * 8, 4 + 7 * 8,
78  5 + 3 * 8, 6 + 1 * 8, 6 + 2 * 8, 5 + 4 * 8,
79  5 + 5 * 8, 5 + 6 * 8, 5 + 7 * 8, 6 + 3 * 8,
80  7 + 0 * 8, 7 + 1 * 8, 6 + 4 * 8, 6 + 5 * 8,
81  6 + 6 * 8, 6 + 7 * 8, 7 + 2 * 8, 7 + 3 * 8,
82  7 + 4 * 8, 7 + 5 * 8, 7 + 6 * 8, 7 + 7 * 8,
83 };
84 
85 static const uint8_t field_scan8x8_cavlc[64] = {
86  0 + 0 * 8, 1 + 1 * 8, 2 + 0 * 8, 0 + 7 * 8,
87  2 + 2 * 8, 2 + 3 * 8, 2 + 4 * 8, 3 + 3 * 8,
88  3 + 4 * 8, 4 + 3 * 8, 4 + 4 * 8, 5 + 3 * 8,
89  5 + 5 * 8, 7 + 0 * 8, 6 + 6 * 8, 7 + 4 * 8,
90  0 + 1 * 8, 0 + 3 * 8, 1 + 3 * 8, 1 + 4 * 8,
91  1 + 5 * 8, 3 + 1 * 8, 2 + 5 * 8, 4 + 1 * 8,
92  3 + 5 * 8, 5 + 1 * 8, 4 + 5 * 8, 6 + 1 * 8,
93  5 + 6 * 8, 7 + 1 * 8, 6 + 7 * 8, 7 + 5 * 8,
94  0 + 2 * 8, 0 + 4 * 8, 0 + 5 * 8, 2 + 1 * 8,
95  1 + 6 * 8, 4 + 0 * 8, 2 + 6 * 8, 5 + 0 * 8,
96  3 + 6 * 8, 6 + 0 * 8, 4 + 6 * 8, 6 + 2 * 8,
97  5 + 7 * 8, 6 + 4 * 8, 7 + 2 * 8, 7 + 6 * 8,
98  1 + 0 * 8, 1 + 2 * 8, 0 + 6 * 8, 3 + 0 * 8,
99  1 + 7 * 8, 3 + 2 * 8, 2 + 7 * 8, 4 + 2 * 8,
100  3 + 7 * 8, 5 + 2 * 8, 4 + 7 * 8, 5 + 4 * 8,
101  6 + 3 * 8, 6 + 5 * 8, 7 + 3 * 8, 7 + 7 * 8,
102 };
103 
104 // zigzag_scan8x8_cavlc[i] = zigzag_scan8x8[(i/4) + 16*(i%4)]
105 static const uint8_t zigzag_scan8x8_cavlc[64] = {
106  0 + 0 * 8, 1 + 1 * 8, 1 + 2 * 8, 2 + 2 * 8,
107  4 + 1 * 8, 0 + 5 * 8, 3 + 3 * 8, 7 + 0 * 8,
108  3 + 4 * 8, 1 + 7 * 8, 5 + 3 * 8, 6 + 3 * 8,
109  2 + 7 * 8, 6 + 4 * 8, 5 + 6 * 8, 7 + 5 * 8,
110  1 + 0 * 8, 2 + 0 * 8, 0 + 3 * 8, 3 + 1 * 8,
111  3 + 2 * 8, 0 + 6 * 8, 4 + 2 * 8, 6 + 1 * 8,
112  2 + 5 * 8, 2 + 6 * 8, 6 + 2 * 8, 5 + 4 * 8,
113  3 + 7 * 8, 7 + 3 * 8, 4 + 7 * 8, 7 + 6 * 8,
114  0 + 1 * 8, 3 + 0 * 8, 0 + 4 * 8, 4 + 0 * 8,
115  2 + 3 * 8, 1 + 5 * 8, 5 + 1 * 8, 5 + 2 * 8,
116  1 + 6 * 8, 3 + 5 * 8, 7 + 1 * 8, 4 + 5 * 8,
117  4 + 6 * 8, 7 + 4 * 8, 5 + 7 * 8, 6 + 7 * 8,
118  0 + 2 * 8, 2 + 1 * 8, 1 + 3 * 8, 5 + 0 * 8,
119  1 + 4 * 8, 2 + 4 * 8, 6 + 0 * 8, 4 + 3 * 8,
120  0 + 7 * 8, 4 + 4 * 8, 7 + 2 * 8, 3 + 6 * 8,
121  5 + 5 * 8, 6 + 5 * 8, 6 + 6 * 8, 7 + 7 * 8,
122 };
123 
124 static const uint8_t dequant4_coeff_init[6][3] = {
125  { 10, 13, 16 },
126  { 11, 14, 18 },
127  { 13, 16, 20 },
128  { 14, 18, 23 },
129  { 16, 20, 25 },
130  { 18, 23, 29 },
131 };
132 
133 static const uint8_t dequant8_coeff_init_scan[16] = {
134  0, 3, 4, 3, 3, 1, 5, 1, 4, 5, 2, 5, 3, 1, 5, 1
135 };
136 
137 static const uint8_t dequant8_coeff_init[6][6] = {
138  { 20, 18, 32, 19, 25, 24 },
139  { 22, 19, 35, 21, 28, 26 },
140  { 26, 23, 42, 24, 33, 31 },
141  { 28, 25, 45, 26, 35, 33 },
142  { 32, 28, 51, 30, 40, 38 },
143  { 36, 32, 58, 34, 46, 43 },
144 };
145 
147 #if CONFIG_H264_DXVA2_HWACCEL
149 #endif
150 #if CONFIG_H264_VAAPI_HWACCEL
152 #endif
153 #if CONFIG_H264_VDA_HWACCEL
156 #endif
157 #if CONFIG_H264_VDPAU_HWACCEL
159 #endif
162 };
163 
165 #if CONFIG_H264_DXVA2_HWACCEL
167 #endif
168 #if CONFIG_H264_VAAPI_HWACCEL
170 #endif
171 #if CONFIG_H264_VDA_HWACCEL
174 #endif
175 #if CONFIG_H264_VDPAU_HWACCEL
177 #endif
180 };
181 
182 
183 static void release_unused_pictures(H264Context *h, int remove_current)
184 {
185  int i;
186 
187  /* release non reference frames */
188  for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
189  if (h->DPB[i].f.buf[0] && !h->DPB[i].reference &&
190  (remove_current || &h->DPB[i] != h->cur_pic_ptr)) {
191  ff_h264_unref_picture(h, &h->DPB[i]);
192  }
193  }
194 }
195 
196 static int alloc_scratch_buffers(H264Context *h, int linesize)
197 {
198  int alloc_size = FFALIGN(FFABS(linesize) + 32, 32);
199 
200  if (h->bipred_scratchpad)
201  return 0;
202 
203  h->bipred_scratchpad = av_malloc(16 * 6 * alloc_size);
204  // edge emu needs blocksize + filter length - 1
205  // (= 21x21 for h264)
206  h->edge_emu_buffer = av_mallocz(alloc_size * 2 * 21);
207 
208  if (!h->bipred_scratchpad || !h->edge_emu_buffer) {
211  return AVERROR(ENOMEM);
212  }
213 
214  return 0;
215 }
216 
218 {
219  const int big_mb_num = h->mb_stride * (h->mb_height + 1) + 1;
220  const int mb_array_size = h->mb_stride * h->mb_height;
221  const int b4_stride = h->mb_width * 4 + 1;
222  const int b4_array_size = b4_stride * h->mb_height * 4;
223 
224  h->qscale_table_pool = av_buffer_pool_init(big_mb_num + h->mb_stride,
226  h->mb_type_pool = av_buffer_pool_init((big_mb_num + h->mb_stride) *
227  sizeof(uint32_t), av_buffer_allocz);
228  h->motion_val_pool = av_buffer_pool_init(2 * (b4_array_size + 4) *
229  sizeof(int16_t), av_buffer_allocz);
230  h->ref_index_pool = av_buffer_pool_init(4 * mb_array_size, av_buffer_allocz);
231 
232  if (!h->qscale_table_pool || !h->mb_type_pool || !h->motion_val_pool ||
233  !h->ref_index_pool) {
238  return AVERROR(ENOMEM);
239  }
240 
241  return 0;
242 }
243 
245 {
246  int i, ret = 0;
247 
248  av_assert0(!pic->f.data[0]);
249 
250  pic->tf.f = &pic->f;
251  ret = ff_thread_get_buffer(h->avctx, &pic->tf, pic->reference ?
253  if (ret < 0)
254  goto fail;
255 
256  h->linesize = pic->f.linesize[0];
257  h->uvlinesize = pic->f.linesize[1];
258 
259  if (h->avctx->hwaccel) {
260  const AVHWAccel *hwaccel = h->avctx->hwaccel;
262  if (hwaccel->frame_priv_data_size) {
264  if (!pic->hwaccel_priv_buf)
265  return AVERROR(ENOMEM);
267  }
268  }
269 
270  if (!h->qscale_table_pool) {
271  ret = init_table_pools(h);
272  if (ret < 0)
273  goto fail;
274  }
275 
278  if (!pic->qscale_table_buf || !pic->mb_type_buf)
279  goto fail;
280 
281  pic->mb_type = (uint32_t*)pic->mb_type_buf->data + 2 * h->mb_stride + 1;
282  pic->qscale_table = pic->qscale_table_buf->data + 2 * h->mb_stride + 1;
283 
284  for (i = 0; i < 2; i++) {
287  if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
288  goto fail;
289 
290  pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
291  pic->ref_index[i] = pic->ref_index_buf[i]->data;
292  }
293 
294  return 0;
295 fail:
296  ff_h264_unref_picture(h, pic);
297  return (ret < 0) ? ret : AVERROR(ENOMEM);
298 }
299 
300 static inline int pic_is_unused(H264Context *h, H264Picture *pic)
301 {
302  if (!pic->f.buf[0])
303  return 1;
304  if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
305  return 1;
306  return 0;
307 }
308 
310 {
311  int i;
312 
313  for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
314  if (pic_is_unused(h, &h->DPB[i]))
315  break;
316  }
317  if (i == H264_MAX_PICTURE_COUNT)
318  return AVERROR_INVALIDDATA;
319 
320  if (h->DPB[i].needs_realloc) {
321  h->DPB[i].needs_realloc = 0;
322  ff_h264_unref_picture(h, &h->DPB[i]);
323  }
324 
325  return i;
326 }
327 
328 
330 {
331  int i, j, q, x;
332  const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
333 
334  for (i = 0; i < 6; i++) {
335  h->dequant8_coeff[i] = h->dequant8_buffer[i];
336  for (j = 0; j < i; j++)
337  if (!memcmp(h->pps.scaling_matrix8[j], h->pps.scaling_matrix8[i],
338  64 * sizeof(uint8_t))) {
339  h->dequant8_coeff[i] = h->dequant8_buffer[j];
340  break;
341  }
342  if (j < i)
343  continue;
344 
345  for (q = 0; q < max_qp + 1; q++) {
346  int shift = div6[q];
347  int idx = rem6[q];
348  for (x = 0; x < 64; x++)
349  h->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
350  ((uint32_t)dequant8_coeff_init[idx][dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
351  h->pps.scaling_matrix8[i][x]) << shift;
352  }
353  }
354 }
355 
357 {
358  int i, j, q, x;
359  const int max_qp = 51 + 6 * (h->sps.bit_depth_luma - 8);
360  for (i = 0; i < 6; i++) {
361  h->dequant4_coeff[i] = h->dequant4_buffer[i];
362  for (j = 0; j < i; j++)
363  if (!memcmp(h->pps.scaling_matrix4[j], h->pps.scaling_matrix4[i],
364  16 * sizeof(uint8_t))) {
365  h->dequant4_coeff[i] = h->dequant4_buffer[j];
366  break;
367  }
368  if (j < i)
369  continue;
370 
371  for (q = 0; q < max_qp + 1; q++) {
372  int shift = div6[q] + 2;
373  int idx = rem6[q];
374  for (x = 0; x < 16; x++)
375  h->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
376  ((uint32_t)dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
377  h->pps.scaling_matrix4[i][x]) << shift;
378  }
379  }
380 }
381 
383 {
384  int i, x;
386  if (h->pps.transform_8x8_mode)
388  if (h->sps.transform_bypass) {
389  for (i = 0; i < 6; i++)
390  for (x = 0; x < 16; x++)
391  h->dequant4_coeff[i][0][x] = 1 << 6;
393  for (i = 0; i < 6; i++)
394  for (x = 0; x < 64; x++)
395  h->dequant8_coeff[i][0][x] = 1 << 6;
396  }
397 }
398 
402 static void clone_tables(H264Context *dst, H264Context *src, int i)
403 {
404  dst->intra4x4_pred_mode = src->intra4x4_pred_mode + i * 8 * 2 * src->mb_stride;
405  dst->non_zero_count = src->non_zero_count;
406  dst->slice_table = src->slice_table;
407  dst->cbp_table = src->cbp_table;
408  dst->mb2b_xy = src->mb2b_xy;
409  dst->mb2br_xy = src->mb2br_xy;
411  dst->mvd_table[0] = src->mvd_table[0] + i * 8 * 2 * src->mb_stride;
412  dst->mvd_table[1] = src->mvd_table[1] + i * 8 * 2 * src->mb_stride;
413  dst->direct_table = src->direct_table;
414  dst->list_counts = src->list_counts;
415  dst->DPB = src->DPB;
416  dst->cur_pic_ptr = src->cur_pic_ptr;
417  dst->cur_pic = src->cur_pic;
418  dst->bipred_scratchpad = NULL;
419  dst->edge_emu_buffer = NULL;
421  src->sps.chroma_format_idc);
422 }
423 
424 #define IN_RANGE(a, b, size) (((a) >= (b)) && ((a) < ((b) + (size))))
425 #undef REBASE_PICTURE
426 #define REBASE_PICTURE(pic, new_ctx, old_ctx) \
427  ((pic && pic >= old_ctx->DPB && \
428  pic < old_ctx->DPB + H264_MAX_PICTURE_COUNT) ? \
429  &new_ctx->DPB[pic - old_ctx->DPB] : NULL)
430 
431 static void copy_picture_range(H264Picture **to, H264Picture **from, int count,
432  H264Context *new_base,
433  H264Context *old_base)
434 {
435  int i;
436 
437  for (i = 0; i < count; i++) {
438  assert((IN_RANGE(from[i], old_base, sizeof(*old_base)) ||
439  IN_RANGE(from[i], old_base->DPB,
440  sizeof(H264Picture) * H264_MAX_PICTURE_COUNT) ||
441  !from[i]));
442  to[i] = REBASE_PICTURE(from[i], new_base, old_base);
443  }
444 }
445 
446 static int copy_parameter_set(void **to, void **from, int count, int size)
447 {
448  int i;
449 
450  for (i = 0; i < count; i++) {
451  if (to[i] && !from[i]) {
452  av_freep(&to[i]);
453  } else if (from[i] && !to[i]) {
454  to[i] = av_malloc(size);
455  if (!to[i])
456  return AVERROR(ENOMEM);
457  }
458 
459  if (from[i])
460  memcpy(to[i], from[i], size);
461  }
462 
463  return 0;
464 }
465 
466 #define copy_fields(to, from, start_field, end_field) \
467  memcpy(&to->start_field, &from->start_field, \
468  (char *)&to->end_field - (char *)&to->start_field)
469 
470 static int h264_slice_header_init(H264Context *h, int reinit);
471 
473  const AVCodecContext *src)
474 {
475  H264Context *h = dst->priv_data, *h1 = src->priv_data;
476  int inited = h->context_initialized, err = 0;
477  int context_reinitialized = 0;
478  int i, ret;
479 
480  if (dst == src || !h1->context_initialized)
481  return 0;
482 
483  if (inited &&
484  (h->width != h1->width ||
485  h->height != h1->height ||
486  h->mb_width != h1->mb_width ||
487  h->mb_height != h1->mb_height ||
488  h->sps.bit_depth_luma != h1->sps.bit_depth_luma ||
489  h->sps.chroma_format_idc != h1->sps.chroma_format_idc ||
490  h->sps.colorspace != h1->sps.colorspace)) {
491 
492  /* set bits_per_raw_sample to the previous value. the check for changed
493  * bit depth in h264_set_parameter_from_sps() uses it and sets it to
494  * the current value */
496 
498 
499  h->width = h1->width;
500  h->height = h1->height;
501  h->mb_height = h1->mb_height;
502  h->mb_width = h1->mb_width;
503  h->mb_num = h1->mb_num;
504  h->mb_stride = h1->mb_stride;
505  h->b_stride = h1->b_stride;
506 
507  if ((err = h264_slice_header_init(h, 1)) < 0) {
508  av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed");
509  return err;
510  }
511  context_reinitialized = 1;
512 
513  /* update linesize on resize. The decoder doesn't
514  * necessarily call h264_frame_start in the new thread */
515  h->linesize = h1->linesize;
516  h->uvlinesize = h1->uvlinesize;
517 
518  /* copy block_offset since frame_start may not be called */
519  memcpy(h->block_offset, h1->block_offset, sizeof(h->block_offset));
520  }
521 
522  if (!inited) {
523  for (i = 0; i < MAX_SPS_COUNT; i++)
524  av_freep(h->sps_buffers + i);
525 
526  for (i = 0; i < MAX_PPS_COUNT; i++)
527  av_freep(h->pps_buffers + i);
528 
529  memcpy(h, h1, sizeof(*h1));
530  memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
531  memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
532  memset(&h->er, 0, sizeof(h->er));
533  memset(&h->mb, 0, sizeof(h->mb));
534  memset(&h->mb_luma_dc, 0, sizeof(h->mb_luma_dc));
535  memset(&h->mb_padding, 0, sizeof(h->mb_padding));
536  h->context_initialized = 0;
537 
538  memset(&h->cur_pic, 0, sizeof(h->cur_pic));
539  av_frame_unref(&h->cur_pic.f);
540  h->cur_pic.tf.f = &h->cur_pic.f;
541 
542  h->avctx = dst;
543  h->DPB = NULL;
544  h->qscale_table_pool = NULL;
545  h->mb_type_pool = NULL;
546  h->ref_index_pool = NULL;
547  h->motion_val_pool = NULL;
548 
549  ret = ff_h264_alloc_tables(h);
550  if (ret < 0) {
551  av_log(dst, AV_LOG_ERROR, "Could not allocate memory\n");
552  return ret;
553  }
554  ret = ff_h264_context_init(h);
555  if (ret < 0) {
556  av_log(dst, AV_LOG_ERROR, "context_init() failed.\n");
557  return ret;
558  }
559 
560  for (i = 0; i < 2; i++) {
561  h->rbsp_buffer[i] = NULL;
562  h->rbsp_buffer_size[i] = 0;
563  }
564  h->bipred_scratchpad = NULL;
565  h->edge_emu_buffer = NULL;
566 
567  h->thread_context[0] = h;
568 
569  h->context_initialized = 1;
570  }
571 
572  h->avctx->coded_height = h1->avctx->coded_height;
573  h->avctx->coded_width = h1->avctx->coded_width;
574  h->avctx->width = h1->avctx->width;
575  h->avctx->height = h1->avctx->height;
576  h->coded_picture_number = h1->coded_picture_number;
577  h->first_field = h1->first_field;
578  h->picture_structure = h1->picture_structure;
579  h->qscale = h1->qscale;
580  h->droppable = h1->droppable;
581  h->low_delay = h1->low_delay;
582 
583  for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) {
584  ff_h264_unref_picture(h, &h->DPB[i]);
585  if (h1->DPB[i].f.buf[0] &&
586  (ret = ff_h264_ref_picture(h, &h->DPB[i], &h1->DPB[i])) < 0)
587  return ret;
588  }
589 
590  h->cur_pic_ptr = REBASE_PICTURE(h1->cur_pic_ptr, h, h1);
592  if (h1->cur_pic.f.buf[0]) {
593  ret = ff_h264_ref_picture(h, &h->cur_pic, &h1->cur_pic);
594  if (ret < 0)
595  return ret;
596  }
597 
598  h->workaround_bugs = h1->workaround_bugs;
599  h->low_delay = h1->low_delay;
600  h->droppable = h1->droppable;
601 
602  /* frame_start may not be called for the next thread (if it's decoding
603  * a bottom field) so this has to be allocated here */
604  err = alloc_scratch_buffers(h, h1->linesize);
605  if (err < 0)
606  return err;
607 
608  // extradata/NAL handling
609  h->is_avc = h1->is_avc;
610 
611  // SPS/PPS
612  if ((ret = copy_parameter_set((void **)h->sps_buffers,
613  (void **)h1->sps_buffers,
614  MAX_SPS_COUNT, sizeof(SPS))) < 0)
615  return ret;
616  h->sps = h1->sps;
617  if ((ret = copy_parameter_set((void **)h->pps_buffers,
618  (void **)h1->pps_buffers,
619  MAX_PPS_COUNT, sizeof(PPS))) < 0)
620  return ret;
621  h->pps = h1->pps;
622 
623  // Dequantization matrices
624  // FIXME these are big - can they be only copied when PPS changes?
625  copy_fields(h, h1, dequant4_buffer, dequant4_coeff);
626 
627  for (i = 0; i < 6; i++)
628  h->dequant4_coeff[i] = h->dequant4_buffer[0] +
629  (h1->dequant4_coeff[i] - h1->dequant4_buffer[0]);
630 
631  for (i = 0; i < 6; i++)
632  h->dequant8_coeff[i] = h->dequant8_buffer[0] +
633  (h1->dequant8_coeff[i] - h1->dequant8_buffer[0]);
634 
635  h->dequant_coeff_pps = h1->dequant_coeff_pps;
636 
637  // POC timing
638  copy_fields(h, h1, poc_lsb, redundant_pic_count);
639 
640  // reference lists
641  copy_fields(h, h1, short_ref, cabac_init_idc);
642 
643  copy_picture_range(h->short_ref, h1->short_ref, 32, h, h1);
644  copy_picture_range(h->long_ref, h1->long_ref, 32, h, h1);
645  copy_picture_range(h->delayed_pic, h1->delayed_pic,
646  MAX_DELAYED_PIC_COUNT + 2, h, h1);
647 
648  h->last_slice_type = h1->last_slice_type;
649 
650  if (context_reinitialized)
652 
653  if (!h->cur_pic_ptr)
654  return 0;
655 
656  if (!h->droppable) {
658  h->prev_poc_msb = h->poc_msb;
659  h->prev_poc_lsb = h->poc_lsb;
660  }
662  h->prev_frame_num = h->frame_num;
664 
665  h->recovery_frame = h1->recovery_frame;
666  h->frame_recovered = h1->frame_recovered;
667 
668  return err;
669 }
670 
672 {
673  H264Picture *pic;
674  int i, ret;
675  const int pixel_shift = h->pixel_shift;
676 
678  h->cur_pic_ptr = NULL;
679 
680  i = find_unused_picture(h);
681  if (i < 0) {
682  av_log(h->avctx, AV_LOG_ERROR, "no frame buffer available\n");
683  return i;
684  }
685  pic = &h->DPB[i];
686 
687  pic->reference = h->droppable ? 0 : h->picture_structure;
690  /*
691  * Zero key_frame here; IDR markings per slice in frame or fields are ORed
692  * in later.
693  * See decode_nal_units().
694  */
695  pic->f.key_frame = 0;
696  pic->mmco_reset = 0;
697  pic->recovered = 0;
698 
699  if ((ret = alloc_picture(h, pic)) < 0)
700  return ret;
701 
702  h->cur_pic_ptr = pic;
704  if ((ret = ff_h264_ref_picture(h, &h->cur_pic, h->cur_pic_ptr)) < 0)
705  return ret;
706 
708  ff_er_frame_start(&h->er);
709 
710  assert(h->linesize && h->uvlinesize);
711 
712  for (i = 0; i < 16; i++) {
713  h->block_offset[i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
714  h->block_offset[48 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->linesize * ((scan8[i] - scan8[0]) >> 3);
715  }
716  for (i = 0; i < 16; i++) {
717  h->block_offset[16 + i] =
718  h->block_offset[32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 4 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
719  h->block_offset[48 + 16 + i] =
720  h->block_offset[48 + 32 + i] = (4 * ((scan8[i] - scan8[0]) & 7) << pixel_shift) + 8 * h->uvlinesize * ((scan8[i] - scan8[0]) >> 3);
721  }
722 
723  /* can't be in alloc_tables because linesize isn't known there.
724  * FIXME: redo bipred weight to not require extra buffer? */
725  for (i = 0; i < h->slice_context_count; i++)
726  if (h->thread_context[i]) {
728  if (ret < 0)
729  return ret;
730  }
731 
732  /* Some macroblocks can be accessed before they're available in case
733  * of lost slices, MBAFF or threading. */
734  memset(h->slice_table, -1,
735  (h->mb_height * h->mb_stride - 1) * sizeof(*h->slice_table));
736 
737  /* We mark the current picture as non-reference after allocating it, so
738  * that if we break out due to an error it can be released automatically
739  * in the next ff_mpv_frame_start().
740  */
741  h->cur_pic_ptr->reference = 0;
742 
743  h->cur_pic_ptr->field_poc[0] = h->cur_pic_ptr->field_poc[1] = INT_MAX;
744 
745  h->next_output_pic = NULL;
746 
747  assert(h->cur_pic_ptr->long_ref == 0);
748 
749  return 0;
750 }
751 
753  uint8_t *src_cb, uint8_t *src_cr,
754  int linesize, int uvlinesize,
755  int simple)
756 {
757  uint8_t *top_border;
758  int top_idx = 1;
759  const int pixel_shift = h->pixel_shift;
760  int chroma444 = CHROMA444(h);
761  int chroma422 = CHROMA422(h);
762 
763  src_y -= linesize;
764  src_cb -= uvlinesize;
765  src_cr -= uvlinesize;
766 
767  if (!simple && FRAME_MBAFF(h)) {
768  if (h->mb_y & 1) {
769  if (!MB_MBAFF(h)) {
770  top_border = h->top_borders[0][h->mb_x];
771  AV_COPY128(top_border, src_y + 15 * linesize);
772  if (pixel_shift)
773  AV_COPY128(top_border + 16, src_y + 15 * linesize + 16);
774  if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
775  if (chroma444) {
776  if (pixel_shift) {
777  AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
778  AV_COPY128(top_border + 48, src_cb + 15 * uvlinesize + 16);
779  AV_COPY128(top_border + 64, src_cr + 15 * uvlinesize);
780  AV_COPY128(top_border + 80, src_cr + 15 * uvlinesize + 16);
781  } else {
782  AV_COPY128(top_border + 16, src_cb + 15 * uvlinesize);
783  AV_COPY128(top_border + 32, src_cr + 15 * uvlinesize);
784  }
785  } else if (chroma422) {
786  if (pixel_shift) {
787  AV_COPY128(top_border + 32, src_cb + 15 * uvlinesize);
788  AV_COPY128(top_border + 48, src_cr + 15 * uvlinesize);
789  } else {
790  AV_COPY64(top_border + 16, src_cb + 15 * uvlinesize);
791  AV_COPY64(top_border + 24, src_cr + 15 * uvlinesize);
792  }
793  } else {
794  if (pixel_shift) {
795  AV_COPY128(top_border + 32, src_cb + 7 * uvlinesize);
796  AV_COPY128(top_border + 48, src_cr + 7 * uvlinesize);
797  } else {
798  AV_COPY64(top_border + 16, src_cb + 7 * uvlinesize);
799  AV_COPY64(top_border + 24, src_cr + 7 * uvlinesize);
800  }
801  }
802  }
803  }
804  } else if (MB_MBAFF(h)) {
805  top_idx = 0;
806  } else
807  return;
808  }
809 
810  top_border = h->top_borders[top_idx][h->mb_x];
811  /* There are two lines saved, the line above the top macroblock
812  * of a pair, and the line above the bottom macroblock. */
813  AV_COPY128(top_border, src_y + 16 * linesize);
814  if (pixel_shift)
815  AV_COPY128(top_border + 16, src_y + 16 * linesize + 16);
816 
817  if (simple || !CONFIG_GRAY || !(h->flags & CODEC_FLAG_GRAY)) {
818  if (chroma444) {
819  if (pixel_shift) {
820  AV_COPY128(top_border + 32, src_cb + 16 * linesize);
821  AV_COPY128(top_border + 48, src_cb + 16 * linesize + 16);
822  AV_COPY128(top_border + 64, src_cr + 16 * linesize);
823  AV_COPY128(top_border + 80, src_cr + 16 * linesize + 16);
824  } else {
825  AV_COPY128(top_border + 16, src_cb + 16 * linesize);
826  AV_COPY128(top_border + 32, src_cr + 16 * linesize);
827  }
828  } else if (chroma422) {
829  if (pixel_shift) {
830  AV_COPY128(top_border + 32, src_cb + 16 * uvlinesize);
831  AV_COPY128(top_border + 48, src_cr + 16 * uvlinesize);
832  } else {
833  AV_COPY64(top_border + 16, src_cb + 16 * uvlinesize);
834  AV_COPY64(top_border + 24, src_cr + 16 * uvlinesize);
835  }
836  } else {
837  if (pixel_shift) {
838  AV_COPY128(top_border + 32, src_cb + 8 * uvlinesize);
839  AV_COPY128(top_border + 48, src_cr + 8 * uvlinesize);
840  } else {
841  AV_COPY64(top_border + 16, src_cb + 8 * uvlinesize);
842  AV_COPY64(top_border + 24, src_cr + 8 * uvlinesize);
843  }
844  }
845  }
846 }
847 
853 static void implicit_weight_table(H264Context *h, int field)
854 {
855  int ref0, ref1, i, cur_poc, ref_start, ref_count0, ref_count1;
856 
857  for (i = 0; i < 2; i++) {
858  h->luma_weight_flag[i] = 0;
859  h->chroma_weight_flag[i] = 0;
860  }
861 
862  if (field < 0) {
863  if (h->picture_structure == PICT_FRAME) {
864  cur_poc = h->cur_pic_ptr->poc;
865  } else {
866  cur_poc = h->cur_pic_ptr->field_poc[h->picture_structure - 1];
867  }
868  if (h->ref_count[0] == 1 && h->ref_count[1] == 1 && !FRAME_MBAFF(h) &&
869  h->ref_list[0][0].poc + h->ref_list[1][0].poc == 2 * cur_poc) {
870  h->use_weight = 0;
871  h->use_weight_chroma = 0;
872  return;
873  }
874  ref_start = 0;
875  ref_count0 = h->ref_count[0];
876  ref_count1 = h->ref_count[1];
877  } else {
878  cur_poc = h->cur_pic_ptr->field_poc[field];
879  ref_start = 16;
880  ref_count0 = 16 + 2 * h->ref_count[0];
881  ref_count1 = 16 + 2 * h->ref_count[1];
882  }
883 
884  h->use_weight = 2;
885  h->use_weight_chroma = 2;
886  h->luma_log2_weight_denom = 5;
888 
889  for (ref0 = ref_start; ref0 < ref_count0; ref0++) {
890  int poc0 = h->ref_list[0][ref0].poc;
891  for (ref1 = ref_start; ref1 < ref_count1; ref1++) {
892  int w = 32;
893  if (!h->ref_list[0][ref0].long_ref && !h->ref_list[1][ref1].long_ref) {
894  int poc1 = h->ref_list[1][ref1].poc;
895  int td = av_clip(poc1 - poc0, -128, 127);
896  if (td) {
897  int tb = av_clip(cur_poc - poc0, -128, 127);
898  int tx = (16384 + (FFABS(td) >> 1)) / td;
899  int dist_scale_factor = (tb * tx + 32) >> 8;
900  if (dist_scale_factor >= -64 && dist_scale_factor <= 128)
901  w = 64 - dist_scale_factor;
902  }
903  }
904  if (field < 0) {
905  h->implicit_weight[ref0][ref1][0] =
906  h->implicit_weight[ref0][ref1][1] = w;
907  } else {
908  h->implicit_weight[ref0][ref1][field] = w;
909  }
910  }
911  }
912 }
913 
918 {
919  int i;
920  for (i = 0; i < 16; i++) {
921 #define TRANSPOSE(x) (x >> 2) | ((x << 2) & 0xF)
922  h->zigzag_scan[i] = TRANSPOSE(zigzag_scan[i]);
923  h->field_scan[i] = TRANSPOSE(field_scan[i]);
924 #undef TRANSPOSE
925  }
926  for (i = 0; i < 64; i++) {
927 #define TRANSPOSE(x) (x >> 3) | ((x & 7) << 3)
932 #undef TRANSPOSE
933  }
934  if (h->sps.transform_bypass) { // FIXME same ugly
941  } else {
942  h->zigzag_scan_q0 = h->zigzag_scan;
945  h->field_scan_q0 = h->field_scan;
948  }
949 }
950 
954 static int clone_slice(H264Context *dst, H264Context *src)
955 {
956  memcpy(dst->block_offset, src->block_offset, sizeof(dst->block_offset));
957  dst->cur_pic_ptr = src->cur_pic_ptr;
958  dst->cur_pic = src->cur_pic;
959  dst->linesize = src->linesize;
960  dst->uvlinesize = src->uvlinesize;
961  dst->first_field = src->first_field;
962 
963  dst->prev_poc_msb = src->prev_poc_msb;
964  dst->prev_poc_lsb = src->prev_poc_lsb;
966  dst->prev_frame_num = src->prev_frame_num;
967  dst->short_ref_count = src->short_ref_count;
968 
969  memcpy(dst->short_ref, src->short_ref, sizeof(dst->short_ref));
970  memcpy(dst->long_ref, src->long_ref, sizeof(dst->long_ref));
971  memcpy(dst->default_ref_list, src->default_ref_list, sizeof(dst->default_ref_list));
972 
973  memcpy(dst->dequant4_coeff, src->dequant4_coeff, sizeof(src->dequant4_coeff));
974  memcpy(dst->dequant8_coeff, src->dequant8_coeff, sizeof(src->dequant8_coeff));
975 
976  return 0;
977 }
978 
980 {
981  enum AVPixelFormat pix_fmts[2];
982  const enum AVPixelFormat *choices = pix_fmts;
983 
984  pix_fmts[1] = AV_PIX_FMT_NONE;
985 
986  switch (h->sps.bit_depth_luma) {
987  case 9:
988  if (CHROMA444(h)) {
989  if (h->avctx->colorspace == AVCOL_SPC_RGB) {
990  pix_fmts[0] = AV_PIX_FMT_GBRP9;
991  } else
992  pix_fmts[0] = AV_PIX_FMT_YUV444P9;
993  } else if (CHROMA422(h))
994  pix_fmts[0] = AV_PIX_FMT_YUV422P9;
995  else
996  pix_fmts[0] = AV_PIX_FMT_YUV420P9;
997  break;
998  case 10:
999  if (CHROMA444(h)) {
1000  if (h->avctx->colorspace == AVCOL_SPC_RGB) {
1001  pix_fmts[0] = AV_PIX_FMT_GBRP10;
1002  } else
1003  pix_fmts[0] = AV_PIX_FMT_YUV444P10;
1004  } else if (CHROMA422(h))
1005  pix_fmts[0] = AV_PIX_FMT_YUV422P10;
1006  else
1007  pix_fmts[0] = AV_PIX_FMT_YUV420P10;
1008  break;
1009  case 8:
1010  if (CHROMA444(h)) {
1011  if (h->avctx->colorspace == AVCOL_SPC_RGB)
1012  pix_fmts[0] = AV_PIX_FMT_GBRP;
1013  else if (h->avctx->color_range == AVCOL_RANGE_JPEG)
1014  pix_fmts[0] = AV_PIX_FMT_YUVJ444P;
1015  else
1016  pix_fmts[0] = AV_PIX_FMT_YUV444P;
1017  } else if (CHROMA422(h)) {
1018  if (h->avctx->color_range == AVCOL_RANGE_JPEG)
1019  pix_fmts[0] = AV_PIX_FMT_YUVJ422P;
1020  else
1021  pix_fmts[0] = AV_PIX_FMT_YUV422P;
1022  } else {
1023  if (h->avctx->codec->pix_fmts)
1024  choices = h->avctx->codec->pix_fmts;
1025  else if (h->avctx->color_range == AVCOL_RANGE_JPEG)
1027  else
1028  choices = h264_hwaccel_pixfmt_list_420;
1029  }
1030  break;
1031  default:
1033  "Unsupported bit depth %d\n", h->sps.bit_depth_luma);
1034  return AVERROR_INVALIDDATA;
1035  }
1036 
1037  return ff_get_format(h->avctx, choices);
1038 }
1039 
1040 /* export coded and cropped frame dimensions to AVCodecContext */
1042 {
1043  int width = h->width - (h->sps.crop_right + h->sps.crop_left);
1044  int height = h->height - (h->sps.crop_top + h->sps.crop_bottom);
1045 
1046  /* handle container cropping */
1047  if (!h->sps.crop &&
1048  FFALIGN(h->avctx->width, 16) == h->width &&
1049  FFALIGN(h->avctx->height, 16) == h->height) {
1050  width = h->avctx->width;
1051  height = h->avctx->height;
1052  }
1053 
1054  if (width <= 0 || height <= 0) {
1055  av_log(h->avctx, AV_LOG_ERROR, "Invalid cropped dimensions: %dx%d.\n",
1056  width, height);
1058  return AVERROR_INVALIDDATA;
1059 
1060  av_log(h->avctx, AV_LOG_WARNING, "Ignoring cropping information.\n");
1061  h->sps.crop_bottom =
1062  h->sps.crop_top =
1063  h->sps.crop_right =
1064  h->sps.crop_left =
1065  h->sps.crop = 0;
1066 
1067  width = h->width;
1068  height = h->height;
1069  }
1070 
1071  h->avctx->coded_width = h->width;
1072  h->avctx->coded_height = h->height;
1073  h->avctx->width = width;
1074  h->avctx->height = height;
1075 
1076  return 0;
1077 }
1078 
1079 static int h264_slice_header_init(H264Context *h, int reinit)
1080 {
1081  int nb_slices = (HAVE_THREADS &&
1083  h->avctx->thread_count : 1;
1084  int i, ret;
1085 
1086  ff_set_sar(h->avctx, h->sps.sar);
1088  &h->chroma_x_shift, &h->chroma_y_shift);
1089 
1090  if (h->sps.timing_info_present_flag) {
1091  int64_t den = h->sps.time_scale;
1092  if (h->x264_build < 44U)
1093  den *= 2;
1095  h->sps.num_units_in_tick, den, 1 << 30);
1096  }
1097 
1098  if (reinit)
1099  ff_h264_free_tables(h, 0);
1100  h->first_field = 0;
1101  h->prev_interlaced_frame = 1;
1102 
1103  init_scan_tables(h);
1104  ret = ff_h264_alloc_tables(h);
1105  if (ret < 0) {
1106  av_log(h->avctx, AV_LOG_ERROR, "Could not allocate memory\n");
1107  return ret;
1108  }
1109 
1110  if (nb_slices > H264_MAX_THREADS || (nb_slices > h->mb_height && h->mb_height)) {
1111  int max_slices;
1112  if (h->mb_height)
1113  max_slices = FFMIN(H264_MAX_THREADS, h->mb_height);
1114  else
1115  max_slices = H264_MAX_THREADS;
1116  av_log(h->avctx, AV_LOG_WARNING, "too many threads/slices %d,"
1117  " reducing to %d\n", nb_slices, max_slices);
1118  nb_slices = max_slices;
1119  }
1120  h->slice_context_count = nb_slices;
1121  h->max_contexts = FFMIN(h->max_contexts, nb_slices);
1122 
1124  ret = ff_h264_context_init(h);
1125  if (ret < 0) {
1126  av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1127  return ret;
1128  }
1129  } else {
1130  for (i = 1; i < h->slice_context_count; i++) {
1131  H264Context *c;
1132  c = h->thread_context[i] = av_mallocz(sizeof(H264Context));
1133  if (!c)
1134  return AVERROR(ENOMEM);
1135  c->avctx = h->avctx;
1136  c->mecc = h->mecc;
1137  c->vdsp = h->vdsp;
1138  c->h264dsp = h->h264dsp;
1139  c->h264qpel = h->h264qpel;
1140  c->h264chroma = h->h264chroma;
1141  c->sps = h->sps;
1142  c->pps = h->pps;
1143  c->pixel_shift = h->pixel_shift;
1144  c->width = h->width;
1145  c->height = h->height;
1146  c->linesize = h->linesize;
1147  c->uvlinesize = h->uvlinesize;
1150  c->qscale = h->qscale;
1151  c->droppable = h->droppable;
1153  c->low_delay = h->low_delay;
1154  c->mb_width = h->mb_width;
1155  c->mb_height = h->mb_height;
1156  c->mb_stride = h->mb_stride;
1157  c->mb_num = h->mb_num;
1158  c->flags = h->flags;
1160  c->pict_type = h->pict_type;
1161 
1162  init_scan_tables(c);
1163  clone_tables(c, h, i);
1164  c->context_initialized = 1;
1165  }
1166 
1167  for (i = 0; i < h->slice_context_count; i++)
1168  if ((ret = ff_h264_context_init(h->thread_context[i])) < 0) {
1169  av_log(h->avctx, AV_LOG_ERROR, "context_init() failed.\n");
1170  return ret;
1171  }
1172  }
1173 
1174  h->context_initialized = 1;
1175 
1176  return 0;
1177 }
1178 
1190 {
1191  unsigned int first_mb_in_slice;
1192  unsigned int pps_id;
1193  int ret;
1194  unsigned int slice_type, tmp, i, j;
1195  int default_ref_list_done = 0;
1196  int last_pic_structure, last_pic_droppable;
1197  int needs_reinit = 0;
1198  int field_pic_flag, bottom_field_flag;
1199 
1202 
1203  first_mb_in_slice = get_ue_golomb(&h->gb);
1204 
1205  if (first_mb_in_slice == 0) { // FIXME better field boundary detection
1206  if (h0->current_slice && h->cur_pic_ptr && FIELD_PICTURE(h)) {
1207  ff_h264_field_end(h, 1);
1208  }
1209 
1210  h0->current_slice = 0;
1211  if (!h0->first_field) {
1212  if (h->cur_pic_ptr && !h->droppable) {
1215  }
1216  h->cur_pic_ptr = NULL;
1217  }
1218  }
1219 
1220  if (!h0->current_slice && h != h0) {
1222  "A new picture can only be started in the first slice thread\n");
1223  return AVERROR(ENOSYS);
1224  }
1225 
1226  slice_type = get_ue_golomb_31(&h->gb);
1227  if (slice_type > 9) {
1229  "slice type %d too large at %d %d\n",
1230  slice_type, h->mb_x, h->mb_y);
1231  return AVERROR_INVALIDDATA;
1232  }
1233  if (slice_type > 4) {
1234  slice_type -= 5;
1235  h->slice_type_fixed = 1;
1236  } else
1237  h->slice_type_fixed = 0;
1238 
1239  slice_type = golomb_to_pict_type[slice_type];
1240  if (slice_type == AV_PICTURE_TYPE_I ||
1241  (h0->current_slice != 0 && slice_type == h0->last_slice_type)) {
1242  default_ref_list_done = 1;
1243  }
1244  h->slice_type = slice_type;
1245  h->slice_type_nos = slice_type & 3;
1246 
1247  if (h->nal_unit_type == NAL_IDR_SLICE &&
1249  av_log(h->avctx, AV_LOG_ERROR, "A non-intra slice in an IDR NAL unit.\n");
1250  return AVERROR_INVALIDDATA;
1251  }
1252 
1253  // to make a few old functions happy, it's wrong though
1254  h->pict_type = h->slice_type;
1255 
1256  pps_id = get_ue_golomb(&h->gb);
1257  if (pps_id >= MAX_PPS_COUNT) {
1258  av_log(h->avctx, AV_LOG_ERROR, "pps_id %u out of range\n", pps_id);
1259  return AVERROR_INVALIDDATA;
1260  }
1261  if (!h0->pps_buffers[pps_id]) {
1263  "non-existing PPS %u referenced\n",
1264  pps_id);
1265  return AVERROR_INVALIDDATA;
1266  }
1267  h->pps = *h0->pps_buffers[pps_id];
1268 
1269  if (!h0->sps_buffers[h->pps.sps_id]) {
1271  "non-existing SPS %u referenced\n",
1272  h->pps.sps_id);
1273  return AVERROR_INVALIDDATA;
1274  }
1275 
1276  if (h->pps.sps_id != h->sps.sps_id ||
1277  h0->sps_buffers[h->pps.sps_id]->new) {
1278  h0->sps_buffers[h->pps.sps_id]->new = 0;
1279 
1280  h->sps = *h0->sps_buffers[h->pps.sps_id];
1281 
1282  if (h->bit_depth_luma != h->sps.bit_depth_luma ||
1286  needs_reinit = 1;
1287  }
1288  if ((ret = ff_h264_set_parameter_from_sps(h)) < 0)
1289  return ret;
1290  }
1291 
1292  h->avctx->profile = ff_h264_get_profile(&h->sps);
1293  h->avctx->level = h->sps.level_idc;
1294  h->avctx->refs = h->sps.ref_frame_count;
1295 
1296  if (h->mb_width != h->sps.mb_width ||
1297  h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag))
1298  needs_reinit = 1;
1299 
1300  h->mb_width = h->sps.mb_width;
1301  h->mb_height = h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag);
1302  h->mb_num = h->mb_width * h->mb_height;
1303  h->mb_stride = h->mb_width + 1;
1304 
1305  h->b_stride = h->mb_width * 4;
1306 
1307  h->chroma_y_shift = h->sps.chroma_format_idc <= 1; // 400 uses yuv420p
1308 
1309  h->width = 16 * h->mb_width;
1310  h->height = 16 * h->mb_height;
1311 
1312  ret = init_dimensions(h);
1313  if (ret < 0)
1314  return ret;
1315 
1318  : AVCOL_RANGE_MPEG;
1320  if (h->avctx->colorspace != h->sps.colorspace)
1321  needs_reinit = 1;
1323  h->avctx->color_trc = h->sps.color_trc;
1324  h->avctx->colorspace = h->sps.colorspace;
1325  }
1326  }
1327 
1328  if (h->context_initialized && needs_reinit) {
1329  h->context_initialized = 0;
1330  if (h != h0) {
1332  "changing width %d -> %d / height %d -> %d on "
1333  "slice %d\n",
1334  h->width, h->avctx->coded_width,
1335  h->height, h->avctx->coded_height,
1336  h0->current_slice + 1);
1337  return AVERROR_INVALIDDATA;
1338  }
1339 
1341 
1342  if ((ret = get_pixel_format(h)) < 0)
1343  return ret;
1344  h->avctx->pix_fmt = ret;
1345 
1346  av_log(h->avctx, AV_LOG_INFO, "Reinit context to %dx%d, "
1347  "pix_fmt: %d\n", h->width, h->height, h->avctx->pix_fmt);
1348 
1349  if ((ret = h264_slice_header_init(h, 1)) < 0) {
1351  "h264_slice_header_init() failed\n");
1352  return ret;
1353  }
1354  }
1355  if (!h->context_initialized) {
1356  if (h != h0) {
1358  "Cannot (re-)initialize context during parallel decoding.\n");
1359  return AVERROR_PATCHWELCOME;
1360  }
1361 
1362  if ((ret = get_pixel_format(h)) < 0)
1363  return ret;
1364  h->avctx->pix_fmt = ret;
1365 
1366  if ((ret = h264_slice_header_init(h, 0)) < 0) {
1368  "h264_slice_header_init() failed\n");
1369  return ret;
1370  }
1371  }
1372 
1373  if (h == h0 && h->dequant_coeff_pps != pps_id) {
1374  h->dequant_coeff_pps = pps_id;
1376  }
1377 
1378  h->frame_num = get_bits(&h->gb, h->sps.log2_max_frame_num);
1379 
1380  h->mb_mbaff = 0;
1381  h->mb_aff_frame = 0;
1382  last_pic_structure = h0->picture_structure;
1383  last_pic_droppable = h0->droppable;
1384  h->droppable = h->nal_ref_idc == 0;
1385  if (h->sps.frame_mbs_only_flag) {
1387  } else {
1388  field_pic_flag = get_bits1(&h->gb);
1389  if (field_pic_flag) {
1390  bottom_field_flag = get_bits1(&h->gb);
1391  h->picture_structure = PICT_TOP_FIELD + bottom_field_flag;
1392  } else {
1394  h->mb_aff_frame = h->sps.mb_aff;
1395  }
1396  }
1398 
1399  if (h0->current_slice != 0) {
1400  if (last_pic_structure != h->picture_structure ||
1401  last_pic_droppable != h->droppable) {
1403  "Changing field mode (%d -> %d) between slices is not allowed\n",
1404  last_pic_structure, h->picture_structure);
1405  h->picture_structure = last_pic_structure;
1406  h->droppable = last_pic_droppable;
1407  return AVERROR_INVALIDDATA;
1408  } else if (!h0->cur_pic_ptr) {
1410  "unset cur_pic_ptr on slice %d\n",
1411  h0->current_slice + 1);
1412  return AVERROR_INVALIDDATA;
1413  }
1414  } else {
1415  /* Shorten frame num gaps so we don't have to allocate reference
1416  * frames just to throw them away */
1417  if (h->frame_num != h->prev_frame_num) {
1418  int unwrap_prev_frame_num = h->prev_frame_num;
1419  int max_frame_num = 1 << h->sps.log2_max_frame_num;
1420 
1421  if (unwrap_prev_frame_num > h->frame_num)
1422  unwrap_prev_frame_num -= max_frame_num;
1423 
1424  if ((h->frame_num - unwrap_prev_frame_num) > h->sps.ref_frame_count) {
1425  unwrap_prev_frame_num = (h->frame_num - h->sps.ref_frame_count) - 1;
1426  if (unwrap_prev_frame_num < 0)
1427  unwrap_prev_frame_num += max_frame_num;
1428 
1429  h->prev_frame_num = unwrap_prev_frame_num;
1430  }
1431  }
1432 
1433  /* See if we have a decoded first field looking for a pair...
1434  * Here, we're using that to see if we should mark previously
1435  * decode frames as "finished".
1436  * We have to do that before the "dummy" in-between frame allocation,
1437  * since that can modify s->current_picture_ptr. */
1438  if (h0->first_field) {
1439  assert(h0->cur_pic_ptr);
1440  assert(h0->cur_pic_ptr->f.buf[0]);
1441  assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1442 
1443  /* figure out if we have a complementary field pair */
1444  if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1445  /* Previous field is unmatched. Don't display it, but let it
1446  * remain for reference if marked as such. */
1447  if (!last_pic_droppable && last_pic_structure != PICT_FRAME) {
1448  ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1449  last_pic_structure == PICT_TOP_FIELD);
1450  }
1451  } else {
1452  if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1453  /* This and previous field were reference, but had
1454  * different frame_nums. Consider this field first in
1455  * pair. Throw away previous field except for reference
1456  * purposes. */
1457  if (!last_pic_droppable && last_pic_structure != PICT_FRAME) {
1458  ff_thread_report_progress(&h0->cur_pic_ptr->tf, INT_MAX,
1459  last_pic_structure == PICT_TOP_FIELD);
1460  }
1461  } else {
1462  /* Second field in complementary pair */
1463  if (!((last_pic_structure == PICT_TOP_FIELD &&
1465  (last_pic_structure == PICT_BOTTOM_FIELD &&
1468  "Invalid field mode combination %d/%d\n",
1469  last_pic_structure, h->picture_structure);
1470  h->picture_structure = last_pic_structure;
1471  h->droppable = last_pic_droppable;
1472  return AVERROR_INVALIDDATA;
1473  } else if (last_pic_droppable != h->droppable) {
1475  "Found reference and non-reference fields in the same frame, which");
1476  h->picture_structure = last_pic_structure;
1477  h->droppable = last_pic_droppable;
1478  return AVERROR_PATCHWELCOME;
1479  }
1480  }
1481  }
1482  }
1483 
1484  while (h->frame_num != h->prev_frame_num &&
1485  h->frame_num != (h->prev_frame_num + 1) % (1 << h->sps.log2_max_frame_num)) {
1486  H264Picture *prev = h->short_ref_count ? h->short_ref[0] : NULL;
1487  av_log(h->avctx, AV_LOG_DEBUG, "Frame num gap %d %d\n",
1488  h->frame_num, h->prev_frame_num);
1489  ret = h264_frame_start(h);
1490  if (ret < 0) {
1491  h0->first_field = 0;
1492  return ret;
1493  }
1494 
1495  h->prev_frame_num++;
1496  h->prev_frame_num %= 1 << h->sps.log2_max_frame_num;
1498  ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 0);
1499  ff_thread_report_progress(&h->cur_pic_ptr->tf, INT_MAX, 1);
1501  if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1502  return ret;
1504  if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1505  return ret;
1506  /* Error concealment: If a ref is missing, copy the previous ref
1507  * in its place.
1508  * FIXME: Avoiding a memcpy would be nice, but ref handling makes
1509  * many assumptions about there being no actual duplicates.
1510  * FIXME: This does not copy padding for out-of-frame motion
1511  * vectors. Given we are concealing a lost frame, this probably
1512  * is not noticeable by comparison, but it should be fixed. */
1513  if (h->short_ref_count) {
1514  if (prev &&
1515  h->short_ref[0]->f.width == prev->f.width &&
1516  h->short_ref[0]->f.height == prev->f.height &&
1517  h->short_ref[0]->f.format == prev->f.format) {
1518  ff_thread_await_progress(&prev->tf, INT_MAX, 0);
1519  if (prev->field_picture)
1520  ff_thread_await_progress(&prev->tf, INT_MAX, 1);
1521  av_image_copy(h->short_ref[0]->f.data,
1522  h->short_ref[0]->f.linesize,
1523  (const uint8_t **)prev->f.data,
1524  prev->f.linesize,
1525  prev->f.format,
1526  h->mb_width * 16,
1527  h->mb_height * 16);
1528  h->short_ref[0]->poc = prev->poc + 2;
1529  }
1530  h->short_ref[0]->frame_num = h->prev_frame_num;
1531  }
1532  }
1533 
1534  /* See if we have a decoded first field looking for a pair...
1535  * We're using that to see whether to continue decoding in that
1536  * frame, or to allocate a new one. */
1537  if (h0->first_field) {
1538  assert(h0->cur_pic_ptr);
1539  assert(h0->cur_pic_ptr->f.buf[0]);
1540  assert(h0->cur_pic_ptr->reference != DELAYED_PIC_REF);
1541 
1542  /* figure out if we have a complementary field pair */
1543  if (!FIELD_PICTURE(h) || h->picture_structure == last_pic_structure) {
1544  /* Previous field is unmatched. Don't display it, but let it
1545  * remain for reference if marked as such. */
1546  h0->cur_pic_ptr = NULL;
1547  h0->first_field = FIELD_PICTURE(h);
1548  } else {
1549  if (h0->cur_pic_ptr->frame_num != h->frame_num) {
1550  /* This and the previous field had different frame_nums.
1551  * Consider this field first in pair. Throw away previous
1552  * one except for reference purposes. */
1553  h0->first_field = 1;
1554  h0->cur_pic_ptr = NULL;
1555  } else {
1556  /* Second field in complementary pair */
1557  h0->first_field = 0;
1558  }
1559  }
1560  } else {
1561  /* Frame or first field in a potentially complementary pair */
1562  h0->first_field = FIELD_PICTURE(h);
1563  }
1564 
1565  if (!FIELD_PICTURE(h) || h0->first_field) {
1566  if (h264_frame_start(h) < 0) {
1567  h0->first_field = 0;
1568  return AVERROR_INVALIDDATA;
1569  }
1570  } else {
1572  }
1573  }
1574  if (h != h0 && (ret = clone_slice(h, h0)) < 0)
1575  return ret;
1576 
1577  h->cur_pic_ptr->frame_num = h->frame_num; // FIXME frame_num cleanup
1578 
1579  assert(h->mb_num == h->mb_width * h->mb_height);
1580  if (first_mb_in_slice << FIELD_OR_MBAFF_PICTURE(h) >= h->mb_num ||
1581  first_mb_in_slice >= h->mb_num) {
1582  av_log(h->avctx, AV_LOG_ERROR, "first_mb_in_slice overflow\n");
1583  return AVERROR_INVALIDDATA;
1584  }
1585  h->resync_mb_x = h->mb_x = first_mb_in_slice % h->mb_width;
1586  h->resync_mb_y = h->mb_y = (first_mb_in_slice / h->mb_width) <<
1589  h->resync_mb_y = h->mb_y = h->mb_y + 1;
1590  assert(h->mb_y < h->mb_height);
1591 
1592  if (h->picture_structure == PICT_FRAME) {
1593  h->curr_pic_num = h->frame_num;
1594  h->max_pic_num = 1 << h->sps.log2_max_frame_num;
1595  } else {
1596  h->curr_pic_num = 2 * h->frame_num + 1;
1597  h->max_pic_num = 1 << (h->sps.log2_max_frame_num + 1);
1598  }
1599 
1600  if (h->nal_unit_type == NAL_IDR_SLICE)
1601  get_ue_golomb(&h->gb); /* idr_pic_id */
1602 
1603  if (h->sps.poc_type == 0) {
1604  h->poc_lsb = get_bits(&h->gb, h->sps.log2_max_poc_lsb);
1605 
1606  if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1607  h->delta_poc_bottom = get_se_golomb(&h->gb);
1608  }
1609 
1610  if (h->sps.poc_type == 1 && !h->sps.delta_pic_order_always_zero_flag) {
1611  h->delta_poc[0] = get_se_golomb(&h->gb);
1612 
1613  if (h->pps.pic_order_present == 1 && h->picture_structure == PICT_FRAME)
1614  h->delta_poc[1] = get_se_golomb(&h->gb);
1615  }
1616 
1618 
1621 
1622  ret = ff_set_ref_count(h);
1623  if (ret < 0)
1624  return ret;
1625  else if (ret == 1)
1626  default_ref_list_done = 0;
1627 
1628  if (!default_ref_list_done)
1630 
1631  if (h->slice_type_nos != AV_PICTURE_TYPE_I) {
1633  if (ret < 0) {
1634  h->ref_count[1] = h->ref_count[0] = 0;
1635  return ret;
1636  }
1637  }
1638 
1639  if ((h->pps.weighted_pred && h->slice_type_nos == AV_PICTURE_TYPE_P) ||
1640  (h->pps.weighted_bipred_idc == 1 &&
1643  else if (h->pps.weighted_bipred_idc == 2 &&
1645  implicit_weight_table(h, -1);
1646  } else {
1647  h->use_weight = 0;
1648  for (i = 0; i < 2; i++) {
1649  h->luma_weight_flag[i] = 0;
1650  h->chroma_weight_flag[i] = 0;
1651  }
1652  }
1653 
1654  // If frame-mt is enabled, only update mmco tables for the first slice
1655  // in a field. Subsequent slices can temporarily clobber h->mmco_index
1656  // or h->mmco, which will cause ref list mix-ups and decoding errors
1657  // further down the line. This may break decoding if the first slice is
1658  // corrupt, thus we only do this if frame-mt is enabled.
1659  if (h->nal_ref_idc) {
1660  ret = ff_h264_decode_ref_pic_marking(h0, &h->gb,
1662  h0->current_slice == 0);
1663  if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE))
1664  return AVERROR_INVALIDDATA;
1665  }
1666 
1667  if (FRAME_MBAFF(h)) {
1669 
1671  implicit_weight_table(h, 0);
1672  implicit_weight_table(h, 1);
1673  }
1674  }
1675 
1679 
1680  if (h->slice_type_nos != AV_PICTURE_TYPE_I && h->pps.cabac) {
1681  tmp = get_ue_golomb_31(&h->gb);
1682  if (tmp > 2) {
1683  av_log(h->avctx, AV_LOG_ERROR, "cabac_init_idc %u overflow\n", tmp);
1684  return AVERROR_INVALIDDATA;
1685  }
1686  h->cabac_init_idc = tmp;
1687  }
1688 
1689  h->last_qscale_diff = 0;
1690  tmp = h->pps.init_qp + get_se_golomb(&h->gb);
1691  if (tmp > 51 + 6 * (h->sps.bit_depth_luma - 8)) {
1692  av_log(h->avctx, AV_LOG_ERROR, "QP %u out of range\n", tmp);
1693  return AVERROR_INVALIDDATA;
1694  }
1695  h->qscale = tmp;
1696  h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
1697  h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
1698  // FIXME qscale / qp ... stuff
1699  if (h->slice_type == AV_PICTURE_TYPE_SP)
1700  get_bits1(&h->gb); /* sp_for_switch_flag */
1701  if (h->slice_type == AV_PICTURE_TYPE_SP ||
1703  get_se_golomb(&h->gb); /* slice_qs_delta */
1704 
1705  h->deblocking_filter = 1;
1706  h->slice_alpha_c0_offset = 0;
1707  h->slice_beta_offset = 0;
1709  tmp = get_ue_golomb_31(&h->gb);
1710  if (tmp > 2) {
1712  "deblocking_filter_idc %u out of range\n", tmp);
1713  return AVERROR_INVALIDDATA;
1714  }
1715  h->deblocking_filter = tmp;
1716  if (h->deblocking_filter < 2)
1717  h->deblocking_filter ^= 1; // 1<->0
1718 
1719  if (h->deblocking_filter) {
1720  h->slice_alpha_c0_offset = get_se_golomb(&h->gb) * 2;
1721  h->slice_beta_offset = get_se_golomb(&h->gb) * 2;
1722  if (h->slice_alpha_c0_offset > 12 ||
1723  h->slice_alpha_c0_offset < -12 ||
1724  h->slice_beta_offset > 12 ||
1725  h->slice_beta_offset < -12) {
1727  "deblocking filter parameters %d %d out of range\n",
1729  return AVERROR_INVALIDDATA;
1730  }
1731  }
1732  }
1733 
1734  if (h->avctx->skip_loop_filter >= AVDISCARD_ALL ||
1740  h->nal_ref_idc == 0))
1741  h->deblocking_filter = 0;
1742 
1743  if (h->deblocking_filter == 1 && h0->max_contexts > 1) {
1744  if (h->avctx->flags2 & CODEC_FLAG2_FAST) {
1745  /* Cheat slightly for speed:
1746  * Do not bother to deblock across slices. */
1747  h->deblocking_filter = 2;
1748  } else {
1749  h0->max_contexts = 1;
1750  if (!h0->single_decode_warning) {
1751  av_log(h->avctx, AV_LOG_INFO,
1752  "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
1753  h0->single_decode_warning = 1;
1754  }
1755  if (h != h0) {
1757  "Deblocking switched inside frame.\n");
1758  return 1;
1759  }
1760  }
1761  }
1762  h->qp_thresh = 15 -
1764  FFMAX3(0,
1766  h->pps.chroma_qp_index_offset[1]) +
1767  6 * (h->sps.bit_depth_luma - 8);
1768 
1769  h0->last_slice_type = slice_type;
1770  h->slice_num = ++h0->current_slice;
1771  if (h->slice_num >= MAX_SLICES) {
1773  "Too many slices, increase MAX_SLICES and recompile\n");
1774  }
1775 
1776  for (j = 0; j < 2; j++) {
1777  int id_list[16];
1778  int *ref2frm = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][j];
1779  for (i = 0; i < 16; i++) {
1780  id_list[i] = 60;
1781  if (j < h->list_count && i < h->ref_count[j] &&
1782  h->ref_list[j][i].f.buf[0]) {
1783  int k;
1784  AVBuffer *buf = h->ref_list[j][i].f.buf[0]->buffer;
1785  for (k = 0; k < h->short_ref_count; k++)
1786  if (h->short_ref[k]->f.buf[0]->buffer == buf) {
1787  id_list[i] = k;
1788  break;
1789  }
1790  for (k = 0; k < h->long_ref_count; k++)
1791  if (h->long_ref[k] && h->long_ref[k]->f.buf[0]->buffer == buf) {
1792  id_list[i] = h->short_ref_count + k;
1793  break;
1794  }
1795  }
1796  }
1797 
1798  ref2frm[0] =
1799  ref2frm[1] = -1;
1800  for (i = 0; i < 16; i++)
1801  ref2frm[i + 2] = 4 * id_list[i] + (h->ref_list[j][i].reference & 3);
1802  ref2frm[18 + 0] =
1803  ref2frm[18 + 1] = -1;
1804  for (i = 16; i < 48; i++)
1805  ref2frm[i + 4] = 4 * id_list[(i - 16) >> 1] +
1806  (h->ref_list[j][i].reference & 3);
1807  }
1808 
1809  if (h->avctx->debug & FF_DEBUG_PICT_INFO) {
1811  "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",
1812  h->slice_num,
1813  (h->picture_structure == PICT_FRAME ? "F" : h->picture_structure == PICT_TOP_FIELD ? "T" : "B"),
1814  first_mb_in_slice,
1816  h->slice_type_fixed ? " fix" : "",
1817  h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "",
1818  pps_id, h->frame_num,
1819  h->cur_pic_ptr->field_poc[0],
1820  h->cur_pic_ptr->field_poc[1],
1821  h->ref_count[0], h->ref_count[1],
1822  h->qscale,
1823  h->deblocking_filter,
1825  h->use_weight,
1826  h->use_weight == 1 && h->use_weight_chroma ? "c" : "",
1827  h->slice_type == AV_PICTURE_TYPE_B ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "");
1828  }
1829 
1830  return 0;
1831 }
1832 
1834 {
1835  switch (h->slice_type) {
1836  case AV_PICTURE_TYPE_P:
1837  return 0;
1838  case AV_PICTURE_TYPE_B:
1839  return 1;
1840  case AV_PICTURE_TYPE_I:
1841  return 2;
1842  case AV_PICTURE_TYPE_SP:
1843  return 3;
1844  case AV_PICTURE_TYPE_SI:
1845  return 4;
1846  default:
1847  return AVERROR_INVALIDDATA;
1848  }
1849 }
1850 
1852  int mb_type, int top_xy,
1853  int left_xy[LEFT_MBS],
1854  int top_type,
1855  int left_type[LEFT_MBS],
1856  int mb_xy, int list)
1857 {
1858  int b_stride = h->b_stride;
1859  int16_t(*mv_dst)[2] = &h->mv_cache[list][scan8[0]];
1860  int8_t *ref_cache = &h->ref_cache[list][scan8[0]];
1861  if (IS_INTER(mb_type) || IS_DIRECT(mb_type)) {
1862  if (USES_LIST(top_type, list)) {
1863  const int b_xy = h->mb2b_xy[top_xy] + 3 * b_stride;
1864  const int b8_xy = 4 * top_xy + 2;
1865  int (*ref2frm)[64] = h->ref2frm[h->slice_table[top_xy] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2);
1866  AV_COPY128(mv_dst - 1 * 8, h->cur_pic.motion_val[list][b_xy + 0]);
1867  ref_cache[0 - 1 * 8] =
1868  ref_cache[1 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 0]];
1869  ref_cache[2 - 1 * 8] =
1870  ref_cache[3 - 1 * 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 1]];
1871  } else {
1872  AV_ZERO128(mv_dst - 1 * 8);
1873  AV_WN32A(&ref_cache[0 - 1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
1874  }
1875 
1876  if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) {
1877  if (USES_LIST(left_type[LTOP], list)) {
1878  const int b_xy = h->mb2b_xy[left_xy[LTOP]] + 3;
1879  const int b8_xy = 4 * left_xy[LTOP] + 1;
1880  int (*ref2frm)[64] = h->ref2frm[h->slice_table[left_xy[LTOP]] & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2);
1881  AV_COPY32(mv_dst - 1 + 0, h->cur_pic.motion_val[list][b_xy + b_stride * 0]);
1882  AV_COPY32(mv_dst - 1 + 8, h->cur_pic.motion_val[list][b_xy + b_stride * 1]);
1883  AV_COPY32(mv_dst - 1 + 16, h->cur_pic.motion_val[list][b_xy + b_stride * 2]);
1884  AV_COPY32(mv_dst - 1 + 24, h->cur_pic.motion_val[list][b_xy + b_stride * 3]);
1885  ref_cache[-1 + 0] =
1886  ref_cache[-1 + 8] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 0]];
1887  ref_cache[-1 + 16] =
1888  ref_cache[-1 + 24] = ref2frm[list][h->cur_pic.ref_index[list][b8_xy + 2 * 1]];
1889  } else {
1890  AV_ZERO32(mv_dst - 1 + 0);
1891  AV_ZERO32(mv_dst - 1 + 8);
1892  AV_ZERO32(mv_dst - 1 + 16);
1893  AV_ZERO32(mv_dst - 1 + 24);
1894  ref_cache[-1 + 0] =
1895  ref_cache[-1 + 8] =
1896  ref_cache[-1 + 16] =
1897  ref_cache[-1 + 24] = LIST_NOT_USED;
1898  }
1899  }
1900  }
1901 
1902  if (!USES_LIST(mb_type, list)) {
1903  fill_rectangle(mv_dst, 4, 4, 8, pack16to32(0, 0), 4);
1904  AV_WN32A(&ref_cache[0 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
1905  AV_WN32A(&ref_cache[1 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
1906  AV_WN32A(&ref_cache[2 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
1907  AV_WN32A(&ref_cache[3 * 8], ((LIST_NOT_USED) & 0xFF) * 0x01010101u);
1908  return;
1909  }
1910 
1911  {
1912  int8_t *ref = &h->cur_pic.ref_index[list][4 * mb_xy];
1913  int (*ref2frm)[64] = h->ref2frm[h->slice_num & (MAX_SLICES - 1)][0] + (MB_MBAFF(h) ? 20 : 2);
1914  uint32_t ref01 = (pack16to32(ref2frm[list][ref[0]], ref2frm[list][ref[1]]) & 0x00FF00FF) * 0x0101;
1915  uint32_t ref23 = (pack16to32(ref2frm[list][ref[2]], ref2frm[list][ref[3]]) & 0x00FF00FF) * 0x0101;
1916  AV_WN32A(&ref_cache[0 * 8], ref01);
1917  AV_WN32A(&ref_cache[1 * 8], ref01);
1918  AV_WN32A(&ref_cache[2 * 8], ref23);
1919  AV_WN32A(&ref_cache[3 * 8], ref23);
1920  }
1921 
1922  {
1923  int16_t(*mv_src)[2] = &h->cur_pic.motion_val[list][4 * h->mb_x + 4 * h->mb_y * b_stride];
1924  AV_COPY128(mv_dst + 8 * 0, mv_src + 0 * b_stride);
1925  AV_COPY128(mv_dst + 8 * 1, mv_src + 1 * b_stride);
1926  AV_COPY128(mv_dst + 8 * 2, mv_src + 2 * b_stride);
1927  AV_COPY128(mv_dst + 8 * 3, mv_src + 3 * b_stride);
1928  }
1929 }
1930 
1935 static int fill_filter_caches(H264Context *h, int mb_type)
1936 {
1937  const int mb_xy = h->mb_xy;
1938  int top_xy, left_xy[LEFT_MBS];
1939  int top_type, left_type[LEFT_MBS];
1940  uint8_t *nnz;
1941  uint8_t *nnz_cache;
1942 
1943  top_xy = mb_xy - (h->mb_stride << MB_FIELD(h));
1944 
1945  /* Wow, what a mess, why didn't they simplify the interlacing & intra
1946  * stuff, I can't imagine that these complex rules are worth it. */
1947 
1948  left_xy[LBOT] = left_xy[LTOP] = mb_xy - 1;
1949  if (FRAME_MBAFF(h)) {
1950  const int left_mb_field_flag = IS_INTERLACED(h->cur_pic.mb_type[mb_xy - 1]);
1951  const int curr_mb_field_flag = IS_INTERLACED(mb_type);
1952  if (h->mb_y & 1) {
1953  if (left_mb_field_flag != curr_mb_field_flag)
1954  left_xy[LTOP] -= h->mb_stride;
1955  } else {
1956  if (curr_mb_field_flag)
1957  top_xy += h->mb_stride &
1958  (((h->cur_pic.mb_type[top_xy] >> 7) & 1) - 1);
1959  if (left_mb_field_flag != curr_mb_field_flag)
1960  left_xy[LBOT] += h->mb_stride;
1961  }
1962  }
1963 
1964  h->top_mb_xy = top_xy;
1965  h->left_mb_xy[LTOP] = left_xy[LTOP];
1966  h->left_mb_xy[LBOT] = left_xy[LBOT];
1967  {
1968  /* For sufficiently low qp, filtering wouldn't do anything.
1969  * This is a conservative estimate: could also check beta_offset
1970  * and more accurate chroma_qp. */
1971  int qp_thresh = h->qp_thresh; // FIXME strictly we should store qp_thresh for each mb of a slice
1972  int qp = h->cur_pic.qscale_table[mb_xy];
1973  if (qp <= qp_thresh &&
1974  (left_xy[LTOP] < 0 ||
1975  ((qp + h->cur_pic.qscale_table[left_xy[LTOP]] + 1) >> 1) <= qp_thresh) &&
1976  (top_xy < 0 ||
1977  ((qp + h->cur_pic.qscale_table[top_xy] + 1) >> 1) <= qp_thresh)) {
1978  if (!FRAME_MBAFF(h))
1979  return 1;
1980  if ((left_xy[LTOP] < 0 ||
1981  ((qp + h->cur_pic.qscale_table[left_xy[LBOT]] + 1) >> 1) <= qp_thresh) &&
1982  (top_xy < h->mb_stride ||
1983  ((qp + h->cur_pic.qscale_table[top_xy - h->mb_stride] + 1) >> 1) <= qp_thresh))
1984  return 1;
1985  }
1986  }
1987 
1988  top_type = h->cur_pic.mb_type[top_xy];
1989  left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]];
1990  left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]];
1991  if (h->deblocking_filter == 2) {
1992  if (h->slice_table[top_xy] != h->slice_num)
1993  top_type = 0;
1994  if (h->slice_table[left_xy[LBOT]] != h->slice_num)
1995  left_type[LTOP] = left_type[LBOT] = 0;
1996  } else {
1997  if (h->slice_table[top_xy] == 0xFFFF)
1998  top_type = 0;
1999  if (h->slice_table[left_xy[LBOT]] == 0xFFFF)
2000  left_type[LTOP] = left_type[LBOT] = 0;
2001  }
2002  h->top_type = top_type;
2003  h->left_type[LTOP] = left_type[LTOP];
2004  h->left_type[LBOT] = left_type[LBOT];
2005 
2006  if (IS_INTRA(mb_type))
2007  return 0;
2008 
2009  fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2010  top_type, left_type, mb_xy, 0);
2011  if (h->list_count == 2)
2012  fill_filter_caches_inter(h, mb_type, top_xy, left_xy,
2013  top_type, left_type, mb_xy, 1);
2014 
2015  nnz = h->non_zero_count[mb_xy];
2016  nnz_cache = h->non_zero_count_cache;
2017  AV_COPY32(&nnz_cache[4 + 8 * 1], &nnz[0]);
2018  AV_COPY32(&nnz_cache[4 + 8 * 2], &nnz[4]);
2019  AV_COPY32(&nnz_cache[4 + 8 * 3], &nnz[8]);
2020  AV_COPY32(&nnz_cache[4 + 8 * 4], &nnz[12]);
2021  h->cbp = h->cbp_table[mb_xy];
2022 
2023  if (top_type) {
2024  nnz = h->non_zero_count[top_xy];
2025  AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[3 * 4]);
2026  }
2027 
2028  if (left_type[LTOP]) {
2029  nnz = h->non_zero_count[left_xy[LTOP]];
2030  nnz_cache[3 + 8 * 1] = nnz[3 + 0 * 4];
2031  nnz_cache[3 + 8 * 2] = nnz[3 + 1 * 4];
2032  nnz_cache[3 + 8 * 3] = nnz[3 + 2 * 4];
2033  nnz_cache[3 + 8 * 4] = nnz[3 + 3 * 4];
2034  }
2035 
2036  /* CAVLC 8x8dct requires NNZ values for residual decoding that differ
2037  * from what the loop filter needs */
2038  if (!CABAC(h) && h->pps.transform_8x8_mode) {
2039  if (IS_8x8DCT(top_type)) {
2040  nnz_cache[4 + 8 * 0] =
2041  nnz_cache[5 + 8 * 0] = (h->cbp_table[top_xy] & 0x4000) >> 12;
2042  nnz_cache[6 + 8 * 0] =
2043  nnz_cache[7 + 8 * 0] = (h->cbp_table[top_xy] & 0x8000) >> 12;
2044  }
2045  if (IS_8x8DCT(left_type[LTOP])) {
2046  nnz_cache[3 + 8 * 1] =
2047  nnz_cache[3 + 8 * 2] = (h->cbp_table[left_xy[LTOP]] & 0x2000) >> 12; // FIXME check MBAFF
2048  }
2049  if (IS_8x8DCT(left_type[LBOT])) {
2050  nnz_cache[3 + 8 * 3] =
2051  nnz_cache[3 + 8 * 4] = (h->cbp_table[left_xy[LBOT]] & 0x8000) >> 12; // FIXME check MBAFF
2052  }
2053 
2054  if (IS_8x8DCT(mb_type)) {
2055  nnz_cache[scan8[0]] =
2056  nnz_cache[scan8[1]] =
2057  nnz_cache[scan8[2]] =
2058  nnz_cache[scan8[3]] = (h->cbp & 0x1000) >> 12;
2059 
2060  nnz_cache[scan8[0 + 4]] =
2061  nnz_cache[scan8[1 + 4]] =
2062  nnz_cache[scan8[2 + 4]] =
2063  nnz_cache[scan8[3 + 4]] = (h->cbp & 0x2000) >> 12;
2064 
2065  nnz_cache[scan8[0 + 8]] =
2066  nnz_cache[scan8[1 + 8]] =
2067  nnz_cache[scan8[2 + 8]] =
2068  nnz_cache[scan8[3 + 8]] = (h->cbp & 0x4000) >> 12;
2069 
2070  nnz_cache[scan8[0 + 12]] =
2071  nnz_cache[scan8[1 + 12]] =
2072  nnz_cache[scan8[2 + 12]] =
2073  nnz_cache[scan8[3 + 12]] = (h->cbp & 0x8000) >> 12;
2074  }
2075  }
2076 
2077  return 0;
2078 }
2079 
2080 static void loop_filter(H264Context *h, int start_x, int end_x)
2081 {
2082  uint8_t *dest_y, *dest_cb, *dest_cr;
2083  int linesize, uvlinesize, mb_x, mb_y;
2084  const int end_mb_y = h->mb_y + FRAME_MBAFF(h);
2085  const int old_slice_type = h->slice_type;
2086  const int pixel_shift = h->pixel_shift;
2087  const int block_h = 16 >> h->chroma_y_shift;
2088 
2089  if (h->deblocking_filter) {
2090  for (mb_x = start_x; mb_x < end_x; mb_x++)
2091  for (mb_y = end_mb_y - FRAME_MBAFF(h); mb_y <= end_mb_y; mb_y++) {
2092  int mb_xy, mb_type;
2093  mb_xy = h->mb_xy = mb_x + mb_y * h->mb_stride;
2094  h->slice_num = h->slice_table[mb_xy];
2095  mb_type = h->cur_pic.mb_type[mb_xy];
2096  h->list_count = h->list_counts[mb_xy];
2097 
2098  if (FRAME_MBAFF(h))
2099  h->mb_mbaff =
2100  h->mb_field_decoding_flag = !!IS_INTERLACED(mb_type);
2101 
2102  h->mb_x = mb_x;
2103  h->mb_y = mb_y;
2104  dest_y = h->cur_pic.f.data[0] +
2105  ((mb_x << pixel_shift) + mb_y * h->linesize) * 16;
2106  dest_cb = h->cur_pic.f.data[1] +
2107  (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2108  mb_y * h->uvlinesize * block_h;
2109  dest_cr = h->cur_pic.f.data[2] +
2110  (mb_x << pixel_shift) * (8 << CHROMA444(h)) +
2111  mb_y * h->uvlinesize * block_h;
2112  // FIXME simplify above
2113 
2114  if (MB_FIELD(h)) {
2115  linesize = h->mb_linesize = h->linesize * 2;
2116  uvlinesize = h->mb_uvlinesize = h->uvlinesize * 2;
2117  if (mb_y & 1) { // FIXME move out of this function?
2118  dest_y -= h->linesize * 15;
2119  dest_cb -= h->uvlinesize * (block_h - 1);
2120  dest_cr -= h->uvlinesize * (block_h - 1);
2121  }
2122  } else {
2123  linesize = h->mb_linesize = h->linesize;
2124  uvlinesize = h->mb_uvlinesize = h->uvlinesize;
2125  }
2126  backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize,
2127  uvlinesize, 0);
2128  if (fill_filter_caches(h, mb_type))
2129  continue;
2130  h->chroma_qp[0] = get_chroma_qp(h, 0, h->cur_pic.qscale_table[mb_xy]);
2131  h->chroma_qp[1] = get_chroma_qp(h, 1, h->cur_pic.qscale_table[mb_xy]);
2132 
2133  if (FRAME_MBAFF(h)) {
2134  ff_h264_filter_mb(h, mb_x, mb_y, dest_y, dest_cb, dest_cr,
2135  linesize, uvlinesize);
2136  } else {
2137  ff_h264_filter_mb_fast(h, mb_x, mb_y, dest_y, dest_cb,
2138  dest_cr, linesize, uvlinesize);
2139  }
2140  }
2141  }
2142  h->slice_type = old_slice_type;
2143  h->mb_x = end_x;
2144  h->mb_y = end_mb_y - FRAME_MBAFF(h);
2145  h->chroma_qp[0] = get_chroma_qp(h, 0, h->qscale);
2146  h->chroma_qp[1] = get_chroma_qp(h, 1, h->qscale);
2147 }
2148 
2150 {
2151  const int mb_xy = h->mb_x + h->mb_y * h->mb_stride;
2152  int mb_type = (h->slice_table[mb_xy - 1] == h->slice_num) ?
2153  h->cur_pic.mb_type[mb_xy - 1] :
2154  (h->slice_table[mb_xy - h->mb_stride] == h->slice_num) ?
2155  h->cur_pic.mb_type[mb_xy - h->mb_stride] : 0;
2156  h->mb_mbaff = h->mb_field_decoding_flag = IS_INTERLACED(mb_type) ? 1 : 0;
2157 }
2158 
2163 {
2164  int top = 16 * (h->mb_y >> FIELD_PICTURE(h));
2165  int pic_height = 16 * h->mb_height >> FIELD_PICTURE(h);
2166  int height = 16 << FRAME_MBAFF(h);
2167  int deblock_border = (16 + 4) << FRAME_MBAFF(h);
2168 
2169  if (h->deblocking_filter) {
2170  if ((top + height) >= pic_height)
2171  height += deblock_border;
2172  top -= deblock_border;
2173  }
2174 
2175  if (top >= pic_height || (top + height) < 0)
2176  return;
2177 
2178  height = FFMIN(height, pic_height - top);
2179  if (top < 0) {
2180  height = top + height;
2181  top = 0;
2182  }
2183 
2184  ff_h264_draw_horiz_band(h, top, height);
2185 
2186  if (h->droppable)
2187  return;
2188 
2189  ff_thread_report_progress(&h->cur_pic_ptr->tf, top + height - 1,
2191 }
2192 
2193 static void er_add_slice(H264Context *h, int startx, int starty,
2194  int endx, int endy, int status)
2195 {
2196 #if CONFIG_ERROR_RESILIENCE
2197  ERContext *er = &h->er;
2198 
2199  er->ref_count = h->ref_count[0];
2200  ff_er_add_slice(er, startx, starty, endx, endy, status);
2201 #endif
2202 }
2203 
2204 static int decode_slice(struct AVCodecContext *avctx, void *arg)
2205 {
2206  H264Context *h = *(void **)arg;
2207  int lf_x_start = h->mb_x;
2208 
2209  h->mb_skip_run = -1;
2210 
2212  avctx->codec_id != AV_CODEC_ID_H264 ||
2213  (CONFIG_GRAY && (h->flags & CODEC_FLAG_GRAY));
2214 
2215  if (h->pps.cabac) {
2216  /* realign */
2217  align_get_bits(&h->gb);
2218 
2219  /* init cabac */
2221  h->gb.buffer + get_bits_count(&h->gb) / 8,
2222  (get_bits_left(&h->gb) + 7) / 8);
2223 
2225 
2226  for (;;) {
2227  // START_TIMER
2228  int ret = ff_h264_decode_mb_cabac(h);
2229  int eos;
2230  // STOP_TIMER("decode_mb_cabac")
2231 
2232  if (ret >= 0)
2234 
2235  // FIXME optimal? or let mb_decode decode 16x32 ?
2236  if (ret >= 0 && FRAME_MBAFF(h)) {
2237  h->mb_y++;
2238 
2239  ret = ff_h264_decode_mb_cabac(h);
2240 
2241  if (ret >= 0)
2243  h->mb_y--;
2244  }
2245  eos = get_cabac_terminate(&h->cabac);
2246 
2247  if ((h->workaround_bugs & FF_BUG_TRUNCATED) &&
2248  h->cabac.bytestream > h->cabac.bytestream_end + 2) {
2249  er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2250  h->mb_y, ER_MB_END);
2251  if (h->mb_x >= lf_x_start)
2252  loop_filter(h, lf_x_start, h->mb_x + 1);
2253  return 0;
2254  }
2255  if (ret < 0 || h->cabac.bytestream > h->cabac.bytestream_end + 2) {
2257  "error while decoding MB %d %d, bytestream %td\n",
2258  h->mb_x, h->mb_y,
2260  er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2261  h->mb_y, ER_MB_ERROR);
2262  return AVERROR_INVALIDDATA;
2263  }
2264 
2265  if (++h->mb_x >= h->mb_width) {
2266  loop_filter(h, lf_x_start, h->mb_x);
2267  h->mb_x = lf_x_start = 0;
2268  decode_finish_row(h);
2269  ++h->mb_y;
2270  if (FIELD_OR_MBAFF_PICTURE(h)) {
2271  ++h->mb_y;
2272  if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2274  }
2275  }
2276 
2277  if (eos || h->mb_y >= h->mb_height) {
2278  tprintf(h->avctx, "slice end %d %d\n",
2279  get_bits_count(&h->gb), h->gb.size_in_bits);
2280  er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x - 1,
2281  h->mb_y, ER_MB_END);
2282  if (h->mb_x > lf_x_start)
2283  loop_filter(h, lf_x_start, h->mb_x);
2284  return 0;
2285  }
2286  }
2287  } else {
2288  for (;;) {
2289  int ret = ff_h264_decode_mb_cavlc(h);
2290 
2291  if (ret >= 0)
2293 
2294  // FIXME optimal? or let mb_decode decode 16x32 ?
2295  if (ret >= 0 && FRAME_MBAFF(h)) {
2296  h->mb_y++;
2297  ret = ff_h264_decode_mb_cavlc(h);
2298 
2299  if (ret >= 0)
2301  h->mb_y--;
2302  }
2303 
2304  if (ret < 0) {
2306  "error while decoding MB %d %d\n", h->mb_x, h->mb_y);
2307  er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2308  h->mb_y, ER_MB_ERROR);
2309  return ret;
2310  }
2311 
2312  if (++h->mb_x >= h->mb_width) {
2313  loop_filter(h, lf_x_start, h->mb_x);
2314  h->mb_x = lf_x_start = 0;
2315  decode_finish_row(h);
2316  ++h->mb_y;
2317  if (FIELD_OR_MBAFF_PICTURE(h)) {
2318  ++h->mb_y;
2319  if (FRAME_MBAFF(h) && h->mb_y < h->mb_height)
2321  }
2322  if (h->mb_y >= h->mb_height) {
2323  tprintf(h->avctx, "slice end %d %d\n",
2324  get_bits_count(&h->gb), h->gb.size_in_bits);
2325 
2326  if (get_bits_left(&h->gb) == 0) {
2328  h->mb_x - 1, h->mb_y, ER_MB_END);
2329 
2330  return 0;
2331  } else {
2333  h->mb_x - 1, h->mb_y, ER_MB_END);
2334 
2335  return AVERROR_INVALIDDATA;
2336  }
2337  }
2338  }
2339 
2340  if (get_bits_left(&h->gb) <= 0 && h->mb_skip_run <= 0) {
2341  tprintf(h->avctx, "slice end %d %d\n",
2342  get_bits_count(&h->gb), h->gb.size_in_bits);
2343 
2344  if (get_bits_left(&h->gb) == 0) {
2346  h->mb_x - 1, h->mb_y, ER_MB_END);
2347  if (h->mb_x > lf_x_start)
2348  loop_filter(h, lf_x_start, h->mb_x);
2349 
2350  return 0;
2351  } else {
2352  er_add_slice(h, h->resync_mb_x, h->resync_mb_y, h->mb_x,
2353  h->mb_y, ER_MB_ERROR);
2354 
2355  return AVERROR_INVALIDDATA;
2356  }
2357  }
2358  }
2359  }
2360 }
2361 
2368 int ff_h264_execute_decode_slices(H264Context *h, unsigned context_count)
2369 {
2370  AVCodecContext *const avctx = h->avctx;
2371  H264Context *hx;
2372  int i;
2373 
2374  if (h->mb_y >= h->mb_height) {
2376  "Input contains more MB rows than the frame height.\n");
2377  return AVERROR_INVALIDDATA;
2378  }
2379 
2380  if (h->avctx->hwaccel)
2381  return 0;
2382  if (context_count == 1) {
2383  return decode_slice(avctx, &h);
2384  } else {
2385  for (i = 1; i < context_count; i++) {
2386  hx = h->thread_context[i];
2387  hx->er.error_count = 0;
2388  }
2389 
2390  avctx->execute(avctx, decode_slice, h->thread_context,
2391  NULL, context_count, sizeof(void *));
2392 
2393  /* pull back stuff from slices to master context */
2394  hx = h->thread_context[context_count - 1];
2395  h->mb_x = hx->mb_x;
2396  h->mb_y = hx->mb_y;
2397  h->droppable = hx->droppable;
2399  for (i = 1; i < context_count; i++)
2401  }
2402 
2403  return 0;
2404 }
int chroma_format_idc
Definition: h264.h:160
void ff_h264_direct_dist_scale_factor(H264Context *const h)
Definition: h264_direct.c:50
int video_signal_type_present_flag
Definition: h264.h:185
int last_slice_type
Definition: h264.h:613
int ff_h264_decode_mb_cabac(H264Context *h)
Decode a CABAC coded macroblock.
Definition: h264_cabac.c:1882
void ff_h264_unref_picture(H264Context *h, H264Picture *pic)
Definition: h264_picture.c:46
const struct AVCodec * codec
Definition: avcodec.h:1059
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:62
discard all frames except keyframes
Definition: avcodec.h:567
uint8_t * edge_emu_buffer
Definition: h264.h:700
void ff_h264_flush_change(H264Context *h)
Definition: h264.c:1055
static const uint8_t dequant8_coeff_init[6][6]
Definition: h264_slice.c:137
int workaround_bugs
Definition: h264.h:336
int long_ref
1->long term reference 0->short term reference
Definition: h264.h:289
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
int single_decode_warning
1 if the single thread fallback warning has already been displayed, 0 otherwise.
Definition: h264.h:609
void ff_h264_free_tables(H264Context *h, int free_rbsp)
Definition: h264.c:343
GetBitContext gb
Definition: h264.h:311
#define CODEC_FLAG2_FAST
Allow non spec compliant speedup tricks.
Definition: avcodec.h:664
int low_delay
Definition: h264.h:332
int mb_num
Definition: h264.h:504
int size
int mb_aff_frame
Definition: h264.h:416
int delta_poc[2]
Definition: h264.h:543
ptrdiff_t uvlinesize
Definition: h264.h:325
static int get_se_golomb(GetBitContext *gb)
read signed exp golomb code.
Definition: golomb.h:179
int last_qscale_diff
Definition: h264.h:477
#define CHROMA444(h)
Definition: h264.h:96
#define LEFT_MBS
Definition: h264.h:73
int coded_width
Bitstream width / height, may be different from width/height e.g.
Definition: avcodec.h:1244
int cbp
Definition: h264.h:472
#define H264_MAX_PICTURE_COUNT
Definition: h264.h:46
int first_field
Definition: h264.h:420
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:70
misc image utilities
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:240
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:129
#define ER_MB_END
AVFrame * f
Definition: thread.h:36
int weighted_bipred_idc
Definition: h264.h:227
int chroma_qp_index_offset[2]
Definition: h264.h:230
const uint8_t * bytestream_end
Definition: cabac.h:48
int left_type[LEFT_MBS]
Definition: h264.h:353
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
Definition: frame.h:393
static const uint8_t zigzag_scan8x8_cavlc[64]
Definition: h264_slice.c:105
H264ChromaContext h264chroma
Definition: h264.h:308
uint16_t * cbp_table
Definition: h264.h:471
int luma_weight_flag[2]
7.4.3.2 luma_weight_lX_flag
Definition: h264.h:691
MMCO mmco[MAX_MMCO_COUNT]
memory management control operations buffer.
Definition: h264.h:575
#define MAX_PPS_COUNT
Definition: h264.h:50
void h264_init_dequant_tables(H264Context *h)
Definition: h264_slice.c:382
Sequence parameter set.
Definition: h264.h:156
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:1782
Definition: vf_drawbox.c:37
static void implicit_weight_table(H264Context *h, int field)
Initialize implicit_weight table.
Definition: h264_slice.c:853
int mb_y
Definition: h264.h:498
int coded_picture_number
Definition: h264.h:331
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:163
static void decode_finish_row(H264Context *h)
Draw edges and report progress for the last MB row.
Definition: h264_slice.c:2162
int num
numerator
Definition: rational.h:44
AVBufferRef * mb_type_buf
Definition: h264.h:273
H264Picture * DPB
Definition: h264.h:314
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:251
AVBufferPool * mb_type_pool
Definition: h264.h:704
int outputed_poc
Definition: h264.h:569
int chroma_x_shift
Definition: h264.h:326
HW decoding through VA API, Picture.data[3] contains a vaapi_render_state struct which contains the b...
Definition: pixfmt.h:127
qpel_mc_func(* qpel_put)[16]
Definition: h264.h:709
static void clone_tables(H264Context *dst, H264Context *src, int i)
Mimic alloc_tables(), but for every context thread.
Definition: h264_slice.c:402
const uint8_t * buffer
Definition: get_bits.h:54
Picture parameter set.
Definition: h264.h:219
int16_t(*[2] motion_val)[2]
Definition: h264.h:271
int flags
Definition: h264.h:335
const uint8_t * field_scan8x8_q0
Definition: h264.h:493
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1270
int frame_mbs_only_flag
Definition: h264.h:173
int mb_height
Definition: h264.h:502
H264Picture * delayed_pic[MAX_DELAYED_PIC_COUNT+2]
Definition: h264.h:566
int is_avc
Used to parse AVC variant of h264.
Definition: h264.h:525
int mmco_index
Definition: h264.h:576
AVBufferPool * ref_index_pool
Definition: h264.h:706
static const uint8_t dequant4_coeff_init[6][3]
Definition: h264_slice.c:124
uint8_t zigzag_scan8x8_cavlc[64]
Definition: h264.h:485
int ff_h264_get_profile(SPS *sps)
Compute profile from profile_idc and constraint_set?_flags.
Definition: h264.c:1193
uint32_t dequant8_buffer[6][QP_MAX_NUM+1][64]
Definition: h264.h:405
int16_t mv_cache[2][5 *8][2]
Motion vector cache.
Definition: h264.h:378
H264Context.
Definition: h264.h:303
discard all
Definition: avcodec.h:568
int prev_poc_msb
poc_msb of the last reference pic for POC type 0
Definition: h264.h:545
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition: avcodec.h:2530
uint32_t num_units_in_tick
Definition: h264.h:192
void ff_thread_await_progress(ThreadFrame *f, int n, int field)
Wait for earlier decoding threads to finish reference pictures.
struct AVFrame f
Definition: h264.h:264
H264Picture * long_ref[32]
Definition: h264.h:565
int profile
profile
Definition: avcodec.h:2638
int picture_structure
Definition: h264.h:419
#define AV_WN32A(p, v)
Definition: intreadwrite.h:458
int slice_type_nos
S free slice type (SI/SP are remapped to I/P)
Definition: h264.h:412
#define AV_COPY32(d, s)
Definition: intreadwrite.h:506
static av_always_inline uint32_t pack16to32(int a, int b)
Definition: h264.h:884
static const uint8_t zigzag_scan[16]
Definition: h264data.h:54
#define IN_RANGE(a, b, size)
Definition: h264_slice.c:424
int mb_skip_run
Definition: h264.h:501
void ff_h264_init_cabac_states(H264Context *h)
Definition: h264_cabac.c:1263
#define FFALIGN(x, a)
Definition: common.h:62
static const uint8_t field_scan8x8_cavlc[64]
Definition: h264_slice.c:85
#define REBASE_PICTURE(pic, new_ctx, old_ctx)
Definition: h264_slice.c:426
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1175
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
int ff_h264_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
Definition: h264_slice.c:472
Switching Intra.
Definition: avutil.h:257
uint8_t * chroma_pred_mode_table
Definition: h264.h:476
int ff_h264_decode_ref_pic_list_reordering(H264Context *h)
Definition: h264_refs.c:215
static const uint8_t golomb_to_pict_type[5]
Definition: h264data.h:37
struct AVHWAccel * hwaccel
Hardware accelerator in use.
Definition: avcodec.h:2448
unsigned int crop_top
frame_cropping_rect_top_offset
Definition: h264.h:181
#define USES_LIST(a, list)
Definition: mpegutils.h:95
int resync_mb_y
Definition: h264.h:500
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
#define IS_8x8DCT(a)
Definition: h264.h:103
uint8_t scaling_matrix4[6][16]
Definition: h264.h:235
static int fill_filter_caches(H264Context *h, int mb_type)
Definition: h264_slice.c:1935
const uint8_t * bytestream
Definition: cabac.h:47
int ref2frm[MAX_SLICES][2][64]
reference to frame number lists, used in the loop filter, the first 2 are for -2,-1 ...
Definition: h264.h:451
int deblocking_filter_parameters_present
deblocking_filter_parameters_present_flag
Definition: h264.h:231
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static int copy_parameter_set(void **to, void **from, int count, int size)
Definition: h264_slice.c:446
uint32_t(*[6] dequant4_coeff)[16]
Definition: h264.h:406
static enum AVPixelFormat h264_hwaccel_pixfmt_list_jpeg_420[]
Definition: h264_slice.c:164
uint8_t
int prev_frame_num_offset
for POC type 2
Definition: h264.h:548
int use_weight
Definition: h264.h:425
int full_range
Definition: h264.h:186
unsigned int crop_left
frame_cropping_rect_left_offset
Definition: h264.h:179
int data_partitioning
Definition: h264.h:330
int field_picture
whether or not picture was encoded in separate fields
Definition: h264.h:293
#define FF_DEBUG_PICT_INFO
Definition: avcodec.h:2379
static void init_dequant4_coeff_table(H264Context *h)
Definition: h264_slice.c:356
enum AVColorPrimaries color_primaries
Definition: h264.h:188
int poc
frame POC
Definition: h264.h:283
Multithreading support functions.
#define ER_MB_ERROR
int cabac
entropy_coding_mode_flag
Definition: h264.h:221
int mb_xy
Definition: h264.h:505
static const uint8_t dequant8_coeff_init_scan[16]
Definition: h264_slice.c:133
static void init_dequant8_coeff_table(H264Context *h)
Definition: h264_slice.c:329
unsigned int ref_count[2]
num_ref_idx_l0/1_active_minus1 + 1
Definition: h264.h:445
unsigned int crop_right
frame_cropping_rect_right_offset
Definition: h264.h:180
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:250
void ff_h264_fill_mbaff_ref_list(H264Context *h)
Definition: h264_refs.c:340
int frame_recovered
Initial frame has been completely recovered.
Definition: h264.h:689
int height
Definition: h264.h:324
#define PICT_BOTTOM_FIELD
Definition: mpegutils.h:34
int mb_x
Definition: h264.h:498
int transform_bypass
qpprime_y_zero_transform_bypass_flag
Definition: h264.h:161
H264Picture default_ref_list[2][32]
base reference list for all slices of a coded picture
Definition: h264.h:563
static void predict_field_decoding_flag(H264Context *h)
Definition: h264_slice.c:2149
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:194
int left_mb_xy[LEFT_MBS]
Definition: h264.h:348
int top_mb_xy
Definition: h264.h:346
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
Definition: utils.c:43
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_...
Definition: pixfmt.h:78
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
Definition: utils.c:145
qpel_mc_func(* qpel_avg)[16]
Definition: h264.h:710
int redundant_pic_cnt_present
redundant_pic_cnt_present_flag
Definition: h264.h:233
int chroma_y_shift
Definition: h264.h:326
#define MAX_DELAYED_PIC_COUNT
Definition: h264.h:54
AVBufferRef * qscale_table_buf
Definition: h264.h:267
static av_always_inline void fill_filter_caches_inter(H264Context *h, int mb_type, int top_xy, int left_xy[LEFT_MBS], int top_type, int left_type[LEFT_MBS], int mb_xy, int list)
Definition: h264_slice.c:1851
high precision timer, useful to profile code
int recovered
picture at IDR or recovery point + recovery count
Definition: h264.h:297
#define AV_COPY64(d, s)
Definition: intreadwrite.h:510
int luma_log2_weight_denom
Definition: h264.h:427
qpel_mc_func avg_h264_qpel_pixels_tab[4][16]
Definition: h264qpel.h:29
int width
Definition: h264.h:324
static int h264_frame_start(H264Context *h)
Definition: h264_slice.c:671
const uint8_t * zigzag_scan8x8_cavlc_q0
Definition: h264.h:491
H.264 / AVC / MPEG4 part10 codec.
static int clone_slice(H264Context *dst, H264Context *src)
Replicate H264 "master" context to thread contexts.
Definition: h264_slice.c:954
int frame_num
Definition: h264.h:544
static av_always_inline void backup_mb_border(H264Context *h, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, int linesize, int uvlinesize, int simple)
Definition: h264_slice.c:752
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:555
int mb_aff
mb_adaptive_frame_field_flag
Definition: h264.h:174
enum AVColorTransferCharacteristic color_trc
Definition: h264.h:189
H264PredContext hpc
Definition: h264.h:360
int width
width and height of the video frame
Definition: frame.h:174
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
int16_t mb_luma_dc[3][16 *2]
Definition: h264.h:461
static int get_ue_golomb(GetBitContext *gb)
read unsigned exp golomb code.
Definition: golomb.h:53
const uint8_t * zigzag_scan_q0
Definition: h264.h:489
int ff_h264_get_slice_type(const H264Context *h)
Reconstruct bitstream slice_type.
Definition: h264_slice.c:1833
int poc_type
pic_order_cnt_type
Definition: h264.h:163
void ff_er_add_slice(ERContext *s, int startx, int starty, int endx, int endy, int status)
Add a slice.
int context_initialized
Definition: h264.h:334
int nal_unit_type
Definition: h264.h:518
int use_weight_chroma
Definition: h264.h:426
discard all bidirectional frames
Definition: avcodec.h:566
#define AVERROR(e)
Definition: error.h:43
void ff_h264_direct_ref_list_init(H264Context *const h)
Definition: h264_direct.c:107
static av_always_inline int get_chroma_qp(H264Context *h, int t, int qscale)
Get the chroma qp.
Definition: h264.h:905
void * hwaccel_picture_private
hardware accelerator private data
Definition: h264.h:277
#define MB_FIELD(h)
Definition: h264.h:70
int active_thread_type
Which multithreading methods are in use by the codec.
Definition: avcodec.h:2575
int mb_field_decoding_flag
Definition: h264.h:417
int ff_init_poc(H264Context *h, int pic_field_poc[2], int *pic_poc)
Definition: h264.c:1108
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:144
PPS pps
current pps
Definition: h264.h:402
static int init_dimensions(H264Context *h)
Definition: h264_slice.c:1041
uint8_t(*[2] mvd_table)[2]
Definition: h264.h:478
int prev_interlaced_frame
Complement sei_pic_struct SEI_PIC_STRUCT_TOP_BOTTOM and SEI_PIC_STRUCT_BOTTOM_TOP indicate interlaced...
Definition: h264.h:627
int direct_spatial_mv_pred
Definition: h264.h:434
ThreadFrame tf
Definition: h264.h:265
simple assert() macros that are a bit more flexible than ISO C assert().
int weighted_pred
weighted_pred_flag
Definition: h264.h:226
#define PICT_TOP_FIELD
Definition: mpegutils.h:33
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
H264QpelContext h264qpel
Definition: h264.h:309
ERContext er
Definition: h264.h:312
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:245
#define CABAC(h)
Definition: h264.h:92
int ff_h264_decode_mb_cavlc(H264Context *h)
Decode a macroblock.
Definition: h264_cavlc.c:696
HW acceleration through VDA, data[3] contains a CVPixelBufferRef.
Definition: pixfmt.h:204
int frame_num
frame_num (raw frame_num from slice header)
Definition: h264.h:284
static const uint8_t field_scan8x8[64]
Definition: h264_slice.c:66
uint8_t * list_counts
Array of list_count per MB specifying the slice type.
Definition: h264.h:447
qpel_mc_func put_h264_qpel_pixels_tab[4][16]
Definition: h264qpel.h:28
int delta_pic_order_always_zero_flag
Definition: h264.h:165
void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Copy image in src_data to dst_data.
Definition: imgutils.c:267
int new
flag to keep track if the decoder context needs re-init due to changed SPS
Definition: h264.h:213
#define FIELD_OR_MBAFF_PICTURE(h)
Definition: h264.h:89
uint8_t zigzag_scan8x8[64]
Definition: h264.h:484
AVBufferRef * hwaccel_priv_buf
Definition: h264.h:276
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:69
static const uint8_t scan8[16 *3+3]
Definition: h264.h:868
int crop
frame_cropping_flag
Definition: h264.h:176
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
uint8_t * direct_table
Definition: h264.h:480
int ff_pred_weight_table(H264Context *h)
Definition: h264.c:980
uint8_t scaling_matrix8[6][64]
Definition: h264.h:236
useful rectangle filling function
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:241
int refs
number of reference frames
Definition: avcodec.h:1723
static const uint8_t field_scan[16]
Definition: h264_slice.c:59
CABACContext cabac
Cabac.
Definition: h264.h:467
AVBufferRef * motion_val_buf[2]
Definition: h264.h:270
int ref_frame_count
num_ref_frames
Definition: h264.h:169
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:2833
void ff_h264_filter_mb(H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize)
int frame_num_offset
for POC type 2
Definition: h264.h:547
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2422
int x264_build
Definition: h264.h:496
#define FF_THREAD_FRAME
Decode more than one frame at once.
Definition: avcodec.h:2567
uint32_t * mb2br_xy
Definition: h264.h:395
int needs_realloc
picture needs to be reallocated (eg due to a frame size change)
Definition: h264.h:295
ptrdiff_t linesize
Definition: h264.h:325
#define FFMIN(a, b)
Definition: common.h:57
uint16_t * slice_table
slice_table_base + 2*mb_stride + 1
Definition: h264.h:410
static void copy_picture_range(H264Picture **to, H264Picture **from, int count, H264Context *new_base, H264Context *old_base)
Definition: h264_slice.c:431
uint8_t field_scan8x8_cavlc[64]
Definition: h264.h:488
#define H264_MAX_THREADS
Definition: h264.h:47
#define IS_DIRECT(a)
Definition: mpegutils.h:80
int colour_description_present_flag
Definition: h264.h:187
int reference
Definition: h264.h:296
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:77
AVRational sar
Definition: h264.h:184
int redundant_pic_count
Definition: h264.h:561
#define FIELD_PICTURE(h)
Definition: h264.h:72
int width
picture width / height.
Definition: avcodec.h:1229
int long_ref_count
number of actual long term references
Definition: h264.h:579
#define CONFIG_GRAY
Definition: config.h:359
static enum AVPixelFormat h264_hwaccel_pixfmt_list_420[]
Definition: h264_slice.c:146
int cabac_init_idc
Definition: h264.h:582
uint32_t * mb_type
Definition: h264.h:274
int ff_h264_ref_picture(H264Context *h, H264Picture *dst, H264Picture *src)
Definition: h264_picture.c:67
void ff_thread_report_progress(ThreadFrame *f, int n, int field)
Notify later decoding threads when part of their reference picture is ready.
int size_in_bits
Definition: get_bits.h:56
SPS sps
current sps
Definition: h264.h:401
PPS * pps_buffers[MAX_PPS_COUNT]
Definition: h264.h:533
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:1761
static void fill_rectangle(SDL_Surface *screen, int x, int y, int w, int h, int color)
Definition: avplay.c:396
#define MAX_SPS_COUNT
Definition: h264.h:49
#define FFABS(a)
Definition: common.h:52
#define FF_THREAD_SLICE
Decode more than one part of a single frame at once.
Definition: avcodec.h:2568
Context Adaptive Binary Arithmetic Coder inline functions.
int level
level
Definition: avcodec.h:2721
H264Picture ref_list[2][48]
0..15: frame refs, 16..47: mbaff field refs.
Definition: h264.h:448
int init_qp
pic_init_qp_minus26 + 26
Definition: h264.h:228
uint8_t * bipred_scratchpad
Definition: h264.h:699
#define AV_EF_EXPLODE
Definition: avcodec.h:2433
int poc_lsb
Definition: h264.h:540
int max_pic_num
max_frame_num or 2 * max_frame_num for field pics.
Definition: h264.h:559
int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice)
Definition: h264_refs.c:538
static int pic_is_unused(H264Context *h, H264Picture *pic)
Definition: h264_slice.c:300
static void loop_filter(H264Context *h, int start_x, int end_x)
Definition: h264_slice.c:2080
int ff_set_ref_count(H264Context *h)
Definition: h264.c:1253
const uint8_t * zigzag_scan8x8_q0
Definition: h264.h:490
int curr_pic_num
frame_num for frames or 2 * frame_num + 1 for field pics.
Definition: h264.h:554
int slice_type
Definition: h264.h:411
static void init_scan_tables(H264Context *h)
initialize scan tables
Definition: h264_slice.c:917
static int av_unused get_cabac_terminate(CABACContext *c)
int top_type
Definition: h264.h:351
#define MB_MBAFF(h)
Definition: h264.h:69
#define HAVE_THREADS
Definition: config.h:302
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:242
#define DELAYED_PIC_REF
Value of Picture.reference when Picture is not a reference picture, but is held for delayed output...
Definition: mpegutils.h:41
av_cold void ff_h264_pred_init(H264PredContext *h, int codec_id, const int bit_depth, const int chroma_format_idc)
Set the intra prediction function pointers.
Definition: h264pred.c:402
uint32_t dequant4_buffer[6][QP_MAX_NUM+1][16]
Definition: h264.h:404
#define CONFIG_ERROR_RESILIENCE
Definition: config.h:387
ptrdiff_t mb_uvlinesize
Definition: h264.h:399
unsigned int list_count
Definition: h264.h:446
unsigned int sps_id
Definition: h264.h:157
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:2556
the normal 2^n-1 "JPEG" YUV ranges
Definition: pixfmt.h:365
static int init_table_pools(H264Context *h)
Definition: h264_slice.c:217
if(ac->has_optimized_func)
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Definition: utils.c:914
int dequant_coeff_pps
reinit tables when pps changes
Definition: h264.h:535
#define AVERROR_PATCHWELCOME
Not yet implemented in Libav, patches welcome.
Definition: error.h:57
int pic_order_present
pic_order_present_flag
Definition: h264.h:222
struct H264Context * thread_context[H264_MAX_THREADS]
Definition: h264.h:588
SPS * sps_buffers[MAX_SPS_COUNT]
Definition: h264.h:532
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:186
int chroma_log2_weight_denom
Definition: h264.h:428
int bit_depth_luma
luma bit depth from sps to detect changes
Definition: h264.h:529
int chroma_format_idc
chroma format from sps to detect changes
Definition: h264.h:530
VideoDSPContext vdsp
Definition: h264.h:306
int timing_info_present_flag
Definition: h264.h:191
NULL
Definition: eval.c:55
int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count)
Execute the reference picture marking (memory management control operations).
Definition: h264_refs.c:572
static int width
Definition: utils.c:156
int coded_picture_number
picture number in bitstream order
Definition: frame.h:226
int mb_stride
Definition: h264.h:503
#define AV_LOG_INFO
Standard information.
Definition: log.h:134
#define IS_INTERLACED(a)
Definition: mpegutils.h:79
AVCodecContext * avctx
Definition: h264.h:304
Libavcodec external API header.
H264 / AVC / MPEG4 part10 codec data table
int slice_alpha_c0_offset
Definition: h264.h:511
enum AVCodecID codec_id
Definition: avcodec.h:1067
static int get_ue_golomb_31(GetBitContext *gb)
read unsigned exp golomb code, constraint to a max of 31.
Definition: golomb.h:96
AVHWAccel.
Definition: avcodec.h:2909
int prev_frame_num
frame_num of the last pic for POC type 1/2
Definition: h264.h:549
int ff_h264_set_parameter_from_sps(H264Context *h)
Definition: h264.c:1213
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:153
H264Picture * short_ref[32]
Definition: h264.h:564
int next_outputed_poc
Definition: h264.h:570
#define LTOP
Definition: h264.h:74
int poc_msb
Definition: h264.h:541
int field_poc[2]
top/bottom POC
Definition: h264.h:282
int debug
debug
Definition: avcodec.h:2378
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
int implicit_weight[48][48][2]
Definition: h264.h:432
int max_contexts
Max number of threads / contexts.
Definition: h264.h:601
int recovery_frame
recovery_frame is the frame_num at which the next frame should be fully constructed.
Definition: h264.h:676
main external API structure.
Definition: avcodec.h:1050
uint8_t * data
The data buffer.
Definition: buffer.h:89
int ff_h264_alloc_tables(H264Context *h)
Allocate tables.
Definition: h264.c:404
#define QP_MAX_NUM
Definition: h264.h:105
int resync_mb_x
Definition: h264.h:499
int16_t mb[16 *48 *2]
as a dct coeffecient is int32_t in high depth, we need to reserve twice the space.
Definition: h264.h:460
int8_t * qscale_table
Definition: h264.h:268
AVBufferRef * av_buffer_allocz(int size)
Same as av_buffer_alloc(), except the returned buffer will be initialized to zero.
Definition: buffer.c:82
AVBuffer * buffer
Definition: buffer.h:82
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:271
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:243
int coded_height
Definition: avcodec.h:1244
Switching Predicted.
Definition: avutil.h:258
int slice_beta_offset
Definition: h264.h:512
const uint8_t * field_scan8x8_cavlc_q0
Definition: h264.h:494
#define CHROMA422(h)
Definition: h264.h:95
uint32_t(*[6] dequant8_coeff)[64]
Definition: h264.h:407
void av_buffer_pool_uninit(AVBufferPool **ppool)
Mark the pool as being available for freeing.
Definition: buffer.c:230
int qp_thresh
QP threshold to skip loopfilter.
Definition: h264.h:321
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:1775
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:1768
HW acceleration through VDPAU, Picture.data[3] contains a VdpVideoSurface.
Definition: pixfmt.h:190
int8_t * ref_index[2]
Definition: h264.h:280
A reference counted buffer type.
int pixel_shift
0 for 8-bit H264, 1 for high-bit-depth H264
Definition: h264.h:318
int mmco_reset
MMCO_RESET set this 1.
Definition: h264.h:285
static const uint8_t rem6[QP_MAX_NUM+1]
Definition: h264_slice.c:47
int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb, int first_slice)
Definition: h264_refs.c:745
H264Picture * cur_pic_ptr
Definition: h264.h:315
const uint8_t ff_zigzag_direct[64]
Definition: mathtables.c:115
int16_t mb_padding[256 *2]
as mb is addressed by scantable[i] and scantable is uint8_t we can either check that i is not too lar...
Definition: h264.h:462
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:240
#define IS_INTER(a)
Definition: mpegutils.h:75
unsigned int sps_id
Definition: h264.h:220
#define TRANSPOSE(x)
int log2_max_poc_lsb
log2_max_pic_order_cnt_lsb_minus4
Definition: h264.h:164
int ff_h264_decode_slice_header(H264Context *h, H264Context *h0)
Decode a slice header.
Definition: h264_slice.c:1189
HW decoding through DXVA2, Picture.data[3] contains a LPDIRECT3DSURFACE9 pointer. ...
Definition: pixfmt.h:138
void ff_h264_draw_horiz_band(H264Context *h, int y, int height)
Definition: h264.c:80
static int alloc_picture(H264Context *h, H264Picture *pic)
Definition: h264_slice.c:244
int block_offset[2 *(16 *3)]
block_offset[ 0..23] for frame macroblocks block_offset[24..47] for field macroblocks ...
Definition: h264.h:392
uint32_t time_scale
Definition: h264.h:193
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:283
int transform_8x8_mode
transform_8x8_mode_flag
Definition: h264.h:234
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:244
uint8_t zigzag_scan[16]
Definition: h264.h:483
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
static void release_unused_pictures(H264Context *h, int remove_current)
Definition: h264_slice.c:183
void ff_h264_filter_mb_fast(H264Context *h, int mb_x, int mb_y, uint8_t *img_y, uint8_t *img_cb, uint8_t *img_cr, unsigned int linesize, unsigned int uvlinesize)
#define LBOT
Definition: h264.h:75
#define AV_ZERO128(d)
Definition: intreadwrite.h:542
the normal 219*2^(n-8) "MPEG" YUV ranges
Definition: pixfmt.h:364
int height
Definition: gxfenc.c:72
#define copy_fields(to, from, start_field, end_field)
Definition: h264_slice.c:466
hardware decoding through VDA
Definition: pixfmt.h:162
discard all non reference
Definition: avcodec.h:565
int is_complex
Definition: h264.h:507
AVBufferPool * qscale_table_pool
Definition: h264.h:703
H264Picture * next_output_pic
Definition: h264.h:568
int slice_context_count
Definition: h264.h:603
int mb_height
pic_height_in_map_units_minus1 + 1
Definition: h264.h:172
AVBufferPool * motion_val_pool
Definition: h264.h:705
uint8_t * rbsp_buffer[2]
Definition: h264.h:519
int qscale
Definition: h264.h:328
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
#define tprintf(p,...)
Definition: get_bits.h:626
MECmpContext mecc
Definition: h264.h:305
common internal api header.
AVBufferPool * av_buffer_pool_init(int size, AVBufferRef *(*alloc)(int size))
Allocate and initialize a buffer pool.
Definition: buffer.c:197
#define AV_COPY128(d, s)
Definition: intreadwrite.h:514
#define CODEC_FLAG_GRAY
Only decode/encode grayscale.
Definition: avcodec.h:637
ptrdiff_t mb_linesize
may be equal to s->linesize or s->linesize * 2, for mbaff
Definition: h264.h:398
#define MAX_SLICES
Definition: dxva2_mpeg2.c:27
int ff_h264_field_end(H264Context *h, int in_setup)
Definition: h264_picture.c:147
int log2_max_frame_num
log2_max_frame_num_minus4 + 4
Definition: h264.h:162
H.264 / AVC / MPEG4 part10 motion vector predicion.
Bi-dir predicted.
Definition: avutil.h:255
FF_ENABLE_DEPRECATION_WARNINGS int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:1625
int ff_h264_context_init(H264Context *h)
Init context Allocate buffers which are not shared amongst multiple threads.
Definition: h264.c:469
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV444P and setting color_...
Definition: pixfmt.h:79
enum AVDiscard skip_loop_filter
Definition: avcodec.h:2729
static int h264_slice_header_init(H264Context *h, int reinit)
Definition: h264_slice.c:1079
int den
denominator
Definition: rational.h:45
int chroma_qp[2]
Definition: h264.h:319
int bit_depth_luma
bit_depth_luma_minus8 + 8
Definition: h264.h:209
static const uint8_t div6[QP_MAX_NUM+1]
Definition: h264_slice.c:53
#define IS_INTRA(x, y)
void * priv_data
Definition: avcodec.h:1092
#define PICT_FRAME
Definition: mpegutils.h:35
int prev_poc_lsb
poc_lsb of the last reference pic for POC type 0
Definition: h264.h:546
int ff_h264_execute_decode_slices(H264Context *h, unsigned context_count)
Call decode_slice() for each context.
Definition: h264_slice.c:2368
void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size)
Definition: cabac.c:109
int(* execute)(struct AVCodecContext *c, int(*func)(struct AVCodecContext *c2, void *arg), void *arg2, int *ret, int count, int size)
The codec may call this to execute several independent things.
Definition: avcodec.h:2596
#define FRAME_MBAFF(h)
Definition: h264.h:71
static void er_add_slice(H264Context *h, int startx, int starty, int endx, int endy, int status)
Definition: h264_slice.c:2193
uint8_t non_zero_count_cache[15 *8]
non zero coeff count cache.
Definition: h264.h:371
int frame_priv_data_size
Size of per-frame hardware accelerator private data.
Definition: avcodec.h:3005
uint8_t(*[2] top_borders)[(16 *3)*2]
Definition: h264.h:365
#define FF_BUG_TRUNCATED
Definition: avcodec.h:2343
H264Picture cur_pic
Definition: h264.h:316
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:191
#define AV_ZERO32(d)
Definition: intreadwrite.h:534
int mb_width
Definition: h264.h:502
enum AVPictureType pict_type
Definition: h264.h:611
static int find_unused_picture(H264Context *h)
Definition: h264_slice.c:309
int current_slice
current slice number, used to initalize slice_num of each thread/context
Definition: h264.h:593
static const uint8_t * align_get_bits(GetBitContext *s)
Definition: get_bits.h:416
int mb_width
pic_width_in_mbs_minus1 + 1
Definition: h264.h:171
int flags2
CODEC_FLAG2_*.
Definition: avcodec.h:1151
uint32_t * mb2b_xy
Definition: h264.h:394
int slice_type_fixed
Definition: h264.h:413
AVBufferRef * ref_index_buf[2]
Definition: h264.h:279
int delta_poc_bottom
Definition: h264.h:542
const uint8_t * field_scan_q0
Definition: h264.h:492
static int alloc_scratch_buffers(H264Context *h, int linesize)
Definition: h264_slice.c:196
int ff_h264_fill_default_ref_list(H264Context *h)
Fill the default_ref_list.
Definition: h264_refs.c:119
H264DSPContext h264dsp
Definition: h264.h:307
void ff_er_frame_start(ERContext *s)
int height
Definition: frame.h:174
uint8_t field_scan8x8[64]
Definition: h264.h:487
#define av_always_inline
Definition: attributes.h:40
int chroma_weight_flag[2]
7.4.3.2 chroma_weight_lX_flag
Definition: h264.h:692
int8_t * intra4x4_pred_mode
Definition: h264.h:359
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
Definition: buffer.c:285
static int decode_slice(struct AVCodecContext *avctx, void *arg)
Definition: h264_slice.c:2204
int deblocking_filter
disable_deblocking_filter_idc with 1 <-> 0
Definition: h264.h:510
#define LIST_NOT_USED
Definition: h264.h:380
static enum AVPixelFormat get_pixel_format(H264Context *h)
Definition: h264_slice.c:979
uint8_t(* non_zero_count)[48]
Definition: h264.h:373
unsigned int crop_bottom
frame_cropping_rect_bottom_offset
Definition: h264.h:182
exp golomb vlc stuff
int slice_num
Definition: h264.h:409
AVPixelFormat
Pixel format.
Definition: pixfmt.h:63
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
Definition: avcodec.h:850
int droppable
Definition: h264.h:329
int level_idc
Definition: h264.h:159
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:205
int nal_ref_idc
Definition: h264.h:517
uint8_t field_scan[16]
Definition: h264.h:486
for(j=16;j >0;--j)
void ff_h264_hl_decode_mb(H264Context *h)
Definition: h264_mb.c:804
#define FFMAX3(a, b, c)
Definition: common.h:56
int b_stride
Definition: h264.h:396
Predicted.
Definition: avutil.h:254
unsigned int rbsp_buffer_size[2]
Definition: h264.h:520
Context Adaptive Binary Arithmetic Coder.
int8_t ref_cache[2][5 *8]
Definition: h264.h:379
int mb_mbaff
mb_aff_frame && mb_field_decoding_flag
Definition: h264.h:418
int short_ref_count
number of actual short term references
Definition: h264.h:580
enum AVColorSpace colorspace
Definition: h264.h:190