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.

546 lines
17KB

  1. /*
  2. * HEVC video decoder
  3. *
  4. * Copyright (C) 2012 - 2013 Guillaume Martres
  5. * Copyright (C) 2012 - 2013 Gildas Cocherel
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "libavutil/pixdesc.h"
  24. #include "internal.h"
  25. #include "thread.h"
  26. #include "hevc.h"
  27. void ff_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags)
  28. {
  29. /* frame->frame can be NULL if context init failed */
  30. if (!frame->frame || !frame->frame->buf[0])
  31. return;
  32. frame->flags &= ~flags;
  33. if (!frame->flags) {
  34. ff_thread_release_buffer(s->avctx, &frame->tf);
  35. av_buffer_unref(&frame->tab_mvf_buf);
  36. frame->tab_mvf = NULL;
  37. av_buffer_unref(&frame->rpl_buf);
  38. av_buffer_unref(&frame->rpl_tab_buf);
  39. frame->rpl_tab = NULL;
  40. frame->refPicList = NULL;
  41. frame->collocated_ref = NULL;
  42. }
  43. }
  44. RefPicList *ff_hevc_get_ref_list(HEVCContext *s, HEVCFrame *ref, int x0, int y0)
  45. {
  46. if (x0 < 0 || y0 < 0) {
  47. return s->ref->refPicList;
  48. } else {
  49. int x_cb = x0 >> s->sps->log2_ctb_size;
  50. int y_cb = y0 >> s->sps->log2_ctb_size;
  51. int pic_width_cb = (s->sps->width + (1 << s->sps->log2_ctb_size) - 1) >>
  52. s->sps->log2_ctb_size;
  53. int ctb_addr_ts = s->pps->ctb_addr_rs_to_ts[y_cb * pic_width_cb + x_cb];
  54. return (RefPicList *)ref->rpl_tab[ctb_addr_ts];
  55. }
  56. }
  57. void ff_hevc_clear_refs(HEVCContext *s)
  58. {
  59. int i;
  60. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++)
  61. ff_hevc_unref_frame(s, &s->DPB[i],
  62. HEVC_FRAME_FLAG_SHORT_REF |
  63. HEVC_FRAME_FLAG_LONG_REF);
  64. }
  65. void ff_hevc_flush_dpb(HEVCContext *s)
  66. {
  67. int i;
  68. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++)
  69. ff_hevc_unref_frame(s, &s->DPB[i], ~0);
  70. }
  71. static HEVCFrame *alloc_frame(HEVCContext *s)
  72. {
  73. int i, j, ret;
  74. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  75. HEVCFrame *frame = &s->DPB[i];
  76. if (frame->frame->buf[0])
  77. continue;
  78. ret = ff_thread_get_buffer(s->avctx, &frame->tf,
  79. AV_GET_BUFFER_FLAG_REF);
  80. if (ret < 0)
  81. return NULL;
  82. frame->rpl_buf = av_buffer_allocz(s->nb_nals * sizeof(RefPicListTab));
  83. if (!frame->rpl_buf)
  84. goto fail;
  85. frame->tab_mvf_buf = av_buffer_pool_get(s->tab_mvf_pool);
  86. if (!frame->tab_mvf_buf)
  87. goto fail;
  88. frame->tab_mvf = (MvField *)frame->tab_mvf_buf->data;
  89. frame->rpl_tab_buf = av_buffer_pool_get(s->rpl_tab_pool);
  90. if (!frame->rpl_tab_buf)
  91. goto fail;
  92. frame->rpl_tab = (RefPicListTab **)frame->rpl_tab_buf->data;
  93. frame->ctb_count = s->sps->ctb_width * s->sps->ctb_height;
  94. for (j = 0; j < frame->ctb_count; j++)
  95. frame->rpl_tab[j] = (RefPicListTab *)frame->rpl_buf->data;
  96. frame->frame->top_field_first = s->picture_struct == AV_PICTURE_STRUCTURE_TOP_FIELD;
  97. frame->frame->interlaced_frame = (s->picture_struct == AV_PICTURE_STRUCTURE_TOP_FIELD) || (s->picture_struct == AV_PICTURE_STRUCTURE_BOTTOM_FIELD);
  98. return frame;
  99. fail:
  100. ff_hevc_unref_frame(s, frame, ~0);
  101. return NULL;
  102. }
  103. av_log(s->avctx, AV_LOG_ERROR, "Error allocating frame, DPB full.\n");
  104. return NULL;
  105. }
  106. int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc)
  107. {
  108. HEVCFrame *ref;
  109. int i;
  110. /* check that this POC doesn't already exist */
  111. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  112. HEVCFrame *frame = &s->DPB[i];
  113. if (frame->frame->buf[0] && frame->sequence == s->seq_decode &&
  114. frame->poc == poc) {
  115. av_log(s->avctx, AV_LOG_ERROR, "Duplicate POC in a sequence: %d.\n",
  116. poc);
  117. return AVERROR_INVALIDDATA;
  118. }
  119. }
  120. ref = alloc_frame(s);
  121. if (!ref)
  122. return AVERROR(ENOMEM);
  123. *frame = ref->frame;
  124. s->ref = ref;
  125. if (s->sh.pic_output_flag)
  126. ref->flags = HEVC_FRAME_FLAG_OUTPUT | HEVC_FRAME_FLAG_SHORT_REF;
  127. else
  128. ref->flags = HEVC_FRAME_FLAG_SHORT_REF;
  129. ref->poc = poc;
  130. ref->sequence = s->seq_decode;
  131. ref->window = s->sps->output_window;
  132. return 0;
  133. }
  134. int ff_hevc_output_frame(HEVCContext *s, AVFrame *out, int flush)
  135. {
  136. do {
  137. int nb_output = 0;
  138. int min_poc = INT_MAX;
  139. int i, min_idx, ret;
  140. if (s->sh.no_output_of_prior_pics_flag == 1) {
  141. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  142. HEVCFrame *frame = &s->DPB[i];
  143. if (!(frame->flags & HEVC_FRAME_FLAG_BUMPING) && frame->poc != s->poc &&
  144. frame->sequence == s->seq_output) {
  145. ff_hevc_unref_frame(s, frame, HEVC_FRAME_FLAG_OUTPUT);
  146. }
  147. }
  148. }
  149. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  150. HEVCFrame *frame = &s->DPB[i];
  151. if ((frame->flags & HEVC_FRAME_FLAG_OUTPUT) &&
  152. frame->sequence == s->seq_output) {
  153. nb_output++;
  154. if (frame->poc < min_poc) {
  155. min_poc = frame->poc;
  156. min_idx = i;
  157. }
  158. }
  159. }
  160. /* wait for more frames before output */
  161. if (!flush && s->seq_output == s->seq_decode && s->sps &&
  162. nb_output <= s->sps->temporal_layer[s->sps->max_sub_layers - 1].num_reorder_pics)
  163. return 0;
  164. if (nb_output) {
  165. HEVCFrame *frame = &s->DPB[min_idx];
  166. AVFrame *dst = out;
  167. AVFrame *src = frame->frame;
  168. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(src->format);
  169. int pixel_shift = !!(desc->comp[0].depth_minus1 > 7);
  170. ret = av_frame_ref(out, src);
  171. if (frame->flags & HEVC_FRAME_FLAG_BUMPING)
  172. ff_hevc_unref_frame(s, frame, HEVC_FRAME_FLAG_OUTPUT | HEVC_FRAME_FLAG_BUMPING);
  173. else
  174. ff_hevc_unref_frame(s, frame, HEVC_FRAME_FLAG_OUTPUT);
  175. if (ret < 0)
  176. return ret;
  177. for (i = 0; i < 3; i++) {
  178. int hshift = (i > 0) ? desc->log2_chroma_w : 0;
  179. int vshift = (i > 0) ? desc->log2_chroma_h : 0;
  180. int off = ((frame->window.left_offset >> hshift) << pixel_shift) +
  181. (frame->window.top_offset >> vshift) * dst->linesize[i];
  182. dst->data[i] += off;
  183. }
  184. av_log(s->avctx, AV_LOG_DEBUG,
  185. "Output frame with POC %d.\n", frame->poc);
  186. return 1;
  187. }
  188. if (s->seq_output != s->seq_decode)
  189. s->seq_output = (s->seq_output + 1) & 0xff;
  190. else
  191. break;
  192. } while (1);
  193. return 0;
  194. }
  195. void ff_hevc_bump_frame(HEVCContext *s)
  196. {
  197. int dpb = 0;
  198. int min_poc = INT_MAX;
  199. int i;
  200. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  201. HEVCFrame *frame = &s->DPB[i];
  202. if ((frame->flags) &&
  203. frame->sequence == s->seq_output &&
  204. frame->poc != s->poc) {
  205. dpb++;
  206. }
  207. }
  208. if (s->sps && dpb >= s->sps->temporal_layer[s->sps->max_sub_layers - 1].max_dec_pic_buffering) {
  209. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  210. HEVCFrame *frame = &s->DPB[i];
  211. if ((frame->flags) &&
  212. frame->sequence == s->seq_output &&
  213. frame->poc != s->poc) {
  214. if (frame->flags == HEVC_FRAME_FLAG_OUTPUT && frame->poc < min_poc) {
  215. min_poc = frame->poc;
  216. }
  217. }
  218. }
  219. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  220. HEVCFrame *frame = &s->DPB[i];
  221. if (frame->flags & HEVC_FRAME_FLAG_OUTPUT &&
  222. frame->sequence == s->seq_output &&
  223. frame->poc <= min_poc) {
  224. frame->flags |= HEVC_FRAME_FLAG_BUMPING;
  225. }
  226. }
  227. dpb--;
  228. }
  229. }
  230. static int init_slice_rpl(HEVCContext *s)
  231. {
  232. HEVCFrame *frame = s->ref;
  233. int ctb_count = frame->ctb_count;
  234. int ctb_addr_ts = s->pps->ctb_addr_rs_to_ts[s->sh.slice_segment_addr];
  235. int i;
  236. if (s->slice_idx >= frame->rpl_buf->size / sizeof(RefPicListTab))
  237. return AVERROR_INVALIDDATA;
  238. for (i = ctb_addr_ts; i < ctb_count; i++)
  239. frame->rpl_tab[i] = (RefPicListTab *)frame->rpl_buf->data + s->slice_idx;
  240. frame->refPicList = (RefPicList *)frame->rpl_tab[ctb_addr_ts];
  241. return 0;
  242. }
  243. int ff_hevc_slice_rpl(HEVCContext *s)
  244. {
  245. SliceHeader *sh = &s->sh;
  246. uint8_t nb_list = sh->slice_type == B_SLICE ? 2 : 1;
  247. uint8_t list_idx;
  248. int i, j, ret;
  249. ret = init_slice_rpl(s);
  250. if (ret < 0)
  251. return ret;
  252. if (!(s->rps[ST_CURR_BEF].nb_refs + s->rps[ST_CURR_AFT].nb_refs +
  253. s->rps[LT_CURR].nb_refs)) {
  254. av_log(s->avctx, AV_LOG_ERROR, "Zero refs in the frame RPS.\n");
  255. return AVERROR_INVALIDDATA;
  256. }
  257. for (list_idx = 0; list_idx < nb_list; list_idx++) {
  258. RefPicList rpl_tmp = { { 0 } };
  259. RefPicList *rpl = &s->ref->refPicList[list_idx];
  260. /* The order of the elements is
  261. * ST_CURR_BEF - ST_CURR_AFT - LT_CURR for the L0 and
  262. * ST_CURR_AFT - ST_CURR_BEF - LT_CURR for the L1 */
  263. int cand_lists[3] = { list_idx ? ST_CURR_AFT : ST_CURR_BEF,
  264. list_idx ? ST_CURR_BEF : ST_CURR_AFT,
  265. LT_CURR };
  266. /* concatenate the candidate lists for the current frame */
  267. while (rpl_tmp.nb_refs < sh->nb_refs[list_idx]) {
  268. for (i = 0; i < FF_ARRAY_ELEMS(cand_lists); i++) {
  269. RefPicList *rps = &s->rps[cand_lists[i]];
  270. for (j = 0; j < rps->nb_refs && rpl_tmp.nb_refs < MAX_REFS; j++) {
  271. rpl_tmp.list[rpl_tmp.nb_refs] = rps->list[j];
  272. rpl_tmp.ref[rpl_tmp.nb_refs] = rps->ref[j];
  273. rpl_tmp.isLongTerm[rpl_tmp.nb_refs] = i == 2;
  274. rpl_tmp.nb_refs++;
  275. }
  276. }
  277. }
  278. /* reorder the references if necessary */
  279. if (sh->rpl_modification_flag[list_idx]) {
  280. for (i = 0; i < sh->nb_refs[list_idx]; i++) {
  281. int idx = sh->list_entry_lx[list_idx][i];
  282. if (idx >= rpl_tmp.nb_refs) {
  283. av_log(s->avctx, AV_LOG_ERROR, "Invalid reference index.\n");
  284. return AVERROR_INVALIDDATA;
  285. }
  286. rpl->list[i] = rpl_tmp.list[idx];
  287. rpl->ref[i] = rpl_tmp.ref[idx];
  288. rpl->isLongTerm[i] = rpl_tmp.isLongTerm[idx];
  289. rpl->nb_refs++;
  290. }
  291. } else {
  292. memcpy(rpl, &rpl_tmp, sizeof(*rpl));
  293. rpl->nb_refs = FFMIN(rpl->nb_refs, sh->nb_refs[list_idx]);
  294. }
  295. if (sh->collocated_list == list_idx &&
  296. sh->collocated_ref_idx < rpl->nb_refs)
  297. s->ref->collocated_ref = rpl->ref[sh->collocated_ref_idx];
  298. }
  299. return 0;
  300. }
  301. static HEVCFrame *find_ref_idx(HEVCContext *s, int poc)
  302. {
  303. int i;
  304. int LtMask = (1 << s->sps->log2_max_poc_lsb) - 1;
  305. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  306. HEVCFrame *ref = &s->DPB[i];
  307. if (ref->frame->buf[0] && (ref->sequence == s->seq_decode)) {
  308. if ((ref->poc & LtMask) == poc)
  309. return ref;
  310. }
  311. }
  312. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  313. HEVCFrame *ref = &s->DPB[i];
  314. if (ref->frame->buf[0] && ref->sequence == s->seq_decode) {
  315. if (ref->poc == poc || (ref->poc & LtMask) == poc)
  316. return ref;
  317. }
  318. }
  319. av_log(s->avctx, AV_LOG_ERROR,
  320. "Could not find ref with POC %d\n", poc);
  321. return NULL;
  322. }
  323. static void mark_ref(HEVCFrame *frame, int flag)
  324. {
  325. frame->flags &= ~(HEVC_FRAME_FLAG_LONG_REF | HEVC_FRAME_FLAG_SHORT_REF);
  326. frame->flags |= flag;
  327. }
  328. static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc)
  329. {
  330. HEVCFrame *frame;
  331. int i, x, y;
  332. frame = alloc_frame(s);
  333. if (!frame)
  334. return NULL;
  335. if (!s->sps->pixel_shift) {
  336. for (i = 0; frame->frame->buf[i]; i++)
  337. memset(frame->frame->buf[i]->data, 1 << (s->sps->bit_depth - 1),
  338. frame->frame->buf[i]->size);
  339. } else {
  340. for (i = 0; frame->frame->data[i]; i++)
  341. for (y = 0; y < (s->sps->height >> s->sps->vshift[i]); y++)
  342. for (x = 0; x < (s->sps->width >> s->sps->hshift[i]); x++) {
  343. AV_WN16(frame->frame->data[i] + y * frame->frame->linesize[i] + 2 * x,
  344. 1 << (s->sps->bit_depth - 1));
  345. }
  346. }
  347. frame->poc = poc;
  348. frame->sequence = s->seq_decode;
  349. frame->flags = 0;
  350. if (s->threads_type == FF_THREAD_FRAME)
  351. ff_thread_report_progress(&frame->tf, INT_MAX, 0);
  352. return frame;
  353. }
  354. /* add a reference with the given poc to the list and mark it as used in DPB */
  355. static int add_candidate_ref(HEVCContext *s, RefPicList *list,
  356. int poc, int ref_flag)
  357. {
  358. HEVCFrame *ref = find_ref_idx(s, poc);
  359. if (ref == s->ref)
  360. return AVERROR_INVALIDDATA;
  361. if (!ref) {
  362. ref = generate_missing_ref(s, poc);
  363. if (!ref)
  364. return AVERROR(ENOMEM);
  365. }
  366. list->list[list->nb_refs] = ref->poc;
  367. list->ref[list->nb_refs] = ref;
  368. list->nb_refs++;
  369. mark_ref(ref, ref_flag);
  370. return 0;
  371. }
  372. int ff_hevc_frame_rps(HEVCContext *s)
  373. {
  374. const ShortTermRPS *short_rps = s->sh.short_term_rps;
  375. const LongTermRPS *long_rps = &s->sh.long_term_rps;
  376. RefPicList *rps = s->rps;
  377. int i, ret;
  378. if (!short_rps) {
  379. rps[0].nb_refs = rps[1].nb_refs = 0;
  380. return 0;
  381. }
  382. /* clear the reference flags on all frames except the current one */
  383. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  384. HEVCFrame *frame = &s->DPB[i];
  385. if (frame == s->ref)
  386. continue;
  387. mark_ref(frame, 0);
  388. }
  389. for (i = 0; i < NB_RPS_TYPE; i++)
  390. rps[i].nb_refs = 0;
  391. /* add the short refs */
  392. for (i = 0; i < short_rps->num_delta_pocs; i++) {
  393. int poc = s->poc + short_rps->delta_poc[i];
  394. int list;
  395. if (!short_rps->used[i])
  396. list = ST_FOLL;
  397. else if (i < short_rps->num_negative_pics)
  398. list = ST_CURR_BEF;
  399. else
  400. list = ST_CURR_AFT;
  401. ret = add_candidate_ref(s, &rps[list], poc, HEVC_FRAME_FLAG_SHORT_REF);
  402. if (ret < 0)
  403. return ret;
  404. }
  405. /* add the long refs */
  406. for (i = 0; i < long_rps->nb_refs; i++) {
  407. int poc = long_rps->poc[i];
  408. int list = long_rps->used[i] ? LT_CURR : LT_FOLL;
  409. ret = add_candidate_ref(s, &rps[list], poc, HEVC_FRAME_FLAG_LONG_REF);
  410. if (ret < 0)
  411. return ret;
  412. }
  413. /* release any frames that are now unused */
  414. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++)
  415. ff_hevc_unref_frame(s, &s->DPB[i], 0);
  416. return 0;
  417. }
  418. int ff_hevc_compute_poc(HEVCContext *s, int poc_lsb)
  419. {
  420. int max_poc_lsb = 1 << s->sps->log2_max_poc_lsb;
  421. int prev_poc_lsb = s->pocTid0 % max_poc_lsb;
  422. int prev_poc_msb = s->pocTid0 - prev_poc_lsb;
  423. int poc_msb;
  424. if (poc_lsb < prev_poc_lsb && prev_poc_lsb - poc_lsb >= max_poc_lsb / 2)
  425. poc_msb = prev_poc_msb + max_poc_lsb;
  426. else if (poc_lsb > prev_poc_lsb && poc_lsb - prev_poc_lsb > max_poc_lsb / 2)
  427. poc_msb = prev_poc_msb - max_poc_lsb;
  428. else
  429. poc_msb = prev_poc_msb;
  430. // For BLA picture types, POCmsb is set to 0.
  431. if (s->nal_unit_type == NAL_BLA_W_LP ||
  432. s->nal_unit_type == NAL_BLA_W_RADL ||
  433. s->nal_unit_type == NAL_BLA_N_LP)
  434. poc_msb = 0;
  435. return poc_msb + poc_lsb;
  436. }
  437. int ff_hevc_frame_nb_refs(HEVCContext *s)
  438. {
  439. int ret = 0;
  440. int i;
  441. const ShortTermRPS *rps = s->sh.short_term_rps;
  442. LongTermRPS *long_rps = &s->sh.long_term_rps;
  443. if (rps) {
  444. for (i = 0; i < rps->num_negative_pics; i++)
  445. ret += !!rps->used[i];
  446. for (; i < rps->num_delta_pocs; i++)
  447. ret += !!rps->used[i];
  448. }
  449. if (long_rps) {
  450. for (i = 0; i < long_rps->nb_refs; i++)
  451. ret += !!long_rps->used[i];
  452. }
  453. return ret;
  454. }