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.

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