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.

527 lines
18KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "bytestream.h"
  19. #include "get_bits.h"
  20. #include "golomb.h"
  21. #include "h264.h"
  22. #include "h264dec.h"
  23. #include "h264_parse.h"
  24. #include "h264_ps.h"
  25. int ff_h264_pred_weight_table(GetBitContext *gb, const SPS *sps,
  26. const int *ref_count, int slice_type_nos,
  27. H264PredWeightTable *pwt,
  28. int picture_structure, void *logctx)
  29. {
  30. int list, i, j;
  31. int luma_def, chroma_def;
  32. pwt->use_weight = 0;
  33. pwt->use_weight_chroma = 0;
  34. pwt->luma_log2_weight_denom = get_ue_golomb(gb);
  35. if (pwt->luma_log2_weight_denom > 7U) {
  36. av_log(logctx, AV_LOG_ERROR, "luma_log2_weight_denom %d is out of range\n", pwt->luma_log2_weight_denom);
  37. pwt->luma_log2_weight_denom = 0;
  38. }
  39. luma_def = 1 << pwt->luma_log2_weight_denom;
  40. if (sps->chroma_format_idc) {
  41. pwt->chroma_log2_weight_denom = get_ue_golomb(gb);
  42. if (pwt->chroma_log2_weight_denom > 7U) {
  43. av_log(logctx, AV_LOG_ERROR, "chroma_log2_weight_denom %d is out of range\n", pwt->chroma_log2_weight_denom);
  44. pwt->chroma_log2_weight_denom = 0;
  45. }
  46. chroma_def = 1 << pwt->chroma_log2_weight_denom;
  47. }
  48. for (list = 0; list < 2; list++) {
  49. pwt->luma_weight_flag[list] = 0;
  50. pwt->chroma_weight_flag[list] = 0;
  51. for (i = 0; i < ref_count[list]; i++) {
  52. int luma_weight_flag, chroma_weight_flag;
  53. luma_weight_flag = get_bits1(gb);
  54. if (luma_weight_flag) {
  55. pwt->luma_weight[i][list][0] = get_se_golomb(gb);
  56. pwt->luma_weight[i][list][1] = get_se_golomb(gb);
  57. if ((int8_t)pwt->luma_weight[i][list][0] != pwt->luma_weight[i][list][0] ||
  58. (int8_t)pwt->luma_weight[i][list][1] != pwt->luma_weight[i][list][1])
  59. goto out_range_weight;
  60. if (pwt->luma_weight[i][list][0] != luma_def ||
  61. pwt->luma_weight[i][list][1] != 0) {
  62. pwt->use_weight = 1;
  63. pwt->luma_weight_flag[list] = 1;
  64. }
  65. } else {
  66. pwt->luma_weight[i][list][0] = luma_def;
  67. pwt->luma_weight[i][list][1] = 0;
  68. }
  69. if (sps->chroma_format_idc) {
  70. chroma_weight_flag = get_bits1(gb);
  71. if (chroma_weight_flag) {
  72. int j;
  73. for (j = 0; j < 2; j++) {
  74. pwt->chroma_weight[i][list][j][0] = get_se_golomb(gb);
  75. pwt->chroma_weight[i][list][j][1] = get_se_golomb(gb);
  76. if ((int8_t)pwt->chroma_weight[i][list][j][0] != pwt->chroma_weight[i][list][j][0] ||
  77. (int8_t)pwt->chroma_weight[i][list][j][1] != pwt->chroma_weight[i][list][j][1]) {
  78. pwt->chroma_weight[i][list][j][0] = chroma_def;
  79. pwt->chroma_weight[i][list][j][1] = 0;
  80. goto out_range_weight;
  81. }
  82. if (pwt->chroma_weight[i][list][j][0] != chroma_def ||
  83. pwt->chroma_weight[i][list][j][1] != 0) {
  84. pwt->use_weight_chroma = 1;
  85. pwt->chroma_weight_flag[list] = 1;
  86. }
  87. }
  88. } else {
  89. int j;
  90. for (j = 0; j < 2; j++) {
  91. pwt->chroma_weight[i][list][j][0] = chroma_def;
  92. pwt->chroma_weight[i][list][j][1] = 0;
  93. }
  94. }
  95. }
  96. // for MBAFF
  97. if (picture_structure == PICT_FRAME) {
  98. pwt->luma_weight[16 + 2 * i][list][0] = pwt->luma_weight[16 + 2 * i + 1][list][0] = pwt->luma_weight[i][list][0];
  99. pwt->luma_weight[16 + 2 * i][list][1] = pwt->luma_weight[16 + 2 * i + 1][list][1] = pwt->luma_weight[i][list][1];
  100. if (sps->chroma_format_idc) {
  101. for (j = 0; j < 2; j++) {
  102. pwt->chroma_weight[16 + 2 * i][list][j][0] = pwt->chroma_weight[16 + 2 * i + 1][list][j][0] = pwt->chroma_weight[i][list][j][0];
  103. pwt->chroma_weight[16 + 2 * i][list][j][1] = pwt->chroma_weight[16 + 2 * i + 1][list][j][1] = pwt->chroma_weight[i][list][j][1];
  104. }
  105. }
  106. }
  107. }
  108. if (slice_type_nos != AV_PICTURE_TYPE_B)
  109. break;
  110. }
  111. pwt->use_weight = pwt->use_weight || pwt->use_weight_chroma;
  112. return 0;
  113. out_range_weight:
  114. avpriv_request_sample(logctx, "Out of range weight\n");
  115. return AVERROR_INVALIDDATA;
  116. }
  117. /**
  118. * Check if the top & left blocks are available if needed and
  119. * change the dc mode so it only uses the available blocks.
  120. */
  121. int ff_h264_check_intra4x4_pred_mode(int8_t *pred_mode_cache, void *logctx,
  122. int top_samples_available, int left_samples_available)
  123. {
  124. static const int8_t top[12] = {
  125. -1, 0, LEFT_DC_PRED, -1, -1, -1, -1, -1, 0
  126. };
  127. static const int8_t left[12] = {
  128. 0, -1, TOP_DC_PRED, 0, -1, -1, -1, 0, -1, DC_128_PRED
  129. };
  130. int i;
  131. if (!(top_samples_available & 0x8000)) {
  132. for (i = 0; i < 4; i++) {
  133. int status = top[pred_mode_cache[scan8[0] + i]];
  134. if (status < 0) {
  135. av_log(logctx, AV_LOG_ERROR,
  136. "top block unavailable for requested intra mode %d\n",
  137. status);
  138. return AVERROR_INVALIDDATA;
  139. } else if (status) {
  140. pred_mode_cache[scan8[0] + i] = status;
  141. }
  142. }
  143. }
  144. if ((left_samples_available & 0x8888) != 0x8888) {
  145. static const int mask[4] = { 0x8000, 0x2000, 0x80, 0x20 };
  146. for (i = 0; i < 4; i++)
  147. if (!(left_samples_available & mask[i])) {
  148. int status = left[pred_mode_cache[scan8[0] + 8 * i]];
  149. if (status < 0) {
  150. av_log(logctx, AV_LOG_ERROR,
  151. "left block unavailable for requested intra4x4 mode %d\n",
  152. status);
  153. return AVERROR_INVALIDDATA;
  154. } else if (status) {
  155. pred_mode_cache[scan8[0] + 8 * i] = status;
  156. }
  157. }
  158. }
  159. return 0;
  160. }
  161. /**
  162. * Check if the top & left blocks are available if needed and
  163. * change the dc mode so it only uses the available blocks.
  164. */
  165. int ff_h264_check_intra_pred_mode(void *logctx, int top_samples_available,
  166. int left_samples_available,
  167. int mode, int is_chroma)
  168. {
  169. static const int8_t top[4] = { LEFT_DC_PRED8x8, 1, -1, -1 };
  170. static const int8_t left[5] = { TOP_DC_PRED8x8, -1, 2, -1, DC_128_PRED8x8 };
  171. if (mode > 3U) {
  172. av_log(logctx, AV_LOG_ERROR,
  173. "out of range intra chroma pred mode\n");
  174. return AVERROR_INVALIDDATA;
  175. }
  176. if (!(top_samples_available & 0x8000)) {
  177. mode = top[mode];
  178. if (mode < 0) {
  179. av_log(logctx, AV_LOG_ERROR,
  180. "top block unavailable for requested intra mode\n");
  181. return AVERROR_INVALIDDATA;
  182. }
  183. }
  184. if ((left_samples_available & 0x8080) != 0x8080) {
  185. mode = left[mode];
  186. if (mode < 0) {
  187. av_log(logctx, AV_LOG_ERROR,
  188. "left block unavailable for requested intra mode\n");
  189. return AVERROR_INVALIDDATA;
  190. }
  191. if (is_chroma && (left_samples_available & 0x8080)) {
  192. // mad cow disease mode, aka MBAFF + constrained_intra_pred
  193. mode = ALZHEIMER_DC_L0T_PRED8x8 +
  194. (!(left_samples_available & 0x8000)) +
  195. 2 * (mode == DC_128_PRED8x8);
  196. }
  197. }
  198. return mode;
  199. }
  200. int ff_h264_parse_ref_count(int *plist_count, int ref_count[2],
  201. GetBitContext *gb, const PPS *pps,
  202. int slice_type_nos, int picture_structure, void *logctx)
  203. {
  204. int list_count;
  205. int num_ref_idx_active_override_flag;
  206. // set defaults, might be overridden a few lines later
  207. ref_count[0] = pps->ref_count[0];
  208. ref_count[1] = pps->ref_count[1];
  209. if (slice_type_nos != AV_PICTURE_TYPE_I) {
  210. unsigned max[2];
  211. max[0] = max[1] = picture_structure == PICT_FRAME ? 15 : 31;
  212. num_ref_idx_active_override_flag = get_bits1(gb);
  213. if (num_ref_idx_active_override_flag) {
  214. ref_count[0] = get_ue_golomb(gb) + 1;
  215. if (slice_type_nos == AV_PICTURE_TYPE_B) {
  216. ref_count[1] = get_ue_golomb(gb) + 1;
  217. } else
  218. // full range is spec-ok in this case, even for frames
  219. ref_count[1] = 1;
  220. }
  221. if (ref_count[0] - 1 > max[0] || ref_count[1] - 1 > max[1]) {
  222. av_log(logctx, AV_LOG_ERROR, "reference overflow %u > %u or %u > %u\n",
  223. ref_count[0] - 1, max[0], ref_count[1] - 1, max[1]);
  224. ref_count[0] = ref_count[1] = 0;
  225. *plist_count = 0;
  226. goto fail;
  227. }
  228. if (slice_type_nos == AV_PICTURE_TYPE_B)
  229. list_count = 2;
  230. else
  231. list_count = 1;
  232. } else {
  233. list_count = 0;
  234. ref_count[0] = ref_count[1] = 0;
  235. }
  236. *plist_count = list_count;
  237. return 0;
  238. fail:
  239. *plist_count = 0;
  240. ref_count[0] = 0;
  241. ref_count[1] = 0;
  242. return AVERROR_INVALIDDATA;
  243. }
  244. int ff_h264_init_poc(int pic_field_poc[2], int *pic_poc,
  245. const SPS *sps, H264POCContext *pc,
  246. int picture_structure, int nal_ref_idc)
  247. {
  248. const int max_frame_num = 1 << sps->log2_max_frame_num;
  249. int field_poc[2];
  250. pc->frame_num_offset = pc->prev_frame_num_offset;
  251. if (pc->frame_num < pc->prev_frame_num)
  252. pc->frame_num_offset += max_frame_num;
  253. if (sps->poc_type == 0) {
  254. const int max_poc_lsb = 1 << sps->log2_max_poc_lsb;
  255. if (pc->poc_lsb < pc->prev_poc_lsb &&
  256. pc->prev_poc_lsb - pc->poc_lsb >= max_poc_lsb / 2)
  257. pc->poc_msb = pc->prev_poc_msb + max_poc_lsb;
  258. else if (pc->poc_lsb > pc->prev_poc_lsb &&
  259. pc->prev_poc_lsb - pc->poc_lsb < -max_poc_lsb / 2)
  260. pc->poc_msb = pc->prev_poc_msb - max_poc_lsb;
  261. else
  262. pc->poc_msb = pc->prev_poc_msb;
  263. field_poc[0] =
  264. field_poc[1] = pc->poc_msb + pc->poc_lsb;
  265. if (picture_structure == PICT_FRAME)
  266. field_poc[1] += pc->delta_poc_bottom;
  267. } else if (sps->poc_type == 1) {
  268. int abs_frame_num;
  269. int64_t expected_delta_per_poc_cycle, expectedpoc;
  270. int i;
  271. if (sps->poc_cycle_length != 0)
  272. abs_frame_num = pc->frame_num_offset + pc->frame_num;
  273. else
  274. abs_frame_num = 0;
  275. if (nal_ref_idc == 0 && abs_frame_num > 0)
  276. abs_frame_num--;
  277. expected_delta_per_poc_cycle = 0;
  278. for (i = 0; i < sps->poc_cycle_length; i++)
  279. // FIXME integrate during sps parse
  280. expected_delta_per_poc_cycle += sps->offset_for_ref_frame[i];
  281. if (abs_frame_num > 0) {
  282. int poc_cycle_cnt = (abs_frame_num - 1) / sps->poc_cycle_length;
  283. int frame_num_in_poc_cycle = (abs_frame_num - 1) % sps->poc_cycle_length;
  284. expectedpoc = poc_cycle_cnt * expected_delta_per_poc_cycle;
  285. for (i = 0; i <= frame_num_in_poc_cycle; i++)
  286. expectedpoc = expectedpoc + sps->offset_for_ref_frame[i];
  287. } else
  288. expectedpoc = 0;
  289. if (nal_ref_idc == 0)
  290. expectedpoc = expectedpoc + sps->offset_for_non_ref_pic;
  291. field_poc[0] = expectedpoc + pc->delta_poc[0];
  292. field_poc[1] = field_poc[0] + sps->offset_for_top_to_bottom_field;
  293. if (picture_structure == PICT_FRAME)
  294. field_poc[1] += pc->delta_poc[1];
  295. } else {
  296. int poc = 2 * (pc->frame_num_offset + pc->frame_num);
  297. if (!nal_ref_idc)
  298. poc--;
  299. field_poc[0] = poc;
  300. field_poc[1] = poc;
  301. }
  302. if (picture_structure != PICT_BOTTOM_FIELD)
  303. pic_field_poc[0] = field_poc[0];
  304. if (picture_structure != PICT_TOP_FIELD)
  305. pic_field_poc[1] = field_poc[1];
  306. *pic_poc = FFMIN(pic_field_poc[0], pic_field_poc[1]);
  307. return 0;
  308. }
  309. static int decode_extradata_ps(const uint8_t *data, int size, H264ParamSets *ps,
  310. int is_avc, void *logctx)
  311. {
  312. H2645Packet pkt = { 0 };
  313. int i, ret = 0;
  314. ret = ff_h2645_packet_split(&pkt, data, size, logctx, is_avc, 2, AV_CODEC_ID_H264, 1);
  315. if (ret < 0) {
  316. ret = 0;
  317. goto fail;
  318. }
  319. for (i = 0; i < pkt.nb_nals; i++) {
  320. H2645NAL *nal = &pkt.nals[i];
  321. switch (nal->type) {
  322. case H264_NAL_SPS:
  323. ret = ff_h264_decode_seq_parameter_set(&nal->gb, logctx, ps, 0);
  324. if (ret < 0)
  325. goto fail;
  326. break;
  327. case H264_NAL_PPS:
  328. ret = ff_h264_decode_picture_parameter_set(&nal->gb, logctx, ps,
  329. nal->size_bits);
  330. if (ret < 0)
  331. goto fail;
  332. break;
  333. default:
  334. av_log(logctx, AV_LOG_VERBOSE, "Ignoring NAL type %d in extradata\n",
  335. nal->type);
  336. break;
  337. }
  338. }
  339. fail:
  340. ff_h2645_packet_uninit(&pkt);
  341. return ret;
  342. }
  343. /* There are (invalid) samples in the wild with mp4-style extradata, where the
  344. * parameter sets are stored unescaped (i.e. as RBSP).
  345. * This function catches the parameter set decoding failure and tries again
  346. * after escaping it */
  347. static int decode_extradata_ps_mp4(const uint8_t *buf, int buf_size, H264ParamSets *ps,
  348. int err_recognition, void *logctx)
  349. {
  350. int ret;
  351. ret = decode_extradata_ps(buf, buf_size, ps, 1, logctx);
  352. if (ret < 0 && !(err_recognition & AV_EF_EXPLODE)) {
  353. GetByteContext gbc;
  354. PutByteContext pbc;
  355. uint8_t *escaped_buf;
  356. int escaped_buf_size;
  357. av_log(logctx, AV_LOG_WARNING,
  358. "SPS decoding failure, trying again after escaping the NAL\n");
  359. if (buf_size / 2 >= (INT16_MAX - AV_INPUT_BUFFER_PADDING_SIZE) / 3)
  360. return AVERROR(ERANGE);
  361. escaped_buf_size = buf_size * 3 / 2 + AV_INPUT_BUFFER_PADDING_SIZE;
  362. escaped_buf = av_mallocz(escaped_buf_size);
  363. if (!escaped_buf)
  364. return AVERROR(ENOMEM);
  365. bytestream2_init(&gbc, buf, buf_size);
  366. bytestream2_init_writer(&pbc, escaped_buf, escaped_buf_size);
  367. while (bytestream2_get_bytes_left(&gbc)) {
  368. if (bytestream2_get_bytes_left(&gbc) >= 3 &&
  369. bytestream2_peek_be24(&gbc) <= 3) {
  370. bytestream2_put_be24(&pbc, 3);
  371. bytestream2_skip(&gbc, 2);
  372. } else
  373. bytestream2_put_byte(&pbc, bytestream2_get_byte(&gbc));
  374. }
  375. escaped_buf_size = bytestream2_tell_p(&pbc);
  376. AV_WB16(escaped_buf, escaped_buf_size - 2);
  377. ret = decode_extradata_ps(escaped_buf, escaped_buf_size, ps, 1, logctx);
  378. av_freep(&escaped_buf);
  379. if (ret < 0)
  380. return ret;
  381. }
  382. return 0;
  383. }
  384. int ff_h264_decode_extradata(const uint8_t *data, int size, H264ParamSets *ps,
  385. int *is_avc, int *nal_length_size,
  386. int err_recognition, void *logctx)
  387. {
  388. int ret;
  389. if (!data || size <= 0)
  390. return -1;
  391. if (data[0] == 1) {
  392. int i, cnt, nalsize;
  393. const uint8_t *p = data;
  394. *is_avc = 1;
  395. if (size < 7) {
  396. av_log(logctx, AV_LOG_ERROR, "avcC %d too short\n", size);
  397. return AVERROR_INVALIDDATA;
  398. }
  399. // Decode sps from avcC
  400. cnt = *(p + 5) & 0x1f; // Number of sps
  401. p += 6;
  402. for (i = 0; i < cnt; i++) {
  403. nalsize = AV_RB16(p) + 2;
  404. if (nalsize > size - (p - data))
  405. return AVERROR_INVALIDDATA;
  406. ret = decode_extradata_ps_mp4(p, nalsize, ps, err_recognition, logctx);
  407. if (ret < 0) {
  408. av_log(logctx, AV_LOG_ERROR,
  409. "Decoding sps %d from avcC failed\n", i);
  410. return ret;
  411. }
  412. p += nalsize;
  413. }
  414. // Decode pps from avcC
  415. cnt = *(p++); // Number of pps
  416. for (i = 0; i < cnt; i++) {
  417. nalsize = AV_RB16(p) + 2;
  418. if (nalsize > size - (p - data))
  419. return AVERROR_INVALIDDATA;
  420. ret = decode_extradata_ps_mp4(p, nalsize, ps, err_recognition, logctx);
  421. if (ret < 0) {
  422. av_log(logctx, AV_LOG_ERROR,
  423. "Decoding pps %d from avcC failed\n", i);
  424. return ret;
  425. }
  426. p += nalsize;
  427. }
  428. // Store right nal length size that will be used to parse all other nals
  429. *nal_length_size = (data[4] & 0x03) + 1;
  430. } else {
  431. *is_avc = 0;
  432. ret = decode_extradata_ps(data, size, ps, 0, logctx);
  433. if (ret < 0)
  434. return ret;
  435. }
  436. return size;
  437. }
  438. /**
  439. * Compute profile from profile_idc and constraint_set?_flags.
  440. *
  441. * @param sps SPS
  442. *
  443. * @return profile as defined by FF_PROFILE_H264_*
  444. */
  445. int ff_h264_get_profile(const SPS *sps)
  446. {
  447. int profile = sps->profile_idc;
  448. switch (sps->profile_idc) {
  449. case FF_PROFILE_H264_BASELINE:
  450. // constraint_set1_flag set to 1
  451. profile |= (sps->constraint_set_flags & 1 << 1) ? FF_PROFILE_H264_CONSTRAINED : 0;
  452. break;
  453. case FF_PROFILE_H264_HIGH_10:
  454. case FF_PROFILE_H264_HIGH_422:
  455. case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
  456. // constraint_set3_flag set to 1
  457. profile |= (sps->constraint_set_flags & 1 << 3) ? FF_PROFILE_H264_INTRA : 0;
  458. break;
  459. }
  460. return profile;
  461. }