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.

509 lines
15KB

  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 Libav.
  8. *
  9. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "libavutil/avassert.h"
  24. #include "libavutil/pixdesc.h"
  25. #include "internal.h"
  26. #include "thread.h"
  27. #include "hevc.h"
  28. #include "hevcdec.h"
  29. void ff_hevc_unref_frame(HEVCContext *s, HEVCFrame *frame, int flags)
  30. {
  31. /* frame->frame can be NULL if context init failed */
  32. if (!frame->frame || !frame->frame->buf[0])
  33. return;
  34. frame->flags &= ~flags;
  35. if (!frame->flags) {
  36. ff_thread_release_buffer(s->avctx, &frame->tf);
  37. av_buffer_unref(&frame->tab_mvf_buf);
  38. frame->tab_mvf = NULL;
  39. av_buffer_unref(&frame->rpl_buf);
  40. av_buffer_unref(&frame->rpl_tab_buf);
  41. frame->rpl_tab = NULL;
  42. frame->refPicList = NULL;
  43. frame->collocated_ref = NULL;
  44. av_buffer_unref(&frame->hwaccel_priv_buf);
  45. frame->hwaccel_picture_private = NULL;
  46. }
  47. }
  48. RefPicList *ff_hevc_get_ref_list(HEVCContext *s, HEVCFrame *ref, int x0, int y0)
  49. {
  50. int x_cb = x0 >> s->ps.sps->log2_ctb_size;
  51. int y_cb = y0 >> s->ps.sps->log2_ctb_size;
  52. int pic_width_cb = (s->ps.sps->width + (1 << s->ps.sps->log2_ctb_size) - 1) >>
  53. s->ps.sps->log2_ctb_size;
  54. int ctb_addr_ts = s->ps.pps->ctb_addr_rs_to_ts[y_cb * pic_width_cb + x_cb];
  55. return (RefPicList *)ref->rpl_tab[ctb_addr_ts];
  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->pkt.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->ps.sps->ctb_width * s->ps.sps->ctb_height;
  94. for (j = 0; j < frame->ctb_count; j++)
  95. frame->rpl_tab[j] = (RefPicListTab *)frame->rpl_buf->data;
  96. if (s->avctx->hwaccel) {
  97. const AVHWAccel *hwaccel = s->avctx->hwaccel;
  98. av_assert0(!frame->hwaccel_picture_private);
  99. if (hwaccel->frame_priv_data_size) {
  100. frame->hwaccel_priv_buf = av_buffer_allocz(hwaccel->frame_priv_data_size);
  101. if (!frame->hwaccel_priv_buf)
  102. goto fail;
  103. frame->hwaccel_picture_private = frame->hwaccel_priv_buf->data;
  104. }
  105. }
  106. return frame;
  107. fail:
  108. ff_hevc_unref_frame(s, frame, ~0);
  109. return NULL;
  110. }
  111. av_log(s->avctx, AV_LOG_ERROR, "Error allocating frame, DPB full.\n");
  112. return NULL;
  113. }
  114. int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc)
  115. {
  116. HEVCFrame *ref;
  117. int i;
  118. /* check that this POC doesn't already exist */
  119. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  120. HEVCFrame *frame = &s->DPB[i];
  121. if (frame->frame->buf[0] && frame->sequence == s->seq_decode &&
  122. frame->poc == poc) {
  123. av_log(s->avctx, AV_LOG_ERROR, "Duplicate POC in a sequence: %d.\n",
  124. poc);
  125. return AVERROR_INVALIDDATA;
  126. }
  127. }
  128. ref = alloc_frame(s);
  129. if (!ref)
  130. return AVERROR(ENOMEM);
  131. *frame = ref->frame;
  132. s->ref = ref;
  133. if (s->sh.pic_output_flag)
  134. ref->flags = HEVC_FRAME_FLAG_OUTPUT | HEVC_FRAME_FLAG_SHORT_REF;
  135. else
  136. ref->flags = HEVC_FRAME_FLAG_SHORT_REF;
  137. ref->poc = poc;
  138. ref->sequence = s->seq_decode;
  139. ref->window = s->ps.sps->output_window;
  140. return 0;
  141. }
  142. int ff_hevc_output_frame(HEVCContext *s, AVFrame *out, int flush)
  143. {
  144. do {
  145. int nb_output = 0;
  146. int min_poc = INT_MAX;
  147. int i, min_idx, ret;
  148. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  149. HEVCFrame *frame = &s->DPB[i];
  150. if ((frame->flags & HEVC_FRAME_FLAG_OUTPUT) &&
  151. frame->sequence == s->seq_output) {
  152. nb_output++;
  153. if (frame->poc < min_poc) {
  154. min_poc = frame->poc;
  155. min_idx = i;
  156. }
  157. }
  158. }
  159. /* wait for more frames before output */
  160. if (!flush && s->seq_output == s->seq_decode && s->ps.sps &&
  161. nb_output <= s->ps.sps->temporal_layer[s->ps.sps->max_sub_layers - 1].num_reorder_pics)
  162. return 0;
  163. if (nb_output) {
  164. HEVCFrame *frame = &s->DPB[min_idx];
  165. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->frame->format);
  166. int pixel_shift;
  167. if (!desc)
  168. return AVERROR_BUG;
  169. pixel_shift = desc->comp[0].depth > 8;
  170. ret = av_frame_ref(out, frame->frame);
  171. ff_hevc_unref_frame(s, frame, HEVC_FRAME_FLAG_OUTPUT);
  172. if (ret < 0)
  173. return ret;
  174. for (i = 0; i < 3; i++) {
  175. int hshift = (i > 0) ? desc->log2_chroma_w : 0;
  176. int vshift = (i > 0) ? desc->log2_chroma_h : 0;
  177. int off = ((frame->window.left_offset >> hshift) << pixel_shift) +
  178. (frame->window.top_offset >> vshift) * out->linesize[i];
  179. out->data[i] += off;
  180. }
  181. av_log(s->avctx, AV_LOG_DEBUG,
  182. "Output frame with POC %d.\n", frame->poc);
  183. return 1;
  184. }
  185. if (s->seq_output != s->seq_decode)
  186. s->seq_output = (s->seq_output + 1) & 0xff;
  187. else
  188. break;
  189. } while (1);
  190. return 0;
  191. }
  192. static int init_slice_rpl(HEVCContext *s)
  193. {
  194. HEVCFrame *frame = s->ref;
  195. int ctb_count = frame->ctb_count;
  196. int ctb_addr_ts = s->ps.pps->ctb_addr_rs_to_ts[s->sh.slice_segment_addr];
  197. int i;
  198. if (s->slice_idx >= frame->rpl_buf->size / sizeof(RefPicListTab))
  199. return AVERROR_INVALIDDATA;
  200. for (i = ctb_addr_ts; i < ctb_count; i++)
  201. frame->rpl_tab[i] = (RefPicListTab *)frame->rpl_buf->data + s->slice_idx;
  202. frame->refPicList = (RefPicList *)frame->rpl_tab[ctb_addr_ts];
  203. return 0;
  204. }
  205. int ff_hevc_slice_rpl(HEVCContext *s)
  206. {
  207. SliceHeader *sh = &s->sh;
  208. uint8_t nb_list = sh->slice_type == HEVC_SLICE_B ? 2 : 1;
  209. uint8_t list_idx;
  210. int i, j, ret;
  211. ret = init_slice_rpl(s);
  212. if (ret < 0)
  213. return ret;
  214. if (!(s->rps[ST_CURR_BEF].nb_refs + s->rps[ST_CURR_AFT].nb_refs +
  215. s->rps[LT_CURR].nb_refs)) {
  216. av_log(s->avctx, AV_LOG_ERROR, "Zero refs in the frame RPS.\n");
  217. return AVERROR_INVALIDDATA;
  218. }
  219. for (list_idx = 0; list_idx < nb_list; list_idx++) {
  220. RefPicList rpl_tmp = { { 0 } };
  221. RefPicList *rpl = &s->ref->refPicList[list_idx];
  222. /* The order of the elements is
  223. * ST_CURR_BEF - ST_CURR_AFT - LT_CURR for the L0 and
  224. * ST_CURR_AFT - ST_CURR_BEF - LT_CURR for the L1 */
  225. int cand_lists[3] = { list_idx ? ST_CURR_AFT : ST_CURR_BEF,
  226. list_idx ? ST_CURR_BEF : ST_CURR_AFT,
  227. LT_CURR };
  228. /* concatenate the candidate lists for the current frame */
  229. while (rpl_tmp.nb_refs < sh->nb_refs[list_idx]) {
  230. for (i = 0; i < FF_ARRAY_ELEMS(cand_lists); i++) {
  231. RefPicList *rps = &s->rps[cand_lists[i]];
  232. for (j = 0; j < rps->nb_refs && rpl_tmp.nb_refs < HEVC_MAX_REFS; j++) {
  233. rpl_tmp.list[rpl_tmp.nb_refs] = rps->list[j];
  234. rpl_tmp.ref[rpl_tmp.nb_refs] = rps->ref[j];
  235. rpl_tmp.isLongTerm[rpl_tmp.nb_refs] = i == 2;
  236. rpl_tmp.nb_refs++;
  237. }
  238. }
  239. }
  240. /* reorder the references if necessary */
  241. if (sh->rpl_modification_flag[list_idx]) {
  242. for (i = 0; i < sh->nb_refs[list_idx]; i++) {
  243. int idx = sh->list_entry_lx[list_idx][i];
  244. if (idx >= rpl_tmp.nb_refs) {
  245. av_log(s->avctx, AV_LOG_ERROR, "Invalid reference index.\n");
  246. return AVERROR_INVALIDDATA;
  247. }
  248. rpl->list[i] = rpl_tmp.list[idx];
  249. rpl->ref[i] = rpl_tmp.ref[idx];
  250. rpl->isLongTerm[i] = rpl_tmp.isLongTerm[idx];
  251. rpl->nb_refs++;
  252. }
  253. } else {
  254. memcpy(rpl, &rpl_tmp, sizeof(*rpl));
  255. rpl->nb_refs = FFMIN(rpl->nb_refs, sh->nb_refs[list_idx]);
  256. }
  257. if (sh->collocated_list == list_idx &&
  258. sh->collocated_ref_idx < rpl->nb_refs)
  259. s->ref->collocated_ref = rpl->ref[sh->collocated_ref_idx];
  260. }
  261. return 0;
  262. }
  263. static HEVCFrame *find_ref_idx(HEVCContext *s, int poc)
  264. {
  265. int i;
  266. int LtMask = (1 << s->ps.sps->log2_max_poc_lsb) - 1;
  267. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  268. HEVCFrame *ref = &s->DPB[i];
  269. if (ref->frame->buf[0] && (ref->sequence == s->seq_decode)) {
  270. if ((ref->poc & LtMask) == poc)
  271. return ref;
  272. }
  273. }
  274. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  275. HEVCFrame *ref = &s->DPB[i];
  276. if (ref->frame->buf[0] && ref->sequence == s->seq_decode) {
  277. if (ref->poc == poc || (ref->poc & LtMask) == poc)
  278. return ref;
  279. }
  280. }
  281. av_log(s->avctx, AV_LOG_ERROR,
  282. "Could not find ref with POC %d\n", poc);
  283. return NULL;
  284. }
  285. static void mark_ref(HEVCFrame *frame, int flag)
  286. {
  287. frame->flags &= ~(HEVC_FRAME_FLAG_LONG_REF | HEVC_FRAME_FLAG_SHORT_REF);
  288. frame->flags |= flag;
  289. }
  290. static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc)
  291. {
  292. HEVCFrame *frame;
  293. int i, x, y;
  294. frame = alloc_frame(s);
  295. if (!frame)
  296. return NULL;
  297. if (!s->avctx->hwaccel) {
  298. if (!s->ps.sps->pixel_shift) {
  299. for (i = 0; frame->frame->buf[i]; i++)
  300. memset(frame->frame->buf[i]->data, 1 << (s->ps.sps->bit_depth - 1),
  301. frame->frame->buf[i]->size);
  302. } else {
  303. for (i = 0; frame->frame->data[i]; i++)
  304. for (y = 0; y < (s->ps.sps->height >> s->ps.sps->vshift[i]); y++)
  305. for (x = 0; x < (s->ps.sps->width >> s->ps.sps->hshift[i]); x++) {
  306. AV_WN16(frame->frame->data[i] + y * frame->frame->linesize[i] + 2 * x,
  307. 1 << (s->ps.sps->bit_depth - 1));
  308. }
  309. }
  310. }
  311. frame->poc = poc;
  312. frame->sequence = s->seq_decode;
  313. frame->flags = 0;
  314. ff_thread_report_progress(&frame->tf, INT_MAX, 0);
  315. return frame;
  316. }
  317. /* add a reference with the given poc to the list and mark it as used in DPB */
  318. static int add_candidate_ref(HEVCContext *s, RefPicList *list,
  319. int poc, int ref_flag)
  320. {
  321. HEVCFrame *ref = find_ref_idx(s, poc);
  322. if (ref == s->ref)
  323. return AVERROR_INVALIDDATA;
  324. if (!ref) {
  325. ref = generate_missing_ref(s, poc);
  326. if (!ref)
  327. return AVERROR(ENOMEM);
  328. }
  329. list->list[list->nb_refs] = ref->poc;
  330. list->ref[list->nb_refs] = ref;
  331. list->nb_refs++;
  332. mark_ref(ref, ref_flag);
  333. return 0;
  334. }
  335. int ff_hevc_frame_rps(HEVCContext *s)
  336. {
  337. const ShortTermRPS *short_rps = s->sh.short_term_rps;
  338. const LongTermRPS *long_rps = &s->sh.long_term_rps;
  339. RefPicList *rps = s->rps;
  340. int i, ret = 0;
  341. if (!short_rps) {
  342. rps[0].nb_refs = rps[1].nb_refs = 0;
  343. return 0;
  344. }
  345. /* clear the reference flags on all frames except the current one */
  346. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  347. HEVCFrame *frame = &s->DPB[i];
  348. if (frame == s->ref)
  349. continue;
  350. mark_ref(frame, 0);
  351. }
  352. for (i = 0; i < NB_RPS_TYPE; i++)
  353. rps[i].nb_refs = 0;
  354. /* add the short refs */
  355. for (i = 0; i < short_rps->num_delta_pocs; i++) {
  356. int poc = s->poc + short_rps->delta_poc[i];
  357. int list;
  358. if (!short_rps->used[i])
  359. list = ST_FOLL;
  360. else if (i < short_rps->num_negative_pics)
  361. list = ST_CURR_BEF;
  362. else
  363. list = ST_CURR_AFT;
  364. ret = add_candidate_ref(s, &rps[list], poc, HEVC_FRAME_FLAG_SHORT_REF);
  365. if (ret < 0)
  366. goto fail;
  367. }
  368. /* add the long refs */
  369. for (i = 0; i < long_rps->nb_refs; i++) {
  370. int poc = long_rps->poc[i];
  371. int list = long_rps->used[i] ? LT_CURR : LT_FOLL;
  372. ret = add_candidate_ref(s, &rps[list], poc, HEVC_FRAME_FLAG_LONG_REF);
  373. if (ret < 0)
  374. goto fail;
  375. }
  376. fail:
  377. /* release any frames that are now unused */
  378. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++)
  379. ff_hevc_unref_frame(s, &s->DPB[i], 0);
  380. return ret;
  381. }
  382. int ff_hevc_compute_poc(HEVCContext *s, int poc_lsb)
  383. {
  384. int max_poc_lsb = 1 << s->ps.sps->log2_max_poc_lsb;
  385. int prev_poc_lsb = s->pocTid0 % max_poc_lsb;
  386. int prev_poc_msb = s->pocTid0 - prev_poc_lsb;
  387. int poc_msb;
  388. if (poc_lsb < prev_poc_lsb && prev_poc_lsb - poc_lsb >= max_poc_lsb / 2)
  389. poc_msb = prev_poc_msb + max_poc_lsb;
  390. else if (poc_lsb > prev_poc_lsb && poc_lsb - prev_poc_lsb > max_poc_lsb / 2)
  391. poc_msb = prev_poc_msb - max_poc_lsb;
  392. else
  393. poc_msb = prev_poc_msb;
  394. // For BLA picture types, POCmsb is set to 0.
  395. if (s->nal_unit_type == HEVC_NAL_BLA_W_LP ||
  396. s->nal_unit_type == HEVC_NAL_BLA_W_RADL ||
  397. s->nal_unit_type == HEVC_NAL_BLA_N_LP)
  398. poc_msb = 0;
  399. return poc_msb + poc_lsb;
  400. }
  401. int ff_hevc_frame_nb_refs(HEVCContext *s)
  402. {
  403. int ret = 0;
  404. int i;
  405. const ShortTermRPS *rps = s->sh.short_term_rps;
  406. LongTermRPS *long_rps = &s->sh.long_term_rps;
  407. if (rps) {
  408. for (i = 0; i < rps->num_negative_pics; i++)
  409. ret += !!rps->used[i];
  410. for (; i < rps->num_delta_pocs; i++)
  411. ret += !!rps->used[i];
  412. }
  413. if (long_rps) {
  414. for (i = 0; i < long_rps->nb_refs; i++)
  415. ret += !!long_rps->used[i];
  416. }
  417. return ret;
  418. }