h264_ps.c 20 KB

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