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