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.

498 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->frame->crop_left = s->ps.sps->output_window.left_offset;
  140. ref->frame->crop_right = s->ps.sps->output_window.right_offset;
  141. ref->frame->crop_top = s->ps.sps->output_window.top_offset;
  142. ref->frame->crop_bottom = s->ps.sps->output_window.bottom_offset;
  143. return 0;
  144. }
  145. int ff_hevc_output_frame(HEVCContext *s, AVFrame *out, int flush)
  146. {
  147. do {
  148. int nb_output = 0;
  149. int min_poc = INT_MAX;
  150. int i, min_idx, ret;
  151. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  152. HEVCFrame *frame = &s->DPB[i];
  153. if ((frame->flags & HEVC_FRAME_FLAG_OUTPUT) &&
  154. frame->sequence == s->seq_output) {
  155. nb_output++;
  156. if (frame->poc < min_poc) {
  157. min_poc = frame->poc;
  158. min_idx = i;
  159. }
  160. }
  161. }
  162. /* wait for more frames before output */
  163. if (!flush && s->seq_output == s->seq_decode && s->ps.sps &&
  164. nb_output <= s->ps.sps->temporal_layer[s->ps.sps->max_sub_layers - 1].num_reorder_pics)
  165. return 0;
  166. if (nb_output) {
  167. HEVCFrame *frame = &s->DPB[min_idx];
  168. ret = av_frame_ref(out, frame->frame);
  169. ff_hevc_unref_frame(s, frame, HEVC_FRAME_FLAG_OUTPUT);
  170. if (ret < 0)
  171. return ret;
  172. av_log(s->avctx, AV_LOG_DEBUG,
  173. "Output frame with POC %d.\n", frame->poc);
  174. return 1;
  175. }
  176. if (s->seq_output != s->seq_decode)
  177. s->seq_output = (s->seq_output + 1) & 0xff;
  178. else
  179. break;
  180. } while (1);
  181. return 0;
  182. }
  183. static int init_slice_rpl(HEVCContext *s)
  184. {
  185. HEVCFrame *frame = s->ref;
  186. int ctb_count = frame->ctb_count;
  187. int ctb_addr_ts = s->ps.pps->ctb_addr_rs_to_ts[s->sh.slice_segment_addr];
  188. int i;
  189. if (s->slice_idx >= frame->rpl_buf->size / sizeof(RefPicListTab))
  190. return AVERROR_INVALIDDATA;
  191. for (i = ctb_addr_ts; i < ctb_count; i++)
  192. frame->rpl_tab[i] = (RefPicListTab *)frame->rpl_buf->data + s->slice_idx;
  193. frame->refPicList = (RefPicList *)frame->rpl_tab[ctb_addr_ts];
  194. return 0;
  195. }
  196. int ff_hevc_slice_rpl(HEVCContext *s)
  197. {
  198. SliceHeader *sh = &s->sh;
  199. uint8_t nb_list = sh->slice_type == HEVC_SLICE_B ? 2 : 1;
  200. uint8_t list_idx;
  201. int i, j, ret;
  202. ret = init_slice_rpl(s);
  203. if (ret < 0)
  204. return ret;
  205. if (!(s->rps[ST_CURR_BEF].nb_refs + s->rps[ST_CURR_AFT].nb_refs +
  206. s->rps[LT_CURR].nb_refs)) {
  207. av_log(s->avctx, AV_LOG_ERROR, "Zero refs in the frame RPS.\n");
  208. return AVERROR_INVALIDDATA;
  209. }
  210. for (list_idx = 0; list_idx < nb_list; list_idx++) {
  211. RefPicList rpl_tmp = { { 0 } };
  212. RefPicList *rpl = &s->ref->refPicList[list_idx];
  213. /* The order of the elements is
  214. * ST_CURR_BEF - ST_CURR_AFT - LT_CURR for the L0 and
  215. * ST_CURR_AFT - ST_CURR_BEF - LT_CURR for the L1 */
  216. int cand_lists[3] = { list_idx ? ST_CURR_AFT : ST_CURR_BEF,
  217. list_idx ? ST_CURR_BEF : ST_CURR_AFT,
  218. LT_CURR };
  219. /* concatenate the candidate lists for the current frame */
  220. while (rpl_tmp.nb_refs < sh->nb_refs[list_idx]) {
  221. for (i = 0; i < FF_ARRAY_ELEMS(cand_lists); i++) {
  222. RefPicList *rps = &s->rps[cand_lists[i]];
  223. for (j = 0; j < rps->nb_refs && rpl_tmp.nb_refs < HEVC_MAX_REFS; j++) {
  224. rpl_tmp.list[rpl_tmp.nb_refs] = rps->list[j];
  225. rpl_tmp.ref[rpl_tmp.nb_refs] = rps->ref[j];
  226. rpl_tmp.isLongTerm[rpl_tmp.nb_refs] = i == 2;
  227. rpl_tmp.nb_refs++;
  228. }
  229. }
  230. }
  231. /* reorder the references if necessary */
  232. if (sh->rpl_modification_flag[list_idx]) {
  233. for (i = 0; i < sh->nb_refs[list_idx]; i++) {
  234. int idx = sh->list_entry_lx[list_idx][i];
  235. if (idx >= rpl_tmp.nb_refs) {
  236. av_log(s->avctx, AV_LOG_ERROR, "Invalid reference index.\n");
  237. return AVERROR_INVALIDDATA;
  238. }
  239. rpl->list[i] = rpl_tmp.list[idx];
  240. rpl->ref[i] = rpl_tmp.ref[idx];
  241. rpl->isLongTerm[i] = rpl_tmp.isLongTerm[idx];
  242. rpl->nb_refs++;
  243. }
  244. } else {
  245. memcpy(rpl, &rpl_tmp, sizeof(*rpl));
  246. rpl->nb_refs = FFMIN(rpl->nb_refs, sh->nb_refs[list_idx]);
  247. }
  248. if (sh->collocated_list == list_idx &&
  249. sh->collocated_ref_idx < rpl->nb_refs)
  250. s->ref->collocated_ref = rpl->ref[sh->collocated_ref_idx];
  251. }
  252. return 0;
  253. }
  254. static HEVCFrame *find_ref_idx(HEVCContext *s, int poc)
  255. {
  256. int i;
  257. int LtMask = (1 << s->ps.sps->log2_max_poc_lsb) - 1;
  258. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  259. HEVCFrame *ref = &s->DPB[i];
  260. if (ref->frame->buf[0] && (ref->sequence == s->seq_decode)) {
  261. if ((ref->poc & LtMask) == poc)
  262. return ref;
  263. }
  264. }
  265. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  266. HEVCFrame *ref = &s->DPB[i];
  267. if (ref->frame->buf[0] && ref->sequence == s->seq_decode) {
  268. if (ref->poc == poc || (ref->poc & LtMask) == poc)
  269. return ref;
  270. }
  271. }
  272. av_log(s->avctx, AV_LOG_ERROR,
  273. "Could not find ref with POC %d\n", poc);
  274. return NULL;
  275. }
  276. static void mark_ref(HEVCFrame *frame, int flag)
  277. {
  278. frame->flags &= ~(HEVC_FRAME_FLAG_LONG_REF | HEVC_FRAME_FLAG_SHORT_REF);
  279. frame->flags |= flag;
  280. }
  281. static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc)
  282. {
  283. HEVCFrame *frame;
  284. int i, x, y;
  285. frame = alloc_frame(s);
  286. if (!frame)
  287. return NULL;
  288. if (!s->avctx->hwaccel) {
  289. if (!s->ps.sps->pixel_shift) {
  290. for (i = 0; frame->frame->buf[i]; i++)
  291. memset(frame->frame->buf[i]->data, 1 << (s->ps.sps->bit_depth - 1),
  292. frame->frame->buf[i]->size);
  293. } else {
  294. for (i = 0; frame->frame->data[i]; i++)
  295. for (y = 0; y < (s->ps.sps->height >> s->ps.sps->vshift[i]); y++)
  296. for (x = 0; x < (s->ps.sps->width >> s->ps.sps->hshift[i]); x++) {
  297. AV_WN16(frame->frame->data[i] + y * frame->frame->linesize[i] + 2 * x,
  298. 1 << (s->ps.sps->bit_depth - 1));
  299. }
  300. }
  301. }
  302. frame->poc = poc;
  303. frame->sequence = s->seq_decode;
  304. frame->flags = 0;
  305. ff_thread_report_progress(&frame->tf, INT_MAX, 0);
  306. return frame;
  307. }
  308. /* add a reference with the given poc to the list and mark it as used in DPB */
  309. static int add_candidate_ref(HEVCContext *s, RefPicList *list,
  310. int poc, int ref_flag)
  311. {
  312. HEVCFrame *ref = find_ref_idx(s, poc);
  313. if (ref == s->ref)
  314. return AVERROR_INVALIDDATA;
  315. if (!ref) {
  316. ref = generate_missing_ref(s, poc);
  317. if (!ref)
  318. return AVERROR(ENOMEM);
  319. }
  320. list->list[list->nb_refs] = ref->poc;
  321. list->ref[list->nb_refs] = ref;
  322. list->nb_refs++;
  323. mark_ref(ref, ref_flag);
  324. return 0;
  325. }
  326. int ff_hevc_frame_rps(HEVCContext *s)
  327. {
  328. const ShortTermRPS *short_rps = s->sh.short_term_rps;
  329. const LongTermRPS *long_rps = &s->sh.long_term_rps;
  330. RefPicList *rps = s->rps;
  331. int i, ret = 0;
  332. if (!short_rps) {
  333. rps[0].nb_refs = rps[1].nb_refs = 0;
  334. return 0;
  335. }
  336. /* clear the reference flags on all frames except the current one */
  337. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++) {
  338. HEVCFrame *frame = &s->DPB[i];
  339. if (frame == s->ref)
  340. continue;
  341. mark_ref(frame, 0);
  342. }
  343. for (i = 0; i < NB_RPS_TYPE; i++)
  344. rps[i].nb_refs = 0;
  345. /* add the short refs */
  346. for (i = 0; i < short_rps->num_delta_pocs; i++) {
  347. int poc = s->poc + short_rps->delta_poc[i];
  348. int list;
  349. if (!short_rps->used[i])
  350. list = ST_FOLL;
  351. else if (i < short_rps->num_negative_pics)
  352. list = ST_CURR_BEF;
  353. else
  354. list = ST_CURR_AFT;
  355. ret = add_candidate_ref(s, &rps[list], poc, HEVC_FRAME_FLAG_SHORT_REF);
  356. if (ret < 0)
  357. goto fail;
  358. }
  359. /* add the long refs */
  360. for (i = 0; i < long_rps->nb_refs; i++) {
  361. int poc = long_rps->poc[i];
  362. int list = long_rps->used[i] ? LT_CURR : LT_FOLL;
  363. ret = add_candidate_ref(s, &rps[list], poc, HEVC_FRAME_FLAG_LONG_REF);
  364. if (ret < 0)
  365. goto fail;
  366. }
  367. fail:
  368. /* release any frames that are now unused */
  369. for (i = 0; i < FF_ARRAY_ELEMS(s->DPB); i++)
  370. ff_hevc_unref_frame(s, &s->DPB[i], 0);
  371. return ret;
  372. }
  373. int ff_hevc_compute_poc(HEVCContext *s, int poc_lsb)
  374. {
  375. int max_poc_lsb = 1 << s->ps.sps->log2_max_poc_lsb;
  376. int prev_poc_lsb = s->pocTid0 % max_poc_lsb;
  377. int prev_poc_msb = s->pocTid0 - prev_poc_lsb;
  378. int poc_msb;
  379. if (poc_lsb < prev_poc_lsb && prev_poc_lsb - poc_lsb >= max_poc_lsb / 2)
  380. poc_msb = prev_poc_msb + max_poc_lsb;
  381. else if (poc_lsb > prev_poc_lsb && poc_lsb - prev_poc_lsb > max_poc_lsb / 2)
  382. poc_msb = prev_poc_msb - max_poc_lsb;
  383. else
  384. poc_msb = prev_poc_msb;
  385. // For BLA picture types, POCmsb is set to 0.
  386. if (s->nal_unit_type == HEVC_NAL_BLA_W_LP ||
  387. s->nal_unit_type == HEVC_NAL_BLA_W_RADL ||
  388. s->nal_unit_type == HEVC_NAL_BLA_N_LP)
  389. poc_msb = 0;
  390. return poc_msb + poc_lsb;
  391. }
  392. int ff_hevc_frame_nb_refs(HEVCContext *s)
  393. {
  394. int ret = 0;
  395. int i;
  396. const ShortTermRPS *rps = s->sh.short_term_rps;
  397. LongTermRPS *long_rps = &s->sh.long_term_rps;
  398. if (rps) {
  399. for (i = 0; i < rps->num_negative_pics; i++)
  400. ret += !!rps->used[i];
  401. for (; i < rps->num_delta_pocs; i++)
  402. ret += !!rps->used[i];
  403. }
  404. if (long_rps) {
  405. for (i = 0; i < long_rps->nb_refs; i++)
  406. ret += !!long_rps->used[i];
  407. }
  408. return ret;
  409. }