You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

538 lines
20KB

  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. * @file
  23. * H.264 / AVC / MPEG4 part10 parameter set decoding.
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "internal.h"
  27. #include "dsputil.h"
  28. #include "avcodec.h"
  29. #include "h264.h"
  30. #include "h264data.h" //FIXME FIXME FIXME (just for zigzag_scan)
  31. #include "golomb.h"
  32. //#undef NDEBUG
  33. #include <assert.h>
  34. static const AVRational pixel_aspect[17]={
  35. {0, 1},
  36. {1, 1},
  37. {12, 11},
  38. {10, 11},
  39. {16, 11},
  40. {40, 33},
  41. {24, 11},
  42. {20, 11},
  43. {32, 11},
  44. {80, 33},
  45. {18, 11},
  46. {15, 11},
  47. {64, 33},
  48. {160,99},
  49. {4, 3},
  50. {3, 2},
  51. {2, 1},
  52. };
  53. const uint8_t ff_h264_chroma_qp[52]={
  54. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,
  55. 12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,
  56. 28,29,29,30,31,32,32,33,34,34,35,35,36,36,37,37,
  57. 37,38,38,38,39,39,39,39
  58. };
  59. static const uint8_t default_scaling4[2][16]={
  60. { 6,13,20,28,
  61. 13,20,28,32,
  62. 20,28,32,37,
  63. 28,32,37,42
  64. },{
  65. 10,14,20,24,
  66. 14,20,24,27,
  67. 20,24,27,30,
  68. 24,27,30,34
  69. }};
  70. static const uint8_t default_scaling8[2][64]={
  71. { 6,10,13,16,18,23,25,27,
  72. 10,11,16,18,23,25,27,29,
  73. 13,16,18,23,25,27,29,31,
  74. 16,18,23,25,27,29,31,33,
  75. 18,23,25,27,29,31,33,36,
  76. 23,25,27,29,31,33,36,38,
  77. 25,27,29,31,33,36,38,40,
  78. 27,29,31,33,36,38,40,42
  79. },{
  80. 9,13,15,17,19,21,22,24,
  81. 13,13,17,19,21,22,24,25,
  82. 15,17,19,21,22,24,25,27,
  83. 17,19,21,22,24,25,27,28,
  84. 19,21,22,24,25,27,28,30,
  85. 21,22,24,25,27,28,30,32,
  86. 22,24,25,27,28,30,32,33,
  87. 24,25,27,28,30,32,33,35
  88. }};
  89. static inline int decode_hrd_parameters(H264Context *h, SPS *sps){
  90. MpegEncContext * const s = &h->s;
  91. int cpb_count, i;
  92. cpb_count = get_ue_golomb_31(&s->gb) + 1;
  93. if(cpb_count > 32U){
  94. av_log(h->s.avctx, AV_LOG_ERROR, "cpb_count %d invalid\n", cpb_count);
  95. return -1;
  96. }
  97. get_bits(&s->gb, 4); /* bit_rate_scale */
  98. get_bits(&s->gb, 4); /* cpb_size_scale */
  99. for(i=0; i<cpb_count; i++){
  100. get_ue_golomb(&s->gb); /* bit_rate_value_minus1 */
  101. get_ue_golomb(&s->gb); /* cpb_size_value_minus1 */
  102. get_bits1(&s->gb); /* cbr_flag */
  103. }
  104. sps->initial_cpb_removal_delay_length = get_bits(&s->gb, 5) + 1;
  105. sps->cpb_removal_delay_length = get_bits(&s->gb, 5) + 1;
  106. sps->dpb_output_delay_length = get_bits(&s->gb, 5) + 1;
  107. sps->time_offset_length = get_bits(&s->gb, 5);
  108. sps->cpb_cnt = cpb_count;
  109. return 0;
  110. }
  111. static inline int decode_vui_parameters(H264Context *h, SPS *sps){
  112. MpegEncContext * const s = &h->s;
  113. int aspect_ratio_info_present_flag;
  114. unsigned int aspect_ratio_idc;
  115. aspect_ratio_info_present_flag= get_bits1(&s->gb);
  116. if( aspect_ratio_info_present_flag ) {
  117. aspect_ratio_idc= get_bits(&s->gb, 8);
  118. if( aspect_ratio_idc == EXTENDED_SAR ) {
  119. sps->sar.num= get_bits(&s->gb, 16);
  120. sps->sar.den= get_bits(&s->gb, 16);
  121. }else if(aspect_ratio_idc < FF_ARRAY_ELEMS(pixel_aspect)){
  122. sps->sar= pixel_aspect[aspect_ratio_idc];
  123. }else{
  124. av_log(h->s.avctx, AV_LOG_ERROR, "illegal aspect ratio\n");
  125. return -1;
  126. }
  127. }else{
  128. sps->sar.num=
  129. sps->sar.den= 0;
  130. }
  131. // s->avctx->aspect_ratio= sar_width*s->width / (float)(s->height*sar_height);
  132. if(get_bits1(&s->gb)){ /* overscan_info_present_flag */
  133. get_bits1(&s->gb); /* overscan_appropriate_flag */
  134. }
  135. sps->video_signal_type_present_flag = get_bits1(&s->gb);
  136. if(sps->video_signal_type_present_flag){
  137. get_bits(&s->gb, 3); /* video_format */
  138. sps->full_range = get_bits1(&s->gb); /* video_full_range_flag */
  139. sps->colour_description_present_flag = get_bits1(&s->gb);
  140. if(sps->colour_description_present_flag){
  141. sps->color_primaries = get_bits(&s->gb, 8); /* colour_primaries */
  142. sps->color_trc = get_bits(&s->gb, 8); /* transfer_characteristics */
  143. sps->colorspace = get_bits(&s->gb, 8); /* matrix_coefficients */
  144. if (sps->color_primaries >= AVCOL_PRI_NB)
  145. sps->color_primaries = AVCOL_PRI_UNSPECIFIED;
  146. if (sps->color_trc >= AVCOL_TRC_NB)
  147. sps->color_trc = AVCOL_TRC_UNSPECIFIED;
  148. if (sps->colorspace >= AVCOL_SPC_NB)
  149. sps->colorspace = AVCOL_SPC_UNSPECIFIED;
  150. }
  151. }
  152. if(get_bits1(&s->gb)){ /* chroma_location_info_present_flag */
  153. s->avctx->chroma_sample_location = get_ue_golomb(&s->gb)+1; /* chroma_sample_location_type_top_field */
  154. get_ue_golomb(&s->gb); /* chroma_sample_location_type_bottom_field */
  155. }
  156. sps->timing_info_present_flag = get_bits1(&s->gb);
  157. if(sps->timing_info_present_flag){
  158. sps->num_units_in_tick = get_bits_long(&s->gb, 32);
  159. sps->time_scale = get_bits_long(&s->gb, 32);
  160. if(!sps->num_units_in_tick || !sps->time_scale){
  161. av_log(h->s.avctx, AV_LOG_ERROR, "time_scale/num_units_in_tick invalid or unsupported (%d/%d)\n", sps->time_scale, sps->num_units_in_tick);
  162. return -1;
  163. }
  164. sps->fixed_frame_rate_flag = get_bits1(&s->gb);
  165. }
  166. sps->nal_hrd_parameters_present_flag = get_bits1(&s->gb);
  167. if(sps->nal_hrd_parameters_present_flag)
  168. if(decode_hrd_parameters(h, sps) < 0)
  169. return -1;
  170. sps->vcl_hrd_parameters_present_flag = get_bits1(&s->gb);
  171. if(sps->vcl_hrd_parameters_present_flag)
  172. if(decode_hrd_parameters(h, sps) < 0)
  173. return -1;
  174. if(sps->nal_hrd_parameters_present_flag || sps->vcl_hrd_parameters_present_flag)
  175. get_bits1(&s->gb); /* low_delay_hrd_flag */
  176. sps->pic_struct_present_flag = get_bits1(&s->gb);
  177. sps->bitstream_restriction_flag = get_bits1(&s->gb);
  178. if(sps->bitstream_restriction_flag){
  179. get_bits1(&s->gb); /* motion_vectors_over_pic_boundaries_flag */
  180. get_ue_golomb(&s->gb); /* max_bytes_per_pic_denom */
  181. get_ue_golomb(&s->gb); /* max_bits_per_mb_denom */
  182. get_ue_golomb(&s->gb); /* log2_max_mv_length_horizontal */
  183. get_ue_golomb(&s->gb); /* log2_max_mv_length_vertical */
  184. sps->num_reorder_frames= get_ue_golomb(&s->gb);
  185. get_ue_golomb(&s->gb); /*max_dec_frame_buffering*/
  186. if(s->gb.size_in_bits < get_bits_count(&s->gb)){
  187. av_log(h->s.avctx, AV_LOG_ERROR, "Overread VUI by %d bits\n", get_bits_count(&s->gb) - s->gb.size_in_bits);
  188. sps->num_reorder_frames=0;
  189. sps->bitstream_restriction_flag= 0;
  190. }
  191. if(sps->num_reorder_frames > 16U /*max_dec_frame_buffering || max_dec_frame_buffering > 16*/){
  192. av_log(h->s.avctx, AV_LOG_ERROR, "illegal num_reorder_frames %d\n", sps->num_reorder_frames);
  193. return -1;
  194. }
  195. }
  196. return 0;
  197. }
  198. static void decode_scaling_list(H264Context *h, uint8_t *factors, int size,
  199. const uint8_t *jvt_list, const uint8_t *fallback_list){
  200. MpegEncContext * const s = &h->s;
  201. int i, last = 8, next = 8;
  202. const uint8_t *scan = size == 16 ? zigzag_scan : ff_zigzag_direct;
  203. if(!get_bits1(&s->gb)) /* matrix not written, we use the predicted one */
  204. memcpy(factors, fallback_list, size*sizeof(uint8_t));
  205. else
  206. for(i=0;i<size;i++){
  207. if(next)
  208. next = (last + get_se_golomb(&s->gb)) & 0xff;
  209. if(!i && !next){ /* matrix not written, we use the preset one */
  210. memcpy(factors, jvt_list, size*sizeof(uint8_t));
  211. break;
  212. }
  213. last = factors[scan[i]] = next ? next : last;
  214. }
  215. }
  216. static void decode_scaling_matrices(H264Context *h, SPS *sps, PPS *pps, int is_sps,
  217. uint8_t (*scaling_matrix4)[16], uint8_t (*scaling_matrix8)[64]){
  218. MpegEncContext * const s = &h->s;
  219. int fallback_sps = !is_sps && sps->scaling_matrix_present;
  220. const uint8_t *fallback[4] = {
  221. fallback_sps ? sps->scaling_matrix4[0] : default_scaling4[0],
  222. fallback_sps ? sps->scaling_matrix4[3] : default_scaling4[1],
  223. fallback_sps ? sps->scaling_matrix8[0] : default_scaling8[0],
  224. fallback_sps ? sps->scaling_matrix8[1] : default_scaling8[1]
  225. };
  226. if(get_bits1(&s->gb)){
  227. sps->scaling_matrix_present |= is_sps;
  228. decode_scaling_list(h,scaling_matrix4[0],16,default_scaling4[0],fallback[0]); // Intra, Y
  229. decode_scaling_list(h,scaling_matrix4[1],16,default_scaling4[0],scaling_matrix4[0]); // Intra, Cr
  230. decode_scaling_list(h,scaling_matrix4[2],16,default_scaling4[0],scaling_matrix4[1]); // Intra, Cb
  231. decode_scaling_list(h,scaling_matrix4[3],16,default_scaling4[1],fallback[1]); // Inter, Y
  232. decode_scaling_list(h,scaling_matrix4[4],16,default_scaling4[1],scaling_matrix4[3]); // Inter, Cr
  233. decode_scaling_list(h,scaling_matrix4[5],16,default_scaling4[1],scaling_matrix4[4]); // Inter, Cb
  234. if(is_sps || pps->transform_8x8_mode){
  235. decode_scaling_list(h,scaling_matrix8[0],64,default_scaling8[0],fallback[2]); // Intra, Y
  236. decode_scaling_list(h,scaling_matrix8[1],64,default_scaling8[1],fallback[3]); // Inter, Y
  237. }
  238. }
  239. }
  240. int ff_h264_decode_seq_parameter_set(H264Context *h){
  241. MpegEncContext * const s = &h->s;
  242. int profile_idc, level_idc;
  243. unsigned int sps_id;
  244. int i;
  245. SPS *sps;
  246. profile_idc= get_bits(&s->gb, 8);
  247. get_bits1(&s->gb); //constraint_set0_flag
  248. get_bits1(&s->gb); //constraint_set1_flag
  249. get_bits1(&s->gb); //constraint_set2_flag
  250. get_bits1(&s->gb); //constraint_set3_flag
  251. get_bits(&s->gb, 4); // reserved
  252. level_idc= get_bits(&s->gb, 8);
  253. sps_id= get_ue_golomb_31(&s->gb);
  254. if(sps_id >= MAX_SPS_COUNT) {
  255. av_log(h->s.avctx, AV_LOG_ERROR, "sps_id (%d) out of range\n", sps_id);
  256. return -1;
  257. }
  258. sps= av_mallocz(sizeof(SPS));
  259. if(sps == NULL)
  260. return -1;
  261. sps->profile_idc= profile_idc;
  262. sps->level_idc= level_idc;
  263. memset(sps->scaling_matrix4, 16, sizeof(sps->scaling_matrix4));
  264. memset(sps->scaling_matrix8, 16, sizeof(sps->scaling_matrix8));
  265. sps->scaling_matrix_present = 0;
  266. if(sps->profile_idc >= 100){ //high profile
  267. sps->chroma_format_idc= get_ue_golomb_31(&s->gb);
  268. if(sps->chroma_format_idc == 3)
  269. sps->residual_color_transform_flag = get_bits1(&s->gb);
  270. sps->bit_depth_luma = get_ue_golomb(&s->gb) + 8;
  271. sps->bit_depth_chroma = get_ue_golomb(&s->gb) + 8;
  272. sps->transform_bypass = get_bits1(&s->gb);
  273. decode_scaling_matrices(h, sps, NULL, 1, sps->scaling_matrix4, sps->scaling_matrix8);
  274. }else{
  275. sps->chroma_format_idc= 1;
  276. sps->bit_depth_luma = 8;
  277. sps->bit_depth_chroma = 8;
  278. }
  279. sps->log2_max_frame_num= get_ue_golomb(&s->gb) + 4;
  280. sps->poc_type= get_ue_golomb_31(&s->gb);
  281. if(sps->poc_type == 0){ //FIXME #define
  282. sps->log2_max_poc_lsb= get_ue_golomb(&s->gb) + 4;
  283. } else if(sps->poc_type == 1){//FIXME #define
  284. sps->delta_pic_order_always_zero_flag= get_bits1(&s->gb);
  285. sps->offset_for_non_ref_pic= get_se_golomb(&s->gb);
  286. sps->offset_for_top_to_bottom_field= get_se_golomb(&s->gb);
  287. sps->poc_cycle_length = get_ue_golomb(&s->gb);
  288. if((unsigned)sps->poc_cycle_length >= FF_ARRAY_ELEMS(sps->offset_for_ref_frame)){
  289. av_log(h->s.avctx, AV_LOG_ERROR, "poc_cycle_length overflow %u\n", sps->poc_cycle_length);
  290. goto fail;
  291. }
  292. for(i=0; i<sps->poc_cycle_length; i++)
  293. sps->offset_for_ref_frame[i]= get_se_golomb(&s->gb);
  294. }else if(sps->poc_type != 2){
  295. av_log(h->s.avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type);
  296. goto fail;
  297. }
  298. sps->ref_frame_count= get_ue_golomb_31(&s->gb);
  299. if(sps->ref_frame_count > MAX_PICTURE_COUNT-2 || sps->ref_frame_count >= 32U){
  300. av_log(h->s.avctx, AV_LOG_ERROR, "too many reference frames\n");
  301. goto fail;
  302. }
  303. sps->gaps_in_frame_num_allowed_flag= get_bits1(&s->gb);
  304. sps->mb_width = get_ue_golomb(&s->gb) + 1;
  305. sps->mb_height= get_ue_golomb(&s->gb) + 1;
  306. if((unsigned)sps->mb_width >= INT_MAX/16 || (unsigned)sps->mb_height >= INT_MAX/16 ||
  307. avcodec_check_dimensions(NULL, 16*sps->mb_width, 16*sps->mb_height)){
  308. av_log(h->s.avctx, AV_LOG_ERROR, "mb_width/height overflow\n");
  309. goto fail;
  310. }
  311. sps->frame_mbs_only_flag= get_bits1(&s->gb);
  312. if(!sps->frame_mbs_only_flag)
  313. sps->mb_aff= get_bits1(&s->gb);
  314. else
  315. sps->mb_aff= 0;
  316. sps->direct_8x8_inference_flag= get_bits1(&s->gb);
  317. if(!sps->frame_mbs_only_flag && !sps->direct_8x8_inference_flag){
  318. av_log(h->s.avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
  319. goto fail;
  320. }
  321. #ifndef ALLOW_INTERLACE
  322. if(sps->mb_aff)
  323. av_log(h->s.avctx, AV_LOG_ERROR, "MBAFF support not included; enable it at compile-time.\n");
  324. #endif
  325. sps->crop= get_bits1(&s->gb);
  326. if(sps->crop){
  327. sps->crop_left = get_ue_golomb(&s->gb);
  328. sps->crop_right = get_ue_golomb(&s->gb);
  329. sps->crop_top = get_ue_golomb(&s->gb);
  330. sps->crop_bottom= get_ue_golomb(&s->gb);
  331. if(sps->crop_left || sps->crop_top){
  332. av_log(h->s.avctx, AV_LOG_ERROR, "insane cropping not completely supported, this could look slightly wrong ...\n");
  333. }
  334. if(sps->crop_right >= 8 || sps->crop_bottom >= (8>> !sps->frame_mbs_only_flag)){
  335. av_log(h->s.avctx, AV_LOG_ERROR, "brainfart cropping not supported, this could look slightly wrong ...\n");
  336. }
  337. }else{
  338. sps->crop_left =
  339. sps->crop_right =
  340. sps->crop_top =
  341. sps->crop_bottom= 0;
  342. }
  343. sps->vui_parameters_present_flag= get_bits1(&s->gb);
  344. if( sps->vui_parameters_present_flag )
  345. if (decode_vui_parameters(h, sps) < 0)
  346. goto fail;
  347. if(s->avctx->debug&FF_DEBUG_PICT_INFO){
  348. av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s %s %d/%d\n",
  349. sps_id, sps->profile_idc, sps->level_idc,
  350. sps->poc_type,
  351. sps->ref_frame_count,
  352. sps->mb_width, sps->mb_height,
  353. sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"),
  354. sps->direct_8x8_inference_flag ? "8B8" : "",
  355. sps->crop_left, sps->crop_right,
  356. sps->crop_top, sps->crop_bottom,
  357. sps->vui_parameters_present_flag ? "VUI" : "",
  358. ((const char*[]){"Gray","420","422","444"})[sps->chroma_format_idc],
  359. sps->timing_info_present_flag ? sps->num_units_in_tick : 0,
  360. sps->timing_info_present_flag ? sps->time_scale : 0
  361. );
  362. }
  363. av_free(h->sps_buffers[sps_id]);
  364. h->sps_buffers[sps_id]= sps;
  365. h->sps = *sps;
  366. return 0;
  367. fail:
  368. av_free(sps);
  369. return -1;
  370. }
  371. static void
  372. build_qp_table(PPS *pps, int t, int index)
  373. {
  374. int i;
  375. for(i = 0; i < 52; i++)
  376. pps->chroma_qp_table[t][i] = ff_h264_chroma_qp[av_clip(i + index, 0, 51)];
  377. }
  378. int ff_h264_decode_picture_parameter_set(H264Context *h, int bit_length){
  379. MpegEncContext * const s = &h->s;
  380. unsigned int pps_id= get_ue_golomb(&s->gb);
  381. PPS *pps;
  382. if(pps_id >= MAX_PPS_COUNT) {
  383. av_log(h->s.avctx, AV_LOG_ERROR, "pps_id (%d) out of range\n", pps_id);
  384. return -1;
  385. }
  386. pps= av_mallocz(sizeof(PPS));
  387. if(pps == NULL)
  388. return -1;
  389. pps->sps_id= get_ue_golomb_31(&s->gb);
  390. if((unsigned)pps->sps_id>=MAX_SPS_COUNT || h->sps_buffers[pps->sps_id] == NULL){
  391. av_log(h->s.avctx, AV_LOG_ERROR, "sps_id out of range\n");
  392. goto fail;
  393. }
  394. pps->cabac= get_bits1(&s->gb);
  395. pps->pic_order_present= get_bits1(&s->gb);
  396. pps->slice_group_count= get_ue_golomb(&s->gb) + 1;
  397. if(pps->slice_group_count > 1 ){
  398. pps->mb_slice_group_map_type= get_ue_golomb(&s->gb);
  399. av_log(h->s.avctx, AV_LOG_ERROR, "FMO not supported\n");
  400. switch(pps->mb_slice_group_map_type){
  401. case 0:
  402. #if 0
  403. | for( i = 0; i <= num_slice_groups_minus1; i++ ) | | |
  404. | run_length[ i ] |1 |ue(v) |
  405. #endif
  406. break;
  407. case 2:
  408. #if 0
  409. | for( i = 0; i < num_slice_groups_minus1; i++ ) | | |
  410. |{ | | |
  411. | top_left_mb[ i ] |1 |ue(v) |
  412. | bottom_right_mb[ i ] |1 |ue(v) |
  413. | } | | |
  414. #endif
  415. break;
  416. case 3:
  417. case 4:
  418. case 5:
  419. #if 0
  420. | slice_group_change_direction_flag |1 |u(1) |
  421. | slice_group_change_rate_minus1 |1 |ue(v) |
  422. #endif
  423. break;
  424. case 6:
  425. #if 0
  426. | slice_group_id_cnt_minus1 |1 |ue(v) |
  427. | for( i = 0; i <= slice_group_id_cnt_minus1; i++ | | |
  428. |) | | |
  429. | slice_group_id[ i ] |1 |u(v) |
  430. #endif
  431. break;
  432. }
  433. }
  434. pps->ref_count[0]= get_ue_golomb(&s->gb) + 1;
  435. pps->ref_count[1]= get_ue_golomb(&s->gb) + 1;
  436. if(pps->ref_count[0]-1 > 32-1 || pps->ref_count[1]-1 > 32-1){
  437. av_log(h->s.avctx, AV_LOG_ERROR, "reference overflow (pps)\n");
  438. goto fail;
  439. }
  440. pps->weighted_pred= get_bits1(&s->gb);
  441. pps->weighted_bipred_idc= get_bits(&s->gb, 2);
  442. pps->init_qp= get_se_golomb(&s->gb) + 26;
  443. pps->init_qs= get_se_golomb(&s->gb) + 26;
  444. pps->chroma_qp_index_offset[0]= get_se_golomb(&s->gb);
  445. pps->deblocking_filter_parameters_present= get_bits1(&s->gb);
  446. pps->constrained_intra_pred= get_bits1(&s->gb);
  447. pps->redundant_pic_cnt_present = get_bits1(&s->gb);
  448. pps->transform_8x8_mode= 0;
  449. h->dequant_coeff_pps= -1; //contents of sps/pps can change even if id doesn't, so reinit
  450. memcpy(pps->scaling_matrix4, h->sps_buffers[pps->sps_id]->scaling_matrix4, sizeof(pps->scaling_matrix4));
  451. memcpy(pps->scaling_matrix8, h->sps_buffers[pps->sps_id]->scaling_matrix8, sizeof(pps->scaling_matrix8));
  452. if(get_bits_count(&s->gb) < bit_length){
  453. pps->transform_8x8_mode= get_bits1(&s->gb);
  454. decode_scaling_matrices(h, h->sps_buffers[pps->sps_id], pps, 0, pps->scaling_matrix4, pps->scaling_matrix8);
  455. pps->chroma_qp_index_offset[1]= get_se_golomb(&s->gb); //second_chroma_qp_index_offset
  456. } else {
  457. pps->chroma_qp_index_offset[1]= pps->chroma_qp_index_offset[0];
  458. }
  459. build_qp_table(pps, 0, pps->chroma_qp_index_offset[0]);
  460. build_qp_table(pps, 1, pps->chroma_qp_index_offset[1]);
  461. if(pps->chroma_qp_index_offset[0] != pps->chroma_qp_index_offset[1])
  462. pps->chroma_qp_diff= 1;
  463. if(s->avctx->debug&FF_DEBUG_PICT_INFO){
  464. av_log(h->s.avctx, AV_LOG_DEBUG, "pps:%u sps:%u %s slice_groups:%d ref:%d/%d %s qp:%d/%d/%d/%d %s %s %s %s\n",
  465. pps_id, pps->sps_id,
  466. pps->cabac ? "CABAC" : "CAVLC",
  467. pps->slice_group_count,
  468. pps->ref_count[0], pps->ref_count[1],
  469. pps->weighted_pred ? "weighted" : "",
  470. pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset[0], pps->chroma_qp_index_offset[1],
  471. pps->deblocking_filter_parameters_present ? "LPAR" : "",
  472. pps->constrained_intra_pred ? "CONSTR" : "",
  473. pps->redundant_pic_cnt_present ? "REDU" : "",
  474. pps->transform_8x8_mode ? "8x8DCT" : ""
  475. );
  476. }
  477. av_free(h->pps_buffers[pps_id]);
  478. h->pps_buffers[pps_id]= pps;
  479. return 0;
  480. fail:
  481. av_free(pps);
  482. return -1;
  483. }