2 * H.26L/H.264/AVC/JVT/14496-10/... parameter set decoding
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * H.264 / AVC / MPEG-4 part10 parameter set decoding.
25 * @author Michael Niedermayer <michaelni@gmx.at>
30 #include "libavutil/imgutils.h"
38 #define MAX_LOG2_MAX_FRAME_NUM (12 + 4)
39 #define MIN_LOG2_MAX_FRAME_NUM 4
41 #define EXTENDED_SAR 255
43 static const uint8_t default_scaling4[2][16] = {
44 { 6, 13, 20, 28, 13, 20, 28, 32,
45 20, 28, 32, 37, 28, 32, 37, 42 },
46 { 10, 14, 20, 24, 14, 20, 24, 27,
47 20, 24, 27, 30, 24, 27, 30, 34 }
50 static const uint8_t default_scaling8[2][64] = {
51 { 6, 10, 13, 16, 18, 23, 25, 27,
52 10, 11, 16, 18, 23, 25, 27, 29,
53 13, 16, 18, 23, 25, 27, 29, 31,
54 16, 18, 23, 25, 27, 29, 31, 33,
55 18, 23, 25, 27, 29, 31, 33, 36,
56 23, 25, 27, 29, 31, 33, 36, 38,
57 25, 27, 29, 31, 33, 36, 38, 40,
58 27, 29, 31, 33, 36, 38, 40, 42 },
59 { 9, 13, 15, 17, 19, 21, 22, 24,
60 13, 13, 17, 19, 21, 22, 24, 25,
61 15, 17, 19, 21, 22, 24, 25, 27,
62 17, 19, 21, 22, 24, 25, 27, 28,
63 19, 21, 22, 24, 25, 27, 28, 30,
64 21, 22, 24, 25, 27, 28, 30, 32,
65 22, 24, 25, 27, 28, 30, 32, 33,
66 24, 25, 27, 28, 30, 32, 33, 35 }
69 /* maximum number of MBs in the DPB for a given level */
70 static const int level_max_dpb_mbs[][2] = {
89 static void remove_pps(H264ParamSets *s, int id)
91 av_buffer_unref(&s->pps_list[id]);
94 static void remove_sps(H264ParamSets *s, int id)
98 if (s->sps_list[id]) {
99 /* drop all PPS that depend on this SPS */
100 for (i = 0; i < FF_ARRAY_ELEMS(s->pps_list); i++)
101 if (s->pps_list[i] && ((PPS*)s->pps_list[i]->data)->sps_id == id)
105 av_buffer_unref(&s->sps_list[id]);
108 static inline int decode_hrd_parameters(GetBitContext *gb, AVCodecContext *avctx,
112 cpb_count = get_ue_golomb_31(gb) + 1;
114 if (cpb_count > 32U) {
115 av_log(avctx, AV_LOG_ERROR, "cpb_count %d invalid\n", cpb_count);
116 return AVERROR_INVALIDDATA;
119 get_bits(gb, 4); /* bit_rate_scale */
120 get_bits(gb, 4); /* cpb_size_scale */
121 for (i = 0; i < cpb_count; i++) {
122 get_ue_golomb_long(gb); /* bit_rate_value_minus1 */
123 get_ue_golomb_long(gb); /* cpb_size_value_minus1 */
124 get_bits1(gb); /* cbr_flag */
126 sps->initial_cpb_removal_delay_length = get_bits(gb, 5) + 1;
127 sps->cpb_removal_delay_length = get_bits(gb, 5) + 1;
128 sps->dpb_output_delay_length = get_bits(gb, 5) + 1;
129 sps->time_offset_length = get_bits(gb, 5);
130 sps->cpb_cnt = cpb_count;
134 static inline int decode_vui_parameters(GetBitContext *gb, AVCodecContext *avctx,
137 int aspect_ratio_info_present_flag;
138 unsigned int aspect_ratio_idc;
140 aspect_ratio_info_present_flag = get_bits1(gb);
142 if (aspect_ratio_info_present_flag) {
143 aspect_ratio_idc = get_bits(gb, 8);
144 if (aspect_ratio_idc == EXTENDED_SAR) {
145 sps->sar.num = get_bits(gb, 16);
146 sps->sar.den = get_bits(gb, 16);
147 } else if (aspect_ratio_idc < FF_ARRAY_ELEMS(ff_h264_pixel_aspect)) {
148 sps->sar = ff_h264_pixel_aspect[aspect_ratio_idc];
150 av_log(avctx, AV_LOG_ERROR, "illegal aspect ratio\n");
151 return AVERROR_INVALIDDATA;
158 if (get_bits1(gb)) /* overscan_info_present_flag */
159 get_bits1(gb); /* overscan_appropriate_flag */
161 sps->video_signal_type_present_flag = get_bits1(gb);
162 if (sps->video_signal_type_present_flag) {
163 get_bits(gb, 3); /* video_format */
164 sps->full_range = get_bits1(gb); /* video_full_range_flag */
166 sps->colour_description_present_flag = get_bits1(gb);
167 if (sps->colour_description_present_flag) {
168 sps->color_primaries = get_bits(gb, 8); /* colour_primaries */
169 sps->color_trc = get_bits(gb, 8); /* transfer_characteristics */
170 sps->colorspace = get_bits(gb, 8); /* matrix_coefficients */
171 if (sps->color_primaries >= AVCOL_PRI_NB)
172 sps->color_primaries = AVCOL_PRI_UNSPECIFIED;
173 if (sps->color_trc >= AVCOL_TRC_NB)
174 sps->color_trc = AVCOL_TRC_UNSPECIFIED;
175 if (sps->colorspace >= AVCOL_SPC_NB)
176 sps->colorspace = AVCOL_SPC_UNSPECIFIED;
180 /* chroma_location_info_present_flag */
182 /* chroma_sample_location_type_top_field */
183 avctx->chroma_sample_location = get_ue_golomb(gb) + 1;
184 get_ue_golomb(gb); /* chroma_sample_location_type_bottom_field */
187 if (show_bits1(gb) && get_bits_left(gb) < 10) {
188 av_log(avctx, AV_LOG_WARNING, "Truncated VUI\n");
192 sps->timing_info_present_flag = get_bits1(gb);
193 if (sps->timing_info_present_flag) {
194 unsigned num_units_in_tick = get_bits_long(gb, 32);
195 unsigned time_scale = get_bits_long(gb, 32);
196 if (!num_units_in_tick || !time_scale) {
197 av_log(avctx, AV_LOG_ERROR,
198 "time_scale/num_units_in_tick invalid or unsupported (%u/%u)\n",
199 time_scale, num_units_in_tick);
200 sps->timing_info_present_flag = 0;
202 sps->num_units_in_tick = num_units_in_tick;
203 sps->time_scale = time_scale;
205 sps->fixed_frame_rate_flag = get_bits1(gb);
208 sps->nal_hrd_parameters_present_flag = get_bits1(gb);
209 if (sps->nal_hrd_parameters_present_flag)
210 if (decode_hrd_parameters(gb, avctx, sps) < 0)
211 return AVERROR_INVALIDDATA;
212 sps->vcl_hrd_parameters_present_flag = get_bits1(gb);
213 if (sps->vcl_hrd_parameters_present_flag)
214 if (decode_hrd_parameters(gb, avctx, sps) < 0)
215 return AVERROR_INVALIDDATA;
216 if (sps->nal_hrd_parameters_present_flag ||
217 sps->vcl_hrd_parameters_present_flag)
218 get_bits1(gb); /* low_delay_hrd_flag */
219 sps->pic_struct_present_flag = get_bits1(gb);
220 if (!get_bits_left(gb))
222 sps->bitstream_restriction_flag = get_bits1(gb);
223 if (sps->bitstream_restriction_flag) {
224 get_bits1(gb); /* motion_vectors_over_pic_boundaries_flag */
225 get_ue_golomb(gb); /* max_bytes_per_pic_denom */
226 get_ue_golomb(gb); /* max_bits_per_mb_denom */
227 get_ue_golomb(gb); /* log2_max_mv_length_horizontal */
228 get_ue_golomb(gb); /* log2_max_mv_length_vertical */
229 sps->num_reorder_frames = get_ue_golomb(gb);
230 get_ue_golomb(gb); /*max_dec_frame_buffering*/
232 if (get_bits_left(gb) < 0) {
233 sps->num_reorder_frames = 0;
234 sps->bitstream_restriction_flag = 0;
237 if (sps->num_reorder_frames > 16U
238 /* max_dec_frame_buffering || max_dec_frame_buffering > 16 */) {
239 av_log(avctx, AV_LOG_ERROR,
240 "Clipping illegal num_reorder_frames %d\n",
241 sps->num_reorder_frames);
242 sps->num_reorder_frames = 16;
243 return AVERROR_INVALIDDATA;
250 static void decode_scaling_list(GetBitContext *gb, uint8_t *factors, int size,
251 const uint8_t *jvt_list,
252 const uint8_t *fallback_list)
254 int i, last = 8, next = 8;
255 const uint8_t *scan = size == 16 ? ff_zigzag_scan : ff_zigzag_direct;
256 if (!get_bits1(gb)) /* matrix not written, we use the predicted one */
257 memcpy(factors, fallback_list, size * sizeof(uint8_t));
259 for (i = 0; i < size; i++) {
261 int v = get_se_golomb(gb);
262 if (v < -128 || v > 127) {
263 av_log(NULL, AV_LOG_ERROR, "delta scale %d is invalid\n", v);
266 next = (last + v) & 0xff;
268 if (!i && !next) { /* matrix not written, we use the preset one */
269 memcpy(factors, jvt_list, size * sizeof(uint8_t));
272 last = factors[scan[i]] = next ? next : last;
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])
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]
292 decode_scaling_list(gb, scaling_matrix4[0], 16, default_scaling4[0], fallback[0]); // Intra, Y
293 decode_scaling_list(gb, scaling_matrix4[1], 16, default_scaling4[0], scaling_matrix4[0]); // Intra, Cr
294 decode_scaling_list(gb, scaling_matrix4[2], 16, default_scaling4[0], scaling_matrix4[1]); // Intra, Cb
295 decode_scaling_list(gb, scaling_matrix4[3], 16, default_scaling4[1], fallback[1]); // Inter, Y
296 decode_scaling_list(gb, scaling_matrix4[4], 16, default_scaling4[1], scaling_matrix4[3]); // Inter, Cr
297 decode_scaling_list(gb, scaling_matrix4[5], 16, default_scaling4[1], scaling_matrix4[4]); // Inter, Cb
298 if (is_sps || pps->transform_8x8_mode) {
299 decode_scaling_list(gb, scaling_matrix8[0], 64, default_scaling8[0], fallback[2]); // Intra, Y
300 decode_scaling_list(gb, scaling_matrix8[3], 64, default_scaling8[1], fallback[3]); // Inter, Y
301 if (sps->chroma_format_idc == 3) {
302 decode_scaling_list(gb, scaling_matrix8[1], 64, default_scaling8[0], scaling_matrix8[0]); // Intra, Cr
303 decode_scaling_list(gb, scaling_matrix8[4], 64, default_scaling8[1], scaling_matrix8[3]); // Inter, Cr
304 decode_scaling_list(gb, scaling_matrix8[2], 64, default_scaling8[0], scaling_matrix8[1]); // Intra, Cb
305 decode_scaling_list(gb, scaling_matrix8[5], 64, default_scaling8[1], scaling_matrix8[4]); // Inter, Cb
313 void ff_h264_ps_uninit(H264ParamSets *ps)
317 for (i = 0; i < MAX_SPS_COUNT; i++)
318 av_buffer_unref(&ps->sps_list[i]);
320 for (i = 0; i < MAX_PPS_COUNT; i++)
321 av_buffer_unref(&ps->pps_list[i]);
323 av_buffer_unref(&ps->sps_ref);
324 av_buffer_unref(&ps->pps_ref);
330 int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
331 H264ParamSets *ps, int ignore_truncation)
333 AVBufferRef *sps_buf;
334 int profile_idc, level_idc, constraint_set_flags = 0;
336 int i, log2_max_frame_num_minus4;
339 sps_buf = av_buffer_allocz(sizeof(*sps));
341 return AVERROR(ENOMEM);
342 sps = (SPS*)sps_buf->data;
344 sps->data_size = gb->buffer_end - gb->buffer;
345 if (sps->data_size > sizeof(sps->data)) {
346 av_log(avctx, AV_LOG_WARNING, "Truncating likely oversized SPS\n");
347 sps->data_size = sizeof(sps->data);
349 memcpy(sps->data, gb->buffer, sps->data_size);
351 profile_idc = get_bits(gb, 8);
352 constraint_set_flags |= get_bits1(gb) << 0; // constraint_set0_flag
353 constraint_set_flags |= get_bits1(gb) << 1; // constraint_set1_flag
354 constraint_set_flags |= get_bits1(gb) << 2; // constraint_set2_flag
355 constraint_set_flags |= get_bits1(gb) << 3; // constraint_set3_flag
356 constraint_set_flags |= get_bits1(gb) << 4; // constraint_set4_flag
357 constraint_set_flags |= get_bits1(gb) << 5; // constraint_set5_flag
358 skip_bits(gb, 2); // reserved_zero_2bits
359 level_idc = get_bits(gb, 8);
360 sps_id = get_ue_golomb_31(gb);
362 if (sps_id >= MAX_SPS_COUNT) {
363 av_log(avctx, AV_LOG_ERROR, "sps_id %u out of range\n", sps_id);
367 sps->sps_id = sps_id;
368 sps->time_offset_length = 24;
369 sps->profile_idc = profile_idc;
370 sps->constraint_set_flags = constraint_set_flags;
371 sps->level_idc = level_idc;
372 sps->full_range = -1;
374 memset(sps->scaling_matrix4, 16, sizeof(sps->scaling_matrix4));
375 memset(sps->scaling_matrix8, 16, sizeof(sps->scaling_matrix8));
376 sps->scaling_matrix_present = 0;
377 sps->colorspace = 2; //AVCOL_SPC_UNSPECIFIED
379 if (sps->profile_idc == 100 || // High profile
380 sps->profile_idc == 110 || // High10 profile
381 sps->profile_idc == 122 || // High422 profile
382 sps->profile_idc == 244 || // High444 Predictive profile
383 sps->profile_idc == 44 || // Cavlc444 profile
384 sps->profile_idc == 83 || // Scalable Constrained High profile (SVC)
385 sps->profile_idc == 86 || // Scalable High Intra profile (SVC)
386 sps->profile_idc == 118 || // Stereo High profile (MVC)
387 sps->profile_idc == 128 || // Multiview High profile (MVC)
388 sps->profile_idc == 138 || // Multiview Depth High profile (MVCD)
389 sps->profile_idc == 144) { // old High444 profile
390 sps->chroma_format_idc = get_ue_golomb_31(gb);
391 if (sps->chroma_format_idc > 3U) {
392 avpriv_request_sample(avctx, "chroma_format_idc %u",
393 sps->chroma_format_idc);
395 } else if (sps->chroma_format_idc == 3) {
396 sps->residual_color_transform_flag = get_bits1(gb);
397 if (sps->residual_color_transform_flag) {
398 av_log(avctx, AV_LOG_ERROR, "separate color planes are not supported\n");
402 sps->bit_depth_luma = get_ue_golomb(gb) + 8;
403 sps->bit_depth_chroma = get_ue_golomb(gb) + 8;
404 if (sps->bit_depth_chroma != sps->bit_depth_luma) {
405 avpriv_request_sample(avctx,
406 "Different chroma and luma bit depth");
409 if (sps->bit_depth_luma < 8 || sps->bit_depth_luma > 14 ||
410 sps->bit_depth_chroma < 8 || sps->bit_depth_chroma > 14) {
411 av_log(avctx, AV_LOG_ERROR, "illegal bit depth value (%d, %d)\n",
412 sps->bit_depth_luma, sps->bit_depth_chroma);
415 sps->transform_bypass = get_bits1(gb);
416 sps->scaling_matrix_present |= decode_scaling_matrices(gb, sps, NULL, 1,
417 sps->scaling_matrix4, sps->scaling_matrix8);
419 sps->chroma_format_idc = 1;
420 sps->bit_depth_luma = 8;
421 sps->bit_depth_chroma = 8;
424 log2_max_frame_num_minus4 = get_ue_golomb(gb);
425 if (log2_max_frame_num_minus4 < MIN_LOG2_MAX_FRAME_NUM - 4 ||
426 log2_max_frame_num_minus4 > MAX_LOG2_MAX_FRAME_NUM - 4) {
427 av_log(avctx, AV_LOG_ERROR,
428 "log2_max_frame_num_minus4 out of range (0-12): %d\n",
429 log2_max_frame_num_minus4);
432 sps->log2_max_frame_num = log2_max_frame_num_minus4 + 4;
434 sps->poc_type = get_ue_golomb_31(gb);
436 if (sps->poc_type == 0) { // FIXME #define
437 unsigned t = get_ue_golomb(gb);
439 av_log(avctx, AV_LOG_ERROR, "log2_max_poc_lsb (%d) is out of range\n", t);
442 sps->log2_max_poc_lsb = t + 4;
443 } else if (sps->poc_type == 1) { // FIXME #define
444 sps->delta_pic_order_always_zero_flag = get_bits1(gb);
445 sps->offset_for_non_ref_pic = get_se_golomb(gb);
446 sps->offset_for_top_to_bottom_field = get_se_golomb(gb);
447 sps->poc_cycle_length = get_ue_golomb(gb);
449 if ((unsigned)sps->poc_cycle_length >=
450 FF_ARRAY_ELEMS(sps->offset_for_ref_frame)) {
451 av_log(avctx, AV_LOG_ERROR,
452 "poc_cycle_length overflow %d\n", sps->poc_cycle_length);
456 for (i = 0; i < sps->poc_cycle_length; i++)
457 sps->offset_for_ref_frame[i] = get_se_golomb(gb);
458 } else if (sps->poc_type != 2) {
459 av_log(avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type);
463 sps->ref_frame_count = get_ue_golomb_31(gb);
464 if (avctx->codec_tag == MKTAG('S', 'M', 'V', '2'))
465 sps->ref_frame_count = FFMAX(2, sps->ref_frame_count);
466 if (sps->ref_frame_count > MAX_DELAYED_PIC_COUNT) {
467 av_log(avctx, AV_LOG_ERROR,
468 "too many reference frames %d\n", sps->ref_frame_count);
471 sps->gaps_in_frame_num_allowed_flag = get_bits1(gb);
472 sps->mb_width = get_ue_golomb(gb) + 1;
473 sps->mb_height = get_ue_golomb(gb) + 1;
475 sps->frame_mbs_only_flag = get_bits1(gb);
477 if (sps->mb_height >= INT_MAX / 2U) {
478 av_log(avctx, AV_LOG_ERROR, "height overflow\n");
481 sps->mb_height *= 2 - sps->frame_mbs_only_flag;
483 if (!sps->frame_mbs_only_flag)
484 sps->mb_aff = get_bits1(gb);
488 if ((unsigned)sps->mb_width >= INT_MAX / 16 ||
489 (unsigned)sps->mb_height >= INT_MAX / 16 ||
490 av_image_check_size(16 * sps->mb_width,
491 16 * sps->mb_height, 0, avctx)) {
492 av_log(avctx, AV_LOG_ERROR, "mb_width/height overflow\n");
496 sps->direct_8x8_inference_flag = get_bits1(gb);
498 #ifndef ALLOW_INTERLACE
500 av_log(avctx, AV_LOG_ERROR,
501 "MBAFF support not included; enable it at compile-time.\n");
503 sps->crop = get_bits1(gb);
505 unsigned int crop_left = get_ue_golomb(gb);
506 unsigned int crop_right = get_ue_golomb(gb);
507 unsigned int crop_top = get_ue_golomb(gb);
508 unsigned int crop_bottom = get_ue_golomb(gb);
509 int width = 16 * sps->mb_width;
510 int height = 16 * sps->mb_height;
512 if (avctx->flags2 & AV_CODEC_FLAG2_IGNORE_CROP) {
513 av_log(avctx, AV_LOG_DEBUG, "discarding sps cropping, original "
514 "values are l:%d r:%d t:%d b:%d\n",
515 crop_left, crop_right, crop_top, crop_bottom);
520 sps->crop_bottom = 0;
522 int vsub = (sps->chroma_format_idc == 1) ? 1 : 0;
523 int hsub = (sps->chroma_format_idc == 1 ||
524 sps->chroma_format_idc == 2) ? 1 : 0;
525 int step_x = 1 << hsub;
526 int step_y = (2 - sps->frame_mbs_only_flag) << vsub;
528 if (crop_left & (0x1F >> (sps->bit_depth_luma > 8)) &&
529 !(avctx->flags & AV_CODEC_FLAG_UNALIGNED)) {
530 crop_left &= ~(0x1F >> (sps->bit_depth_luma > 8));
531 av_log(avctx, AV_LOG_WARNING,
532 "Reducing left cropping to %d "
533 "chroma samples to preserve alignment.\n",
537 if (crop_left > (unsigned)INT_MAX / 4 / step_x ||
538 crop_right > (unsigned)INT_MAX / 4 / step_x ||
539 crop_top > (unsigned)INT_MAX / 4 / step_y ||
540 crop_bottom> (unsigned)INT_MAX / 4 / step_y ||
541 (crop_left + crop_right ) * step_x >= width ||
542 (crop_top + crop_bottom) * step_y >= height
544 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);
548 sps->crop_left = crop_left * step_x;
549 sps->crop_right = crop_right * step_x;
550 sps->crop_top = crop_top * step_y;
551 sps->crop_bottom = crop_bottom * step_y;
561 sps->vui_parameters_present_flag = get_bits1(gb);
562 if (sps->vui_parameters_present_flag) {
563 int ret = decode_vui_parameters(gb, avctx, sps);
568 if (get_bits_left(gb) < 0) {
569 av_log(avctx, ignore_truncation ? AV_LOG_WARNING : AV_LOG_ERROR,
570 "Overread %s by %d bits\n", sps->vui_parameters_present_flag ? "VUI" : "SPS", -get_bits_left(gb));
571 if (!ignore_truncation)
575 /* if the maximum delay is not stored in the SPS, derive it based on the
577 if (!sps->bitstream_restriction_flag &&
578 (sps->ref_frame_count || avctx->strict_std_compliance >= FF_COMPLIANCE_STRICT)) {
579 sps->num_reorder_frames = MAX_DELAYED_PIC_COUNT - 1;
580 for (i = 0; i < FF_ARRAY_ELEMS(level_max_dpb_mbs); i++) {
581 if (level_max_dpb_mbs[i][0] == sps->level_idc) {
582 sps->num_reorder_frames = FFMIN(level_max_dpb_mbs[i][1] / (sps->mb_width * sps->mb_height),
583 sps->num_reorder_frames);
592 if (avctx->debug & FF_DEBUG_PICT_INFO) {
593 static const char csp[4][5] = { "Gray", "420", "422", "444" };
594 av_log(avctx, AV_LOG_DEBUG,
595 "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",
596 sps_id, sps->profile_idc, sps->level_idc,
598 sps->ref_frame_count,
599 sps->mb_width, sps->mb_height,
600 sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"),
601 sps->direct_8x8_inference_flag ? "8B8" : "",
602 sps->crop_left, sps->crop_right,
603 sps->crop_top, sps->crop_bottom,
604 sps->vui_parameters_present_flag ? "VUI" : "",
605 csp[sps->chroma_format_idc],
606 sps->timing_info_present_flag ? sps->num_units_in_tick : 0,
607 sps->timing_info_present_flag ? sps->time_scale : 0,
609 sps->bitstream_restriction_flag ? sps->num_reorder_frames : -1
613 /* check if this is a repeat of an already parsed SPS, then keep the
615 * otherwise drop all PPSes that depend on it */
616 if (ps->sps_list[sps_id] &&
617 !memcmp(ps->sps_list[sps_id]->data, sps_buf->data, sps_buf->size)) {
618 av_buffer_unref(&sps_buf);
620 remove_sps(ps, sps_id);
621 ps->sps_list[sps_id] = sps_buf;
627 av_buffer_unref(&sps_buf);
628 return AVERROR_INVALIDDATA;
631 static void init_dequant8_coeff_table(PPS *pps, const SPS *sps)
634 const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8);
636 for (i = 0; i < 6; i++) {
637 pps->dequant8_coeff[i] = pps->dequant8_buffer[i];
638 for (j = 0; j < i; j++)
639 if (!memcmp(pps->scaling_matrix8[j], pps->scaling_matrix8[i],
640 64 * sizeof(uint8_t))) {
641 pps->dequant8_coeff[i] = pps->dequant8_buffer[j];
647 for (q = 0; q < max_qp + 1; q++) {
648 int shift = ff_h264_quant_div6[q];
649 int idx = ff_h264_quant_rem6[q];
650 for (x = 0; x < 64; x++)
651 pps->dequant8_coeff[i][q][(x >> 3) | ((x & 7) << 3)] =
652 ((uint32_t)ff_h264_dequant8_coeff_init[idx][ff_h264_dequant8_coeff_init_scan[((x >> 1) & 12) | (x & 3)]] *
653 pps->scaling_matrix8[i][x]) << shift;
658 static void init_dequant4_coeff_table(PPS *pps, const SPS *sps)
661 const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8);
662 for (i = 0; i < 6; i++) {
663 pps->dequant4_coeff[i] = pps->dequant4_buffer[i];
664 for (j = 0; j < i; j++)
665 if (!memcmp(pps->scaling_matrix4[j], pps->scaling_matrix4[i],
666 16 * sizeof(uint8_t))) {
667 pps->dequant4_coeff[i] = pps->dequant4_buffer[j];
673 for (q = 0; q < max_qp + 1; q++) {
674 int shift = ff_h264_quant_div6[q] + 2;
675 int idx = ff_h264_quant_rem6[q];
676 for (x = 0; x < 16; x++)
677 pps->dequant4_coeff[i][q][(x >> 2) | ((x << 2) & 0xF)] =
678 ((uint32_t)ff_h264_dequant4_coeff_init[idx][(x & 1) + ((x >> 2) & 1)] *
679 pps->scaling_matrix4[i][x]) << shift;
684 static void init_dequant_tables(PPS *pps, const SPS *sps)
687 init_dequant4_coeff_table(pps, sps);
688 memset(pps->dequant8_coeff, 0, sizeof(pps->dequant8_coeff));
690 if (pps->transform_8x8_mode)
691 init_dequant8_coeff_table(pps, sps);
692 if (sps->transform_bypass) {
693 for (i = 0; i < 6; i++)
694 for (x = 0; x < 16; x++)
695 pps->dequant4_coeff[i][0][x] = 1 << 6;
696 if (pps->transform_8x8_mode)
697 for (i = 0; i < 6; i++)
698 for (x = 0; x < 64; x++)
699 pps->dequant8_coeff[i][0][x] = 1 << 6;
703 static void build_qp_table(PPS *pps, int t, int index, const int depth)
706 const int max_qp = 51 + 6 * (depth - 8);
707 for (i = 0; i < max_qp + 1; i++)
708 pps->chroma_qp_table[t][i] =
709 ff_h264_chroma_qp[depth - 8][av_clip(i + index, 0, max_qp)];
712 static int more_rbsp_data_in_pps(const SPS *sps, void *logctx)
714 int profile_idc = sps->profile_idc;
716 if ((profile_idc == 66 || profile_idc == 77 ||
717 profile_idc == 88) && (sps->constraint_set_flags & 7)) {
718 av_log(logctx, AV_LOG_VERBOSE,
719 "Current profile doesn't provide more RBSP data in PPS, skipping\n");
726 int ff_h264_decode_picture_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
727 H264ParamSets *ps, int bit_length)
729 AVBufferRef *pps_buf;
731 unsigned int pps_id = get_ue_golomb(gb);
737 if (pps_id >= MAX_PPS_COUNT) {
738 av_log(avctx, AV_LOG_ERROR, "pps_id %u out of range\n", pps_id);
739 return AVERROR_INVALIDDATA;
742 pps_buf = av_buffer_allocz(sizeof(*pps));
744 return AVERROR(ENOMEM);
745 pps = (PPS*)pps_buf->data;
747 pps->data_size = gb->buffer_end - gb->buffer;
748 if (pps->data_size > sizeof(pps->data)) {
749 av_log(avctx, AV_LOG_WARNING, "Truncating likely oversized PPS "
750 "(%"SIZE_SPECIFIER" > %"SIZE_SPECIFIER")\n",
751 pps->data_size, sizeof(pps->data));
752 pps->data_size = sizeof(pps->data);
754 memcpy(pps->data, gb->buffer, pps->data_size);
756 pps->sps_id = get_ue_golomb_31(gb);
757 if ((unsigned)pps->sps_id >= MAX_SPS_COUNT ||
758 !ps->sps_list[pps->sps_id]) {
759 av_log(avctx, AV_LOG_ERROR, "sps_id %u out of range\n", pps->sps_id);
760 ret = AVERROR_INVALIDDATA;
763 sps = (const SPS*)ps->sps_list[pps->sps_id]->data;
764 if (sps->bit_depth_luma > 14) {
765 av_log(avctx, AV_LOG_ERROR,
766 "Invalid luma bit depth=%d\n",
767 sps->bit_depth_luma);
768 ret = AVERROR_INVALIDDATA;
770 } else if (sps->bit_depth_luma == 11 || sps->bit_depth_luma == 13) {
771 av_log(avctx, AV_LOG_ERROR,
772 "Unimplemented luma bit depth=%d\n",
773 sps->bit_depth_luma);
774 ret = AVERROR_PATCHWELCOME;
778 pps->cabac = get_bits1(gb);
779 pps->pic_order_present = get_bits1(gb);
780 pps->slice_group_count = get_ue_golomb(gb) + 1;
781 if (pps->slice_group_count > 1) {
782 pps->mb_slice_group_map_type = get_ue_golomb(gb);
783 av_log(avctx, AV_LOG_ERROR, "FMO not supported\n");
784 switch (pps->mb_slice_group_map_type) {
787 | for (i = 0; i <= num_slice_groups_minus1; i++) | | |
788 | run_length[i] |1 |ue(v) |
793 | for (i = 0; i < num_slice_groups_minus1; i++) { | | |
794 | top_left_mb[i] |1 |ue(v) |
795 | bottom_right_mb[i] |1 |ue(v) |
803 | slice_group_change_direction_flag |1 |u(1) |
804 | slice_group_change_rate_minus1 |1 |ue(v) |
809 | slice_group_id_cnt_minus1 |1 |ue(v) |
810 | for (i = 0; i <= slice_group_id_cnt_minus1; i++)| | |
811 | slice_group_id[i] |1 |u(v) |
816 pps->ref_count[0] = get_ue_golomb(gb) + 1;
817 pps->ref_count[1] = get_ue_golomb(gb) + 1;
818 if (pps->ref_count[0] - 1 > 32 - 1 || pps->ref_count[1] - 1 > 32 - 1) {
819 av_log(avctx, AV_LOG_ERROR, "reference overflow (pps)\n");
820 ret = AVERROR_INVALIDDATA;
824 qp_bd_offset = 6 * (sps->bit_depth_luma - 8);
826 pps->weighted_pred = get_bits1(gb);
827 pps->weighted_bipred_idc = get_bits(gb, 2);
828 pps->init_qp = get_se_golomb(gb) + 26 + qp_bd_offset;
829 pps->init_qs = get_se_golomb(gb) + 26 + qp_bd_offset;
830 pps->chroma_qp_index_offset[0] = get_se_golomb(gb);
831 if (pps->chroma_qp_index_offset[0] < -12 || pps->chroma_qp_index_offset[0] > 12) {
832 ret = AVERROR_INVALIDDATA;
836 pps->deblocking_filter_parameters_present = get_bits1(gb);
837 pps->constrained_intra_pred = get_bits1(gb);
838 pps->redundant_pic_cnt_present = get_bits1(gb);
840 pps->transform_8x8_mode = 0;
841 memcpy(pps->scaling_matrix4, sps->scaling_matrix4,
842 sizeof(pps->scaling_matrix4));
843 memcpy(pps->scaling_matrix8, sps->scaling_matrix8,
844 sizeof(pps->scaling_matrix8));
846 bits_left = bit_length - get_bits_count(gb);
847 if (bits_left > 0 && more_rbsp_data_in_pps(sps, avctx)) {
848 pps->transform_8x8_mode = get_bits1(gb);
849 decode_scaling_matrices(gb, sps, pps, 0,
850 pps->scaling_matrix4, pps->scaling_matrix8);
851 // second_chroma_qp_index_offset
852 pps->chroma_qp_index_offset[1] = get_se_golomb(gb);
853 if (pps->chroma_qp_index_offset[1] < -12 || pps->chroma_qp_index_offset[1] > 12) {
854 ret = AVERROR_INVALIDDATA;
858 pps->chroma_qp_index_offset[1] = pps->chroma_qp_index_offset[0];
861 build_qp_table(pps, 0, pps->chroma_qp_index_offset[0],
862 sps->bit_depth_luma);
863 build_qp_table(pps, 1, pps->chroma_qp_index_offset[1],
864 sps->bit_depth_luma);
866 init_dequant_tables(pps, sps);
868 if (pps->chroma_qp_index_offset[0] != pps->chroma_qp_index_offset[1])
869 pps->chroma_qp_diff = 1;
871 if (avctx->debug & FF_DEBUG_PICT_INFO) {
872 av_log(avctx, AV_LOG_DEBUG,
873 "pps:%u sps:%u %s slice_groups:%d ref:%u/%u %s qp:%d/%d/%d/%d %s %s %s %s\n",
875 pps->cabac ? "CABAC" : "CAVLC",
876 pps->slice_group_count,
877 pps->ref_count[0], pps->ref_count[1],
878 pps->weighted_pred ? "weighted" : "",
879 pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset[0], pps->chroma_qp_index_offset[1],
880 pps->deblocking_filter_parameters_present ? "LPAR" : "",
881 pps->constrained_intra_pred ? "CONSTR" : "",
882 pps->redundant_pic_cnt_present ? "REDU" : "",
883 pps->transform_8x8_mode ? "8x8DCT" : "");
886 remove_pps(ps, pps_id);
887 ps->pps_list[pps_id] = pps_buf;
892 av_buffer_unref(&pps_buf);