FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
h264_ps.c
Go to the documentation of this file.
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... parameter set decoding
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * H.264 / AVC / MPEG-4 part10 parameter set decoding.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27 
28 #include <inttypes.h>
29 
30 #include "libavutil/imgutils.h"
31 #include "internal.h"
32 #include "mathops.h"
33 #include "avcodec.h"
34 #include "h264.h"
35 #include "h264data.h"
36 #include "golomb.h"
37 
38 #define MAX_LOG2_MAX_FRAME_NUM (12 + 4)
39 #define MIN_LOG2_MAX_FRAME_NUM 4
40 
41 static const uint8_t default_scaling4[2][16] = {
42  { 6, 13, 20, 28, 13, 20, 28, 32,
43  20, 28, 32, 37, 28, 32, 37, 42 },
44  { 10, 14, 20, 24, 14, 20, 24, 27,
45  20, 24, 27, 30, 24, 27, 30, 34 }
46 };
47 
48 static const uint8_t default_scaling8[2][64] = {
49  { 6, 10, 13, 16, 18, 23, 25, 27,
50  10, 11, 16, 18, 23, 25, 27, 29,
51  13, 16, 18, 23, 25, 27, 29, 31,
52  16, 18, 23, 25, 27, 29, 31, 33,
53  18, 23, 25, 27, 29, 31, 33, 36,
54  23, 25, 27, 29, 31, 33, 36, 38,
55  25, 27, 29, 31, 33, 36, 38, 40,
56  27, 29, 31, 33, 36, 38, 40, 42 },
57  { 9, 13, 15, 17, 19, 21, 22, 24,
58  13, 13, 17, 19, 21, 22, 24, 25,
59  15, 17, 19, 21, 22, 24, 25, 27,
60  17, 19, 21, 22, 24, 25, 27, 28,
61  19, 21, 22, 24, 25, 27, 28, 30,
62  21, 22, 24, 25, 27, 28, 30, 32,
63  22, 24, 25, 27, 28, 30, 32, 33,
64  24, 25, 27, 28, 30, 32, 33, 35 }
65 };
66 
67 /* maximum number of MBs in the DPB for a given level */
68 static const int level_max_dpb_mbs[][2] = {
69  { 10, 396 },
70  { 11, 900 },
71  { 12, 2376 },
72  { 13, 2376 },
73  { 20, 2376 },
74  { 21, 4752 },
75  { 22, 8100 },
76  { 30, 8100 },
77  { 31, 18000 },
78  { 32, 20480 },
79  { 40, 32768 },
80  { 41, 32768 },
81  { 42, 34816 },
82  { 50, 110400 },
83  { 51, 184320 },
84  { 52, 184320 },
85 };
86 
87 static void remove_pps(H264ParamSets *s, int id)
88 {
89  av_buffer_unref(&s->pps_list[id]);
90 }
91 
92 static void remove_sps(H264ParamSets *s, int id)
93 {
94 #if 0
95  int i;
96  if (s->sps_list[id]) {
97  /* drop all PPS that depend on this SPS */
98  for (i = 0; i < FF_ARRAY_ELEMS(s->pps_list); i++)
99  if (s->pps_list[i] && ((PPS*)s->pps_list[i]->data)->sps_id == id)
100  remove_pps(s, i);
101  }
102 #endif
103  av_buffer_unref(&s->sps_list[id]);
104 }
105 
106 static inline int decode_hrd_parameters(GetBitContext *gb, AVCodecContext *avctx,
107  SPS *sps)
108 {
109  int cpb_count, i;
110  cpb_count = get_ue_golomb_31(gb) + 1;
111 
112  if (cpb_count > 32U) {
113  av_log(avctx, AV_LOG_ERROR, "cpb_count %d invalid\n", cpb_count);
114  return AVERROR_INVALIDDATA;
115  }
116 
117  get_bits(gb, 4); /* bit_rate_scale */
118  get_bits(gb, 4); /* cpb_size_scale */
119  for (i = 0; i < cpb_count; i++) {
120  get_ue_golomb_long(gb); /* bit_rate_value_minus1 */
121  get_ue_golomb_long(gb); /* cpb_size_value_minus1 */
122  get_bits1(gb); /* cbr_flag */
123  }
124  sps->initial_cpb_removal_delay_length = get_bits(gb, 5) + 1;
125  sps->cpb_removal_delay_length = get_bits(gb, 5) + 1;
126  sps->dpb_output_delay_length = get_bits(gb, 5) + 1;
127  sps->time_offset_length = get_bits(gb, 5);
128  sps->cpb_cnt = cpb_count;
129  return 0;
130 }
131 
132 static inline int decode_vui_parameters(GetBitContext *gb, AVCodecContext *avctx,
133  SPS *sps)
134 {
135  int aspect_ratio_info_present_flag;
136  unsigned int aspect_ratio_idc;
137 
138  aspect_ratio_info_present_flag = get_bits1(gb);
139 
140  if (aspect_ratio_info_present_flag) {
141  aspect_ratio_idc = get_bits(gb, 8);
142  if (aspect_ratio_idc == EXTENDED_SAR) {
143  sps->sar.num = get_bits(gb, 16);
144  sps->sar.den = get_bits(gb, 16);
145  } else if (aspect_ratio_idc < FF_ARRAY_ELEMS(ff_h264_pixel_aspect)) {
146  sps->sar = ff_h264_pixel_aspect[aspect_ratio_idc];
147  } else {
148  av_log(avctx, AV_LOG_ERROR, "illegal aspect ratio\n");
149  return AVERROR_INVALIDDATA;
150  }
151  } else {
152  sps->sar.num =
153  sps->sar.den = 0;
154  }
155 
156  if (get_bits1(gb)) /* overscan_info_present_flag */
157  get_bits1(gb); /* overscan_appropriate_flag */
158 
161  get_bits(gb, 3); /* video_format */
162  sps->full_range = get_bits1(gb); /* video_full_range_flag */
163 
166  sps->color_primaries = get_bits(gb, 8); /* colour_primaries */
167  sps->color_trc = get_bits(gb, 8); /* transfer_characteristics */
168  sps->colorspace = get_bits(gb, 8); /* matrix_coefficients */
169  if (sps->color_primaries >= AVCOL_PRI_NB)
171  if (sps->color_trc >= AVCOL_TRC_NB)
173  if (sps->colorspace >= AVCOL_SPC_NB)
175  }
176  }
177 
178  /* chroma_location_info_present_flag */
179  if (get_bits1(gb)) {
180  /* chroma_sample_location_type_top_field */
181  avctx->chroma_sample_location = get_ue_golomb(gb) + 1;
182  get_ue_golomb(gb); /* chroma_sample_location_type_bottom_field */
183  }
184 
185  if (show_bits1(gb) && get_bits_left(gb) < 10) {
186  av_log(avctx, AV_LOG_WARNING, "Truncated VUI\n");
187  return 0;
188  }
189 
191  if (sps->timing_info_present_flag) {
192  unsigned num_units_in_tick = get_bits_long(gb, 32);
193  unsigned time_scale = get_bits_long(gb, 32);
194  if (!num_units_in_tick || !time_scale) {
195  av_log(avctx, AV_LOG_ERROR,
196  "time_scale/num_units_in_tick invalid or unsupported (%u/%u)\n",
197  time_scale, num_units_in_tick);
198  sps->timing_info_present_flag = 0;
199  } else {
200  sps->num_units_in_tick = num_units_in_tick;
201  sps->time_scale = time_scale;
202  }
203  sps->fixed_frame_rate_flag = get_bits1(gb);
204  }
205 
208  if (decode_hrd_parameters(gb, avctx, sps) < 0)
209  return AVERROR_INVALIDDATA;
212  if (decode_hrd_parameters(gb, avctx, sps) < 0)
213  return AVERROR_INVALIDDATA;
216  get_bits1(gb); /* low_delay_hrd_flag */
218  if (!get_bits_left(gb))
219  return 0;
221  if (sps->bitstream_restriction_flag) {
222  get_bits1(gb); /* motion_vectors_over_pic_boundaries_flag */
223  get_ue_golomb(gb); /* max_bytes_per_pic_denom */
224  get_ue_golomb(gb); /* max_bits_per_mb_denom */
225  get_ue_golomb(gb); /* log2_max_mv_length_horizontal */
226  get_ue_golomb(gb); /* log2_max_mv_length_vertical */
228  get_ue_golomb(gb); /*max_dec_frame_buffering*/
229 
230  if (get_bits_left(gb) < 0) {
231  sps->num_reorder_frames = 0;
233  }
234 
235  if (sps->num_reorder_frames > 16U
236  /* max_dec_frame_buffering || max_dec_frame_buffering > 16 */) {
237  av_log(avctx, AV_LOG_ERROR,
238  "Clipping illegal num_reorder_frames %d\n",
239  sps->num_reorder_frames);
240  sps->num_reorder_frames = 16;
241  return AVERROR_INVALIDDATA;
242  }
243  }
244 
245  return 0;
246 }
247 
248 static void decode_scaling_list(GetBitContext *gb, uint8_t *factors, int size,
249  const uint8_t *jvt_list,
250  const uint8_t *fallback_list)
251 {
252  int i, last = 8, next = 8;
253  const uint8_t *scan = size == 16 ? ff_zigzag_scan : ff_zigzag_direct;
254  if (!get_bits1(gb)) /* matrix not written, we use the predicted one */
255  memcpy(factors, fallback_list, size * sizeof(uint8_t));
256  else
257  for (i = 0; i < size; i++) {
258  if (next)
259  next = (last + get_se_golomb(gb)) & 0xff;
260  if (!i && !next) { /* matrix not written, we use the preset one */
261  memcpy(factors, jvt_list, size * sizeof(uint8_t));
262  break;
263  }
264  last = factors[scan[i]] = next ? next : last;
265  }
266 }
267 
269  PPS *pps, int is_sps,
270  uint8_t(*scaling_matrix4)[16],
271  uint8_t(*scaling_matrix8)[64])
272 {
273  int fallback_sps = !is_sps && sps->scaling_matrix_present;
274  const uint8_t *fallback[4] = {
275  fallback_sps ? sps->scaling_matrix4[0] : default_scaling4[0],
276  fallback_sps ? sps->scaling_matrix4[3] : default_scaling4[1],
277  fallback_sps ? sps->scaling_matrix8[0] : default_scaling8[0],
278  fallback_sps ? sps->scaling_matrix8[3] : default_scaling8[1]
279  };
280  if (get_bits1(gb)) {
281  sps->scaling_matrix_present |= is_sps;
282  decode_scaling_list(gb, scaling_matrix4[0], 16, default_scaling4[0], fallback[0]); // Intra, Y
283  decode_scaling_list(gb, scaling_matrix4[1], 16, default_scaling4[0], scaling_matrix4[0]); // Intra, Cr
284  decode_scaling_list(gb, scaling_matrix4[2], 16, default_scaling4[0], scaling_matrix4[1]); // Intra, Cb
285  decode_scaling_list(gb, scaling_matrix4[3], 16, default_scaling4[1], fallback[1]); // Inter, Y
286  decode_scaling_list(gb, scaling_matrix4[4], 16, default_scaling4[1], scaling_matrix4[3]); // Inter, Cr
287  decode_scaling_list(gb, scaling_matrix4[5], 16, default_scaling4[1], scaling_matrix4[4]); // Inter, Cb
288  if (is_sps || pps->transform_8x8_mode) {
289  decode_scaling_list(gb, scaling_matrix8[0], 64, default_scaling8[0], fallback[2]); // Intra, Y
290  decode_scaling_list(gb, scaling_matrix8[3], 64, default_scaling8[1], fallback[3]); // Inter, Y
291  if (sps->chroma_format_idc == 3) {
292  decode_scaling_list(gb, scaling_matrix8[1], 64, default_scaling8[0], scaling_matrix8[0]); // Intra, Cr
293  decode_scaling_list(gb, scaling_matrix8[4], 64, default_scaling8[1], scaling_matrix8[3]); // Inter, Cr
294  decode_scaling_list(gb, scaling_matrix8[2], 64, default_scaling8[0], scaling_matrix8[1]); // Intra, Cb
295  decode_scaling_list(gb, scaling_matrix8[5], 64, default_scaling8[1], scaling_matrix8[4]); // Inter, Cb
296  }
297  }
298  }
299 }
300 
302 {
303  int i;
304 
305  for (i = 0; i < MAX_SPS_COUNT; i++)
306  av_buffer_unref(&ps->sps_list[i]);
307 
308  for (i = 0; i < MAX_PPS_COUNT; i++)
309  av_buffer_unref(&ps->pps_list[i]);
310 
311  av_buffer_unref(&ps->sps_ref);
312  av_buffer_unref(&ps->pps_ref);
313 
314  ps->pps = NULL;
315  ps->sps = NULL;
316 }
317 
319  H264ParamSets *ps, int ignore_truncation)
320 {
321  AVBufferRef *sps_buf;
322  int profile_idc, level_idc, constraint_set_flags = 0;
323  unsigned int sps_id;
324  int i, log2_max_frame_num_minus4;
325  SPS *sps;
326 
327  sps_buf = av_buffer_allocz(sizeof(*sps));
328  if (!sps_buf)
329  return AVERROR(ENOMEM);
330  sps = (SPS*)sps_buf->data;
331 
332  sps->data_size = gb->buffer_end - gb->buffer;
333  if (sps->data_size > sizeof(sps->data)) {
334  av_log(avctx, AV_LOG_WARNING, "Truncating likely oversized SPS\n");
335  sps->data_size = sizeof(sps->data);
336  }
337  memcpy(sps->data, gb->buffer, sps->data_size);
338 
339  profile_idc = get_bits(gb, 8);
340  constraint_set_flags |= get_bits1(gb) << 0; // constraint_set0_flag
341  constraint_set_flags |= get_bits1(gb) << 1; // constraint_set1_flag
342  constraint_set_flags |= get_bits1(gb) << 2; // constraint_set2_flag
343  constraint_set_flags |= get_bits1(gb) << 3; // constraint_set3_flag
344  constraint_set_flags |= get_bits1(gb) << 4; // constraint_set4_flag
345  constraint_set_flags |= get_bits1(gb) << 5; // constraint_set5_flag
346  skip_bits(gb, 2); // reserved_zero_2bits
347  level_idc = get_bits(gb, 8);
348  sps_id = get_ue_golomb_31(gb);
349 
350  if (sps_id >= MAX_SPS_COUNT) {
351  av_log(avctx, AV_LOG_ERROR, "sps_id %u out of range\n", sps_id);
352  goto fail;
353  }
354 
355  sps->sps_id = sps_id;
356  sps->time_offset_length = 24;
357  sps->profile_idc = profile_idc;
358  sps->constraint_set_flags = constraint_set_flags;
359  sps->level_idc = level_idc;
360  sps->full_range = -1;
361 
362  memset(sps->scaling_matrix4, 16, sizeof(sps->scaling_matrix4));
363  memset(sps->scaling_matrix8, 16, sizeof(sps->scaling_matrix8));
364  sps->scaling_matrix_present = 0;
365  sps->colorspace = 2; //AVCOL_SPC_UNSPECIFIED
366 
367  if (sps->profile_idc == 100 || // High profile
368  sps->profile_idc == 110 || // High10 profile
369  sps->profile_idc == 122 || // High422 profile
370  sps->profile_idc == 244 || // High444 Predictive profile
371  sps->profile_idc == 44 || // Cavlc444 profile
372  sps->profile_idc == 83 || // Scalable Constrained High profile (SVC)
373  sps->profile_idc == 86 || // Scalable High Intra profile (SVC)
374  sps->profile_idc == 118 || // Stereo High profile (MVC)
375  sps->profile_idc == 128 || // Multiview High profile (MVC)
376  sps->profile_idc == 138 || // Multiview Depth High profile (MVCD)
377  sps->profile_idc == 144) { // old High444 profile
379  if (sps->chroma_format_idc > 3U) {
380  avpriv_request_sample(avctx, "chroma_format_idc %u",
381  sps->chroma_format_idc);
382  goto fail;
383  } else if (sps->chroma_format_idc == 3) {
386  av_log(avctx, AV_LOG_ERROR, "separate color planes are not supported\n");
387  goto fail;
388  }
389  }
390  sps->bit_depth_luma = get_ue_golomb(gb) + 8;
391  sps->bit_depth_chroma = get_ue_golomb(gb) + 8;
392  if (sps->bit_depth_chroma != sps->bit_depth_luma) {
393  avpriv_request_sample(avctx,
394  "Different chroma and luma bit depth");
395  goto fail;
396  }
397  if (sps->bit_depth_luma < 8 || sps->bit_depth_luma > 14 ||
398  sps->bit_depth_chroma < 8 || sps->bit_depth_chroma > 14) {
399  av_log(avctx, AV_LOG_ERROR, "illegal bit depth value (%d, %d)\n",
400  sps->bit_depth_luma, sps->bit_depth_chroma);
401  goto fail;
402  }
403  sps->transform_bypass = get_bits1(gb);
404  decode_scaling_matrices(gb, sps, NULL, 1,
405  sps->scaling_matrix4, sps->scaling_matrix8);
406  } else {
407  sps->chroma_format_idc = 1;
408  sps->bit_depth_luma = 8;
409  sps->bit_depth_chroma = 8;
410  }
411 
412  log2_max_frame_num_minus4 = get_ue_golomb(gb);
413  if (log2_max_frame_num_minus4 < MIN_LOG2_MAX_FRAME_NUM - 4 ||
414  log2_max_frame_num_minus4 > MAX_LOG2_MAX_FRAME_NUM - 4) {
415  av_log(avctx, AV_LOG_ERROR,
416  "log2_max_frame_num_minus4 out of range (0-12): %d\n",
417  log2_max_frame_num_minus4);
418  goto fail;
419  }
420  sps->log2_max_frame_num = log2_max_frame_num_minus4 + 4;
421 
422  sps->poc_type = get_ue_golomb_31(gb);
423 
424  if (sps->poc_type == 0) { // FIXME #define
425  unsigned t = get_ue_golomb(gb);
426  if (t>12) {
427  av_log(avctx, AV_LOG_ERROR, "log2_max_poc_lsb (%d) is out of range\n", t);
428  goto fail;
429  }
430  sps->log2_max_poc_lsb = t + 4;
431  } else if (sps->poc_type == 1) { // FIXME #define
435  sps->poc_cycle_length = get_ue_golomb(gb);
436 
437  if ((unsigned)sps->poc_cycle_length >=
439  av_log(avctx, AV_LOG_ERROR,
440  "poc_cycle_length overflow %d\n", sps->poc_cycle_length);
441  goto fail;
442  }
443 
444  for (i = 0; i < sps->poc_cycle_length; i++)
445  sps->offset_for_ref_frame[i] = get_se_golomb(gb);
446  } else if (sps->poc_type != 2) {
447  av_log(avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type);
448  goto fail;
449  }
450 
452  if (avctx->codec_tag == MKTAG('S', 'M', 'V', '2'))
453  sps->ref_frame_count = FFMAX(2, sps->ref_frame_count);
454  if (sps->ref_frame_count > H264_MAX_PICTURE_COUNT - 2 ||
455  sps->ref_frame_count > 16U) {
456  av_log(avctx, AV_LOG_ERROR,
457  "too many reference frames %d\n", sps->ref_frame_count);
458  goto fail;
459  }
461  sps->mb_width = get_ue_golomb(gb) + 1;
462  sps->mb_height = get_ue_golomb(gb) + 1;
463  if ((unsigned)sps->mb_width >= INT_MAX / 16 ||
464  (unsigned)sps->mb_height >= INT_MAX / 16 ||
465  av_image_check_size(16 * sps->mb_width,
466  16 * sps->mb_height, 0, avctx)) {
467  av_log(avctx, AV_LOG_ERROR, "mb_width/height overflow\n");
468  goto fail;
469  }
470 
471  sps->frame_mbs_only_flag = get_bits1(gb);
472  if (!sps->frame_mbs_only_flag)
473  sps->mb_aff = get_bits1(gb);
474  else
475  sps->mb_aff = 0;
476 
478 
479 #ifndef ALLOW_INTERLACE
480  if (sps->mb_aff)
481  av_log(avctx, AV_LOG_ERROR,
482  "MBAFF support not included; enable it at compile-time.\n");
483 #endif
484  sps->crop = get_bits1(gb);
485  if (sps->crop) {
486  unsigned int crop_left = get_ue_golomb(gb);
487  unsigned int crop_right = get_ue_golomb(gb);
488  unsigned int crop_top = get_ue_golomb(gb);
489  unsigned int crop_bottom = get_ue_golomb(gb);
490  int width = 16 * sps->mb_width;
491  int height = 16 * sps->mb_height * (2 - sps->frame_mbs_only_flag);
492 
493  if (avctx->flags2 & AV_CODEC_FLAG2_IGNORE_CROP) {
494  av_log(avctx, AV_LOG_DEBUG, "discarding sps cropping, original "
495  "values are l:%d r:%d t:%d b:%d\n",
496  crop_left, crop_right, crop_top, crop_bottom);
497 
498  sps->crop_left =
499  sps->crop_right =
500  sps->crop_top =
501  sps->crop_bottom = 0;
502  } else {
503  int vsub = (sps->chroma_format_idc == 1) ? 1 : 0;
504  int hsub = (sps->chroma_format_idc == 1 ||
505  sps->chroma_format_idc == 2) ? 1 : 0;
506  int step_x = 1 << hsub;
507  int step_y = (2 - sps->frame_mbs_only_flag) << vsub;
508 
509  if (crop_left & (0x1F >> (sps->bit_depth_luma > 8)) &&
510  !(avctx->flags & AV_CODEC_FLAG_UNALIGNED)) {
511  crop_left &= ~(0x1F >> (sps->bit_depth_luma > 8));
512  av_log(avctx, AV_LOG_WARNING,
513  "Reducing left cropping to %d "
514  "chroma samples to preserve alignment.\n",
515  crop_left);
516  }
517 
518  if (crop_left > (unsigned)INT_MAX / 4 / step_x ||
519  crop_right > (unsigned)INT_MAX / 4 / step_x ||
520  crop_top > (unsigned)INT_MAX / 4 / step_y ||
521  crop_bottom> (unsigned)INT_MAX / 4 / step_y ||
522  (crop_left + crop_right ) * step_x >= width ||
523  (crop_top + crop_bottom) * step_y >= height
524  ) {
525  av_log(avctx, AV_LOG_ERROR, "crop values invalid %d %d %d %d / %d %d\n", crop_left, crop_right, crop_top, crop_bottom, width, height);
526  goto fail;
527  }
528 
529  sps->crop_left = crop_left * step_x;
530  sps->crop_right = crop_right * step_x;
531  sps->crop_top = crop_top * step_y;
532  sps->crop_bottom = crop_bottom * step_y;
533  }
534  } else {
535  sps->crop_left =
536  sps->crop_right =
537  sps->crop_top =
538  sps->crop_bottom =
539  sps->crop = 0;
540  }
541 
543  if (sps->vui_parameters_present_flag) {
544  int ret = decode_vui_parameters(gb, avctx, sps);
545  if (ret < 0)
546  goto fail;
547  }
548 
549  if (get_bits_left(gb) < 0) {
550  av_log(avctx, ignore_truncation ? AV_LOG_WARNING : AV_LOG_ERROR,
551  "Overread %s by %d bits\n", sps->vui_parameters_present_flag ? "VUI" : "SPS", -get_bits_left(gb));
552  if (!ignore_truncation)
553  goto fail;
554  }
555 
556  /* if the maximum delay is not stored in the SPS, derive it based on the
557  * level */
558  if (!sps->bitstream_restriction_flag) {
560  for (i = 0; i < FF_ARRAY_ELEMS(level_max_dpb_mbs); i++) {
561  if (level_max_dpb_mbs[i][0] == sps->level_idc) {
562  sps->num_reorder_frames = FFMIN(level_max_dpb_mbs[i][1] / (sps->mb_width * sps->mb_height),
563  sps->num_reorder_frames);
564  break;
565  }
566  }
567  }
568 
569  if (!sps->sar.den)
570  sps->sar.den = 1;
571 
572  if (avctx->debug & FF_DEBUG_PICT_INFO) {
573  static const char csp[4][5] = { "Gray", "420", "422", "444" };
574  av_log(avctx, AV_LOG_DEBUG,
575  "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%u/%u/%u/%u %s %s %"PRId32"/%"PRId32" b%d reo:%d\n",
576  sps_id, sps->profile_idc, sps->level_idc,
577  sps->poc_type,
578  sps->ref_frame_count,
579  sps->mb_width, sps->mb_height,
580  sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"),
581  sps->direct_8x8_inference_flag ? "8B8" : "",
582  sps->crop_left, sps->crop_right,
583  sps->crop_top, sps->crop_bottom,
584  sps->vui_parameters_present_flag ? "VUI" : "",
585  csp[sps->chroma_format_idc],
587  sps->timing_info_present_flag ? sps->time_scale : 0,
588  sps->bit_depth_luma,
590  );
591  }
592 
593  /* check if this is a repeat of an already parsed SPS, then keep the
594  * original one.
595  * otherwise drop all PPSes that depend on it */
596  if (ps->sps_list[sps_id] &&
597  !memcmp(ps->sps_list[sps_id]->data, sps_buf->data, sps_buf->size)) {
598  av_buffer_unref(&sps_buf);
599  } else {
600  remove_sps(ps, sps_id);
601  ps->sps_list[sps_id] = sps_buf;
602  }
603 
604  return 0;
605 
606 fail:
607  av_buffer_unref(&sps_buf);
608  return AVERROR_INVALIDDATA;
609 }
610 
611 static void init_dequant8_coeff_table(PPS *pps, const SPS *sps)
612 {
613  int i, j, q, x;
614  const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8);
615 
616  for (i = 0; i < 6; i++) {
617  pps->dequant8_coeff[i] = pps->dequant8_buffer[i];
618  for (j = 0; j < i; j++)
619  if (!memcmp(pps->scaling_matrix8[j], pps->scaling_matrix8[i],
620  64 * sizeof(uint8_t))) {
621  pps->dequant8_coeff[i] = pps->dequant8_buffer[j];
622  break;
623  }
624  if (j < i)
625  continue;
626 
627  for (q = 0; q < max_qp + 1; q++) {
628  int shift = ff_h264_quant_div6[q];
629  int idx = ff_h264_quant_rem6[q];
630  for (x = 0; x < 64; x++)
631  pps->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
632  ((uint32_t)ff_h264_dequant8_coeff_init[idx][ff_h264_dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
633  pps->scaling_matrix8[i][x]) << shift;
634  }
635  }
636 }
637 
638 static void init_dequant4_coeff_table(PPS *pps, const SPS *sps)
639 {
640  int i, j, q, x;
641  const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8);
642  for (i = 0; i < 6; i++) {
643  pps->dequant4_coeff[i] = pps->dequant4_buffer[i];
644  for (j = 0; j < i; j++)
645  if (!memcmp(pps->scaling_matrix4[j], pps->scaling_matrix4[i],
646  16 * sizeof(uint8_t))) {
647  pps->dequant4_coeff[i] = pps->dequant4_buffer[j];
648  break;
649  }
650  if (j < i)
651  continue;
652 
653  for (q = 0; q < max_qp + 1; q++) {
654  int shift = ff_h264_quant_div6[q] + 2;
655  int idx = ff_h264_quant_rem6[q];
656  for (x = 0; x < 16; x++)
657  pps->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
658  ((uint32_t)ff_h264_dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
659  pps->scaling_matrix4[i][x]) << shift;
660  }
661  }
662 }
663 
664 static void init_dequant_tables(PPS *pps, const SPS *sps)
665 {
666  int i, x;
667  init_dequant4_coeff_table(pps, sps);
668  memset(pps->dequant8_coeff, 0, sizeof(pps->dequant8_coeff));
669 
670  if (pps->transform_8x8_mode)
671  init_dequant8_coeff_table(pps, sps);
672  if (sps->transform_bypass) {
673  for (i = 0; i < 6; i++)
674  for (x = 0; x < 16; x++)
675  pps->dequant4_coeff[i][0][x] = 1 << 6;
676  if (pps->transform_8x8_mode)
677  for (i = 0; i < 6; i++)
678  for (x = 0; x < 64; x++)
679  pps->dequant8_coeff[i][0][x] = 1 << 6;
680  }
681 }
682 
683 static void build_qp_table(PPS *pps, int t, int index, const int depth)
684 {
685  int i;
686  const int max_qp = 51 + 6 * (depth - 8);
687  for (i = 0; i < max_qp + 1; i++)
688  pps->chroma_qp_table[t][i] =
689  ff_h264_chroma_qp[depth - 8][av_clip(i + index, 0, max_qp)];
690 }
691 
692 static int more_rbsp_data_in_pps(const SPS *sps, void *logctx)
693 {
694  int profile_idc = sps->profile_idc;
695 
696  if ((profile_idc == 66 || profile_idc == 77 ||
697  profile_idc == 88) && (sps->constraint_set_flags & 7)) {
698  av_log(logctx, AV_LOG_VERBOSE,
699  "Current profile doesn't provide more RBSP data in PPS, skipping\n");
700  return 0;
701  }
702 
703  return 1;
704 }
705 
707  H264ParamSets *ps, int bit_length)
708 {
709  AVBufferRef *pps_buf;
710  SPS *sps;
711  unsigned int pps_id = get_ue_golomb(gb);
712  PPS *pps;
713  int qp_bd_offset;
714  int bits_left;
715  int ret;
716 
717  if (pps_id >= MAX_PPS_COUNT) {
718  av_log(avctx, AV_LOG_ERROR, "pps_id %u out of range\n", pps_id);
719  return AVERROR_INVALIDDATA;
720  }
721 
722  pps_buf = av_buffer_allocz(sizeof(*pps));
723  if (!pps_buf)
724  return AVERROR(ENOMEM);
725  pps = (PPS*)pps_buf->data;
726 
727  pps->data_size = gb->buffer_end - gb->buffer;
728  if (pps->data_size > sizeof(pps->data)) {
729  av_log(avctx, AV_LOG_WARNING, "Truncating likely oversized PPS\n");
730  pps->data_size = sizeof(pps->data);
731  }
732  memcpy(pps->data, gb->buffer, pps->data_size);
733 
734  pps->sps_id = get_ue_golomb_31(gb);
735  if ((unsigned)pps->sps_id >= MAX_SPS_COUNT ||
736  !ps->sps_list[pps->sps_id]) {
737  av_log(avctx, AV_LOG_ERROR, "sps_id %u out of range\n", pps->sps_id);
738  ret = AVERROR_INVALIDDATA;
739  goto fail;
740  }
741  sps = (SPS*)ps->sps_list[pps->sps_id]->data;
742  if (sps->bit_depth_luma > 14) {
743  av_log(avctx, AV_LOG_ERROR,
744  "Invalid luma bit depth=%d\n",
745  sps->bit_depth_luma);
746  ret = AVERROR_INVALIDDATA;
747  goto fail;
748  } else if (sps->bit_depth_luma == 11 || sps->bit_depth_luma == 13) {
749  av_log(avctx, AV_LOG_ERROR,
750  "Unimplemented luma bit depth=%d\n",
751  sps->bit_depth_luma);
752  ret = AVERROR_PATCHWELCOME;
753  goto fail;
754  }
755 
756  pps->cabac = get_bits1(gb);
757  pps->pic_order_present = get_bits1(gb);
758  pps->slice_group_count = get_ue_golomb(gb) + 1;
759  if (pps->slice_group_count > 1) {
761  av_log(avctx, AV_LOG_ERROR, "FMO not supported\n");
762  switch (pps->mb_slice_group_map_type) {
763  case 0:
764 #if 0
765  | for (i = 0; i <= num_slice_groups_minus1; i++) | | |
766  | run_length[i] |1 |ue(v) |
767 #endif
768  break;
769  case 2:
770 #if 0
771  | for (i = 0; i < num_slice_groups_minus1; i++) { | | |
772  | top_left_mb[i] |1 |ue(v) |
773  | bottom_right_mb[i] |1 |ue(v) |
774  | } | | |
775 #endif
776  break;
777  case 3:
778  case 4:
779  case 5:
780 #if 0
781  | slice_group_change_direction_flag |1 |u(1) |
782  | slice_group_change_rate_minus1 |1 |ue(v) |
783 #endif
784  break;
785  case 6:
786 #if 0
787  | slice_group_id_cnt_minus1 |1 |ue(v) |
788  | for (i = 0; i <= slice_group_id_cnt_minus1; i++)| | |
789  | slice_group_id[i] |1 |u(v) |
790 #endif
791  break;
792  }
793  }
794  pps->ref_count[0] = get_ue_golomb(gb) + 1;
795  pps->ref_count[1] = get_ue_golomb(gb) + 1;
796  if (pps->ref_count[0] - 1 > 32 - 1 || pps->ref_count[1] - 1 > 32 - 1) {
797  av_log(avctx, AV_LOG_ERROR, "reference overflow (pps)\n");
798  ret = AVERROR_INVALIDDATA;
799  goto fail;
800  }
801 
802  qp_bd_offset = 6 * (sps->bit_depth_luma - 8);
803 
804  pps->weighted_pred = get_bits1(gb);
805  pps->weighted_bipred_idc = get_bits(gb, 2);
806  pps->init_qp = get_se_golomb(gb) + 26 + qp_bd_offset;
807  pps->init_qs = get_se_golomb(gb) + 26 + qp_bd_offset;
812 
813  pps->transform_8x8_mode = 0;
814  memcpy(pps->scaling_matrix4, sps->scaling_matrix4,
815  sizeof(pps->scaling_matrix4));
816  memcpy(pps->scaling_matrix8, sps->scaling_matrix8,
817  sizeof(pps->scaling_matrix8));
818 
819  bits_left = bit_length - get_bits_count(gb);
820  if (bits_left > 0 && more_rbsp_data_in_pps(sps, avctx)) {
821  pps->transform_8x8_mode = get_bits1(gb);
822  decode_scaling_matrices(gb, sps, pps, 0,
823  pps->scaling_matrix4, pps->scaling_matrix8);
824  // second_chroma_qp_index_offset
826  } else {
828  }
829 
830  build_qp_table(pps, 0, pps->chroma_qp_index_offset[0],
831  sps->bit_depth_luma);
832  build_qp_table(pps, 1, pps->chroma_qp_index_offset[1],
833  sps->bit_depth_luma);
834 
835  init_dequant_tables(pps, sps);
836 
837  if (pps->chroma_qp_index_offset[0] != pps->chroma_qp_index_offset[1])
838  pps->chroma_qp_diff = 1;
839 
840  if (avctx->debug & FF_DEBUG_PICT_INFO) {
841  av_log(avctx, AV_LOG_DEBUG,
842  "pps:%u sps:%u %s slice_groups:%d ref:%u/%u %s qp:%d/%d/%d/%d %s %s %s %s\n",
843  pps_id, pps->sps_id,
844  pps->cabac ? "CABAC" : "CAVLC",
845  pps->slice_group_count,
846  pps->ref_count[0], pps->ref_count[1],
847  pps->weighted_pred ? "weighted" : "",
848  pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset[0], pps->chroma_qp_index_offset[1],
849  pps->deblocking_filter_parameters_present ? "LPAR" : "",
850  pps->constrained_intra_pred ? "CONSTR" : "",
851  pps->redundant_pic_cnt_present ? "REDU" : "",
852  pps->transform_8x8_mode ? "8x8DCT" : "");
853  }
854 
855  remove_pps(ps, pps_id);
856  ps->pps_list[pps_id] = pps_buf;
857 
858  return 0;
859 
860 fail:
861  av_buffer_unref(&pps_buf);
862  return ret;
863 }
int chroma_format_idc
Definition: h264.h:140
int ff_h264_decode_picture_parameter_set(GetBitContext *gb, AVCodecContext *avctx, H264ParamSets *ps, int bit_length)
Decode PPS.
Definition: h264_ps.c:706
static unsigned int show_bits1(GetBitContext *s)
Definition: get_bits.h:319
#define MAX_LOG2_MAX_FRAME_NUM
Definition: h264_ps.c:38
int video_signal_type_present_flag
Definition: h264.h:165
static void remove_pps(H264ParamSets *s, int id)
Definition: h264_ps.c:87
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
static int decode_hrd_parameters(GetBitContext *gb, AVCodecContext *avctx, SPS *sps)
Definition: h264_ps.c:106
static int shift(int a, int b)
Definition: sonic.c:82
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:124
static int get_se_golomb(GetBitContext *gb)
read signed exp golomb code.
Definition: golomb.h:183
enum AVCodecID id
Definition: mxfenc.c:104
#define H264_MAX_PICTURE_COUNT
Definition: h264.h:51
misc image utilities
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:247
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
int weighted_bipred_idc
Definition: h264.h:208
int chroma_qp_index_offset[2]
Definition: h264.h:211
AVBufferRef * sps_list[MAX_SPS_COUNT]
Definition: h264.h:230
int scaling_matrix_present
Definition: h264.h:178
uint8_t scaling_matrix4[6][16]
Definition: h264.h:179
#define MAX_PPS_COUNT
Definition: h264.h:54
Sequence parameter set.
Definition: h264.h:136
int bitstream_restriction_flag
Definition: h264.h:176
unsigned int ref_count[2]
num_ref_idx_l0/1_active_minus1 + 1
Definition: h264.h:206
int num
numerator
Definition: rational.h:44
const uint8_t * buffer
Definition: get_bits.h:56
Picture parameter set.
Definition: h264.h:200
int frame_mbs_only_flag
Definition: h264.h:153
const uint8_t ff_h264_quant_rem6[QP_MAX_NUM+1]
Definition: h264data.c:174
int chroma_qp_diff
Definition: h264.h:219
uint32_t num_units_in_tick
Definition: h264.h:172
int profile_idc
Definition: h264.h:138
unsigned int crop_top
frame_cropping_rect_top_offset
Definition: h264.h:161
int fixed_frame_rate_flag
Definition: h264.h:174
uint8_t scaling_matrix4[6][16]
Definition: h264.h:216
int deblocking_filter_parameters_present
deblocking_filter_parameters_present_flag
Definition: h264.h:212
static const AVRational ff_h264_pixel_aspect[17]
Definition: h264data.h:51
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
const uint8_t ff_h264_dequant4_coeff_init[6][3]
Definition: h264data.c:152
const PPS * pps
Definition: h264.h:236
uint8_t
int full_range
Definition: h264.h:166
unsigned int crop_left
frame_cropping_rect_left_offset
Definition: h264.h:159
int offset_for_non_ref_pic
Definition: h264.h:146
int gaps_in_frame_num_allowed_flag
Definition: h264.h:150
int bit_depth_chroma
bit_depth_chroma_minus8 + 8
Definition: h264.h:190
#define FF_DEBUG_PICT_INFO
Definition: avcodec.h:2889
enum AVColorPrimaries color_primaries
Definition: h264.h:168
#define AV_CODEC_FLAG_UNALIGNED
Allow decoders to produce frames with data planes that are not aligned to CPU requirements (e...
Definition: avcodec.h:826
int cabac
entropy_coding_mode_flag
Definition: h264.h:202
unsigned int crop_right
frame_cropping_rect_right_offset
Definition: h264.h:160
uint32_t(*[6] dequant4_coeff)[16]
Definition: h264.h:225
#define height
int transform_bypass
qpprime_y_zero_transform_bypass_flag
Definition: h264.h:141
uint32_t(*[6] dequant8_coeff)[64]
Definition: h264.h:226
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:199
static const int level_max_dpb_mbs[][2]
Definition: h264_ps.c:68
int redundant_pic_cnt_present
redundant_pic_cnt_present_flag
Definition: h264.h:214
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
#define MAX_DELAYED_PIC_COUNT
Definition: h264.h:58
ptrdiff_t size
Definition: opengl_enc.c:101
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:2392
#define av_log(a,...)
static void decode_scaling_list(GetBitContext *gb, uint8_t *factors, int size, const uint8_t *jvt_list, const uint8_t *fallback_list)
Definition: h264_ps.c:248
#define ue(...)
H.264 / AVC / MPEG-4 part10 codec.
#define U(x)
Definition: vp56_arith.h:37
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:568
int mb_aff
mb_adaptive_frame_field_flag
Definition: h264.h:154
enum AVColorTransferCharacteristic color_trc
Definition: h264.h:169
AVBufferRef * sps_ref
Definition: h264.h:234
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AV_CODEC_FLAG2_IGNORE_CROP
Discard cropping information from SPS.
Definition: avcodec.h:921
static int get_ue_golomb(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to 8190.
Definition: golomb.h:53
int poc_type
pic_order_cnt_type
Definition: h264.h:143
int constrained_intra_pred
constrained_intra_pred_flag
Definition: h264.h:213
int num_reorder_frames
Definition: h264.h:177
#define AVERROR(e)
Definition: error.h:43
int time_offset_length
Definition: h264.h:184
const uint8_t ff_zigzag_scan[16+1]
Definition: mathtables.c:109
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
Not part of ABI.
Definition: pixfmt.h:402
#define EXTENDED_SAR
Definition: h264.h:105
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1744
int weighted_pred
weighted_pred_flag
Definition: h264.h:207
#define MIN_LOG2_MAX_FRAME_NUM
Definition: h264_ps.c:39
int residual_color_transform_flag
residual_colour_transform_flag
Definition: h264.h:191
#define FFMAX(a, b)
Definition: common.h:94
#define fail()
Definition: checkasm.h:81
int delta_pic_order_always_zero_flag
Definition: h264.h:145
int offset_for_top_to_bottom_field
Definition: h264.h:147
int depth
Definition: v4l.c:62
static void remove_sps(H264ParamSets *s, int id)
Definition: h264_ps.c:92
static void init_dequant8_coeff_table(PPS *pps, const SPS *sps)
Definition: h264_ps.c:611
int crop
frame_cropping_flag
Definition: h264.h:156
uint8_t scaling_matrix8[6][64]
Definition: h264.h:217
size_t data_size
Definition: h264.h:194
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition: imgutils.c:251
int ref_frame_count
num_ref_frames
Definition: h264.h:149
int initial_cpb_removal_delay_length
initial_cpb_removal_delay_length_minus1 + 1
Definition: h264.h:186
uint8_t data[4096]
Definition: h264.h:220
#define FFMIN(a, b)
Definition: common.h:96
int poc_cycle_length
num_ref_frames_in_pic_order_cnt_cycle
Definition: h264.h:148
int colour_description_present_flag
Definition: h264.h:167
AVRational sar
Definition: h264.h:164
#define width
#define MAX_SPS_COUNT
Definition: h264.h:53
uint8_t chroma_qp_table[2][QP_MAX_NUM+1]
pre-scaled (with chroma_qp_index_offset) version of qp_table
Definition: h264.h:218
int init_qp
pic_init_qp_minus26 + 26
Definition: h264.h:209
int direct_8x8_inference_flag
Definition: h264.h:155
uint8_t scaling_matrix8[6][64]
Definition: h264.h:180
unsigned int sps_id
Definition: h264.h:137
#define FF_ARRAY_ELEMS(a)
static unsigned get_ue_golomb_long(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to UINT32_MAX-1.
Definition: golomb.h:85
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
int pic_order_present
pic_order_present_flag
Definition: h264.h:203
short offset_for_ref_frame[256]
Definition: h264.h:175
static int more_rbsp_data_in_pps(const SPS *sps, void *logctx)
Definition: h264_ps.c:692
static int decode_vui_parameters(GetBitContext *gb, AVCodecContext *avctx, SPS *sps)
Definition: h264_ps.c:132
int timing_info_present_flag
Definition: h264.h:171
int vcl_hrd_parameters_present_flag
Definition: h264.h:182
Libavcodec external API header.
AVBufferRef * pps_list[MAX_PPS_COUNT]
Definition: h264.h:231
static int get_ue_golomb_31(GetBitContext *gb)
read unsigned exp golomb code, constraint to a max of 31.
Definition: golomb.h:100
int debug
debug
Definition: avcodec.h:2888
main external API structure.
Definition: avcodec.h:1649
const uint8_t ff_h264_chroma_qp[7][QP_MAX_NUM+1]
Definition: h264data.c:203
int dpb_output_delay_length
dpb_output_delay_length_minus1 + 1
Definition: h264.h:188
uint8_t * data
The data buffer.
Definition: buffer.h:89
int vui_parameters_present_flag
Definition: h264.h:163
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1681
static void init_dequant4_coeff_table(PPS *pps, const SPS *sps)
Definition: h264_ps.c:638
AVBufferRef * av_buffer_allocz(int size)
Same as av_buffer_alloc(), except the returned buffer will be initialized to zero.
Definition: buffer.c:82
int constraint_set_flags
constraint_set[0-3]_flag
Definition: h264.h:192
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:299
const uint8_t ff_h264_quant_div6[QP_MAX_NUM+1]
Definition: h264data.c:182
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:292
int index
Definition: gxfenc.c:89
Not part of ABI.
Definition: pixfmt.h:428
const uint8_t ff_zigzag_direct[64]
Definition: mathtables.c:98
#define u(width,...)
unsigned int sps_id
Definition: h264.h:201
int log2_max_poc_lsb
log2_max_pic_order_cnt_lsb_minus4
Definition: h264.h:144
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:332
int size
Size of data in bytes.
Definition: buffer.h:93
uint32_t time_scale
Definition: h264.h:173
int transform_8x8_mode
transform_8x8_mode_flag
Definition: h264.h:215
int pic_struct_present_flag
Definition: h264.h:183
const uint8_t ff_h264_dequant8_coeff_init[6][6]
Definition: h264data.c:165
A reference to a data buffer.
Definition: buffer.h:81
int mb_height
pic_height_in_map_units_minus1 + 1
Definition: h264.h:152
int init_qs
pic_init_qs_minus26 + 26
Definition: h264.h:210
common internal api header.
if(ret< 0)
Definition: vf_mcdeint.c:282
uint8_t data[4096]
Definition: h264.h:193
AVBufferRef * pps_ref
Definition: h264.h:233
int nal_hrd_parameters_present_flag
Definition: h264.h:181
size_t data_size
Definition: h264.h:221
int log2_max_frame_num
log2_max_frame_num_minus4 + 4
Definition: h264.h:142
const uint8_t * buffer_end
Definition: get_bits.h:56
static const uint8_t default_scaling4[2][16]
Definition: h264_ps.c:41
int den
denominator
Definition: rational.h:45
void ff_h264_ps_uninit(H264ParamSets *ps)
Uninit H264 param sets structure.
Definition: h264_ps.c:301
static void decode_scaling_matrices(GetBitContext *gb, SPS *sps, PPS *pps, int is_sps, uint8_t(*scaling_matrix4)[16], uint8_t(*scaling_matrix8)[64])
Definition: h264_ps.c:268
int bit_depth_luma
bit_depth_luma_minus8 + 8
Definition: h264.h:189
int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx, H264ParamSets *ps, int ignore_truncation)
Decode SPS.
Definition: h264_ps.c:318
int mb_width
pic_width_in_mbs_minus1 + 1
Definition: h264.h:151
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:1751
int slice_group_count
num_slice_groups_minus1 + 1
Definition: h264.h:204
int cpb_cnt
See H.264 E.1.2.
Definition: h264.h:185
uint32_t dequant4_buffer[6][QP_MAX_NUM+1][16]
Definition: h264.h:223
SPS * sps
Definition: h264.h:238
static const uint8_t default_scaling8[2][64]
Definition: h264_ps.c:48
uint32_t dequant8_buffer[6][QP_MAX_NUM+1][64]
Definition: h264.h:224
int cpb_removal_delay_length
cpb_removal_delay_length_minus1 + 1
Definition: h264.h:187
static void init_dequant_tables(PPS *pps, const SPS *sps)
Definition: h264_ps.c:664
#define MKTAG(a, b, c, d)
Definition: common.h:342
unsigned int crop_bottom
frame_cropping_rect_bottom_offset
Definition: h264.h:162
exp golomb vlc stuff
int level_idc
Definition: h264.h:139
Not part of ABI.
Definition: pixfmt.h:446
const uint8_t ff_h264_dequant8_coeff_init_scan[16]
Definition: h264data.c:161
static void build_qp_table(PPS *pps, int t, int index, const int depth)
Definition: h264_ps.c:683
int mb_slice_group_map_type
Definition: h264.h:205
enum AVColorSpace colorspace
Definition: h264.h:170