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.

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