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.

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