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.

454 lines
19KB

  1. /*
  2. * DXVA2 H264 HW acceleration.
  3. *
  4. * copyright (c) 2009 Laurent Aimar
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "dxva2_internal.h"
  23. #include "h264.h"
  24. #include "h264data.h"
  25. #include "mpegutils.h"
  26. struct dxva2_picture_context {
  27. DXVA_PicParams_H264 pp;
  28. DXVA_Qmatrix_H264 qm;
  29. unsigned slice_count;
  30. DXVA_Slice_H264_Short slice_short[MAX_SLICES];
  31. DXVA_Slice_H264_Long slice_long[MAX_SLICES];
  32. const uint8_t *bitstream;
  33. unsigned bitstream_size;
  34. };
  35. static void fill_picture_entry(DXVA_PicEntry_H264 *pic,
  36. unsigned index, unsigned flag)
  37. {
  38. assert((index&0x7f) == index && (flag&0x01) == flag);
  39. pic->bPicEntry = index | (flag << 7);
  40. }
  41. static void fill_picture_parameters(struct dxva_context *ctx, const H264Context *h,
  42. DXVA_PicParams_H264 *pp)
  43. {
  44. const H264Picture *current_picture = h->cur_pic_ptr;
  45. int i, j;
  46. memset(pp, 0, sizeof(*pp));
  47. /* Configure current picture */
  48. fill_picture_entry(&pp->CurrPic,
  49. ff_dxva2_get_surface_index(ctx, &current_picture->f),
  50. h->picture_structure == PICT_BOTTOM_FIELD);
  51. /* Configure the set of references */
  52. pp->UsedForReferenceFlags = 0;
  53. pp->NonExistingFrameFlags = 0;
  54. for (i = 0, j = 0; i < FF_ARRAY_ELEMS(pp->RefFrameList); i++) {
  55. const H264Picture *r;
  56. if (j < h->short_ref_count) {
  57. r = h->short_ref[j++];
  58. } else {
  59. r = NULL;
  60. while (!r && j < h->short_ref_count + 16)
  61. r = h->long_ref[j++ - h->short_ref_count];
  62. }
  63. if (r) {
  64. fill_picture_entry(&pp->RefFrameList[i],
  65. ff_dxva2_get_surface_index(ctx, &r->f),
  66. r->long_ref != 0);
  67. if ((r->reference & PICT_TOP_FIELD) && r->field_poc[0] != INT_MAX)
  68. pp->FieldOrderCntList[i][0] = r->field_poc[0];
  69. if ((r->reference & PICT_BOTTOM_FIELD) && r->field_poc[1] != INT_MAX)
  70. pp->FieldOrderCntList[i][1] = r->field_poc[1];
  71. pp->FrameNumList[i] = r->long_ref ? r->pic_id : r->frame_num;
  72. if (r->reference & PICT_TOP_FIELD)
  73. pp->UsedForReferenceFlags |= 1 << (2*i + 0);
  74. if (r->reference & PICT_BOTTOM_FIELD)
  75. pp->UsedForReferenceFlags |= 1 << (2*i + 1);
  76. } else {
  77. pp->RefFrameList[i].bPicEntry = 0xff;
  78. pp->FieldOrderCntList[i][0] = 0;
  79. pp->FieldOrderCntList[i][1] = 0;
  80. pp->FrameNumList[i] = 0;
  81. }
  82. }
  83. pp->wFrameWidthInMbsMinus1 = h->mb_width - 1;
  84. pp->wFrameHeightInMbsMinus1 = h->mb_height - 1;
  85. pp->num_ref_frames = h->sps.ref_frame_count;
  86. pp->wBitFields = ((h->picture_structure != PICT_FRAME) << 0) |
  87. ((h->sps.mb_aff &&
  88. (h->picture_structure == PICT_FRAME)) << 1) |
  89. (h->sps.residual_color_transform_flag << 2) |
  90. /* sp_for_switch_flag (not implemented by Libav) */
  91. (0 << 3) |
  92. (h->sps.chroma_format_idc << 4) |
  93. ((h->nal_ref_idc != 0) << 6) |
  94. (h->pps.constrained_intra_pred << 7) |
  95. (h->pps.weighted_pred << 8) |
  96. (h->pps.weighted_bipred_idc << 9) |
  97. /* MbsConsecutiveFlag */
  98. (1 << 11) |
  99. (h->sps.frame_mbs_only_flag << 12) |
  100. (h->pps.transform_8x8_mode << 13) |
  101. ((h->sps.level_idc >= 31) << 14) |
  102. /* IntraPicFlag (Modified if we detect a non
  103. * intra slice in dxva2_h264_decode_slice) */
  104. (1 << 15);
  105. pp->bit_depth_luma_minus8 = h->sps.bit_depth_luma - 8;
  106. pp->bit_depth_chroma_minus8 = h->sps.bit_depth_chroma - 8;
  107. if (ctx->workaround & FF_DXVA2_WORKAROUND_SCALING_LIST_ZIGZAG)
  108. pp->Reserved16Bits = 0;
  109. else
  110. pp->Reserved16Bits = 3; /* FIXME is there a way to detect the right mode ? */
  111. pp->StatusReportFeedbackNumber = 1 + ctx->report_id++;
  112. pp->CurrFieldOrderCnt[0] = 0;
  113. if ((h->picture_structure & PICT_TOP_FIELD) &&
  114. current_picture->field_poc[0] != INT_MAX)
  115. pp->CurrFieldOrderCnt[0] = current_picture->field_poc[0];
  116. pp->CurrFieldOrderCnt[1] = 0;
  117. if ((h->picture_structure & PICT_BOTTOM_FIELD) &&
  118. current_picture->field_poc[1] != INT_MAX)
  119. pp->CurrFieldOrderCnt[1] = current_picture->field_poc[1];
  120. pp->pic_init_qs_minus26 = h->pps.init_qs - 26;
  121. pp->chroma_qp_index_offset = h->pps.chroma_qp_index_offset[0];
  122. pp->second_chroma_qp_index_offset = h->pps.chroma_qp_index_offset[1];
  123. pp->ContinuationFlag = 1;
  124. pp->pic_init_qp_minus26 = h->pps.init_qp - 26;
  125. pp->num_ref_idx_l0_active_minus1 = h->pps.ref_count[0] - 1;
  126. pp->num_ref_idx_l1_active_minus1 = h->pps.ref_count[1] - 1;
  127. pp->Reserved8BitsA = 0;
  128. pp->frame_num = h->frame_num;
  129. pp->log2_max_frame_num_minus4 = h->sps.log2_max_frame_num - 4;
  130. pp->pic_order_cnt_type = h->sps.poc_type;
  131. if (h->sps.poc_type == 0)
  132. pp->log2_max_pic_order_cnt_lsb_minus4 = h->sps.log2_max_poc_lsb - 4;
  133. else if (h->sps.poc_type == 1)
  134. pp->delta_pic_order_always_zero_flag = h->sps.delta_pic_order_always_zero_flag;
  135. pp->direct_8x8_inference_flag = h->sps.direct_8x8_inference_flag;
  136. pp->entropy_coding_mode_flag = h->pps.cabac;
  137. pp->pic_order_present_flag = h->pps.pic_order_present;
  138. pp->num_slice_groups_minus1 = h->pps.slice_group_count - 1;
  139. pp->slice_group_map_type = h->pps.mb_slice_group_map_type;
  140. pp->deblocking_filter_control_present_flag = h->pps.deblocking_filter_parameters_present;
  141. pp->redundant_pic_cnt_present_flag= h->pps.redundant_pic_cnt_present;
  142. pp->Reserved8BitsB = 0;
  143. pp->slice_group_change_rate_minus1= 0; /* XXX not implemented by Libav */
  144. //pp->SliceGroupMap[810]; /* XXX not implemented by Libav */
  145. }
  146. static void fill_scaling_lists(struct dxva_context *ctx, const H264Context *h, DXVA_Qmatrix_H264 *qm)
  147. {
  148. unsigned i, j;
  149. memset(qm, 0, sizeof(*qm));
  150. if (ctx->workaround & FF_DXVA2_WORKAROUND_SCALING_LIST_ZIGZAG) {
  151. for (i = 0; i < 6; i++)
  152. for (j = 0; j < 16; j++)
  153. qm->bScalingLists4x4[i][j] = h->pps.scaling_matrix4[i][j];
  154. for (i = 0; i < 64; i++) {
  155. qm->bScalingLists8x8[0][i] = h->pps.scaling_matrix8[0][i];
  156. qm->bScalingLists8x8[1][i] = h->pps.scaling_matrix8[3][i];
  157. }
  158. } else {
  159. for (i = 0; i < 6; i++)
  160. for (j = 0; j < 16; j++)
  161. qm->bScalingLists4x4[i][j] = h->pps.scaling_matrix4[i][zigzag_scan[j]];
  162. for (i = 0; i < 64; i++) {
  163. qm->bScalingLists8x8[0][i] = h->pps.scaling_matrix8[0][ff_zigzag_direct[i]];
  164. qm->bScalingLists8x8[1][i] = h->pps.scaling_matrix8[3][ff_zigzag_direct[i]];
  165. }
  166. }
  167. }
  168. static int is_slice_short(struct dxva_context *ctx)
  169. {
  170. assert(ctx->cfg->ConfigBitstreamRaw == 1 ||
  171. ctx->cfg->ConfigBitstreamRaw == 2);
  172. return ctx->cfg->ConfigBitstreamRaw == 2;
  173. }
  174. static void fill_slice_short(DXVA_Slice_H264_Short *slice,
  175. unsigned position, unsigned size)
  176. {
  177. memset(slice, 0, sizeof(*slice));
  178. slice->BSNALunitDataLocation = position;
  179. slice->SliceBytesInBuffer = size;
  180. slice->wBadSliceChopping = 0;
  181. }
  182. static void fill_slice_long(AVCodecContext *avctx, DXVA_Slice_H264_Long *slice,
  183. unsigned position, unsigned size)
  184. {
  185. const H264Context *h = avctx->priv_data;
  186. struct dxva_context *ctx = avctx->hwaccel_context;
  187. unsigned list;
  188. memset(slice, 0, sizeof(*slice));
  189. slice->BSNALunitDataLocation = position;
  190. slice->SliceBytesInBuffer = size;
  191. slice->wBadSliceChopping = 0;
  192. slice->first_mb_in_slice = (h->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + h->mb_x;
  193. slice->NumMbsForSlice = 0; /* XXX it is set once we have all slices */
  194. slice->BitOffsetToSliceData = get_bits_count(&h->gb);
  195. slice->slice_type = ff_h264_get_slice_type(h);
  196. if (h->slice_type_fixed)
  197. slice->slice_type += 5;
  198. slice->luma_log2_weight_denom = h->luma_log2_weight_denom;
  199. slice->chroma_log2_weight_denom = h->chroma_log2_weight_denom;
  200. if (h->list_count > 0)
  201. slice->num_ref_idx_l0_active_minus1 = h->ref_count[0] - 1;
  202. if (h->list_count > 1)
  203. slice->num_ref_idx_l1_active_minus1 = h->ref_count[1] - 1;
  204. slice->slice_alpha_c0_offset_div2 = h->slice_alpha_c0_offset / 2 - 26;
  205. slice->slice_beta_offset_div2 = h->slice_beta_offset / 2 - 26;
  206. slice->Reserved8Bits = 0;
  207. for (list = 0; list < 2; list++) {
  208. unsigned i;
  209. for (i = 0; i < FF_ARRAY_ELEMS(slice->RefPicList[list]); i++) {
  210. if (list < h->list_count && i < h->ref_count[list]) {
  211. const H264Picture *r = &h->ref_list[list][i];
  212. unsigned plane;
  213. fill_picture_entry(&slice->RefPicList[list][i],
  214. ff_dxva2_get_surface_index(ctx, &r->f),
  215. r->reference == PICT_BOTTOM_FIELD);
  216. for (plane = 0; plane < 3; plane++) {
  217. int w, o;
  218. if (plane == 0 && h->luma_weight_flag[list]) {
  219. w = h->luma_weight[i][list][0];
  220. o = h->luma_weight[i][list][1];
  221. } else if (plane >= 1 && h->chroma_weight_flag[list]) {
  222. w = h->chroma_weight[i][list][plane-1][0];
  223. o = h->chroma_weight[i][list][plane-1][1];
  224. } else {
  225. w = 1 << (plane == 0 ? h->luma_log2_weight_denom :
  226. h->chroma_log2_weight_denom);
  227. o = 0;
  228. }
  229. slice->Weights[list][i][plane][0] = w;
  230. slice->Weights[list][i][plane][1] = o;
  231. }
  232. } else {
  233. unsigned plane;
  234. slice->RefPicList[list][i].bPicEntry = 0xff;
  235. for (plane = 0; plane < 3; plane++) {
  236. slice->Weights[list][i][plane][0] = 0;
  237. slice->Weights[list][i][plane][1] = 0;
  238. }
  239. }
  240. }
  241. }
  242. slice->slice_qs_delta = 0; /* XXX not implemented by Libav */
  243. slice->slice_qp_delta = h->qscale - h->pps.init_qp;
  244. slice->redundant_pic_cnt = h->redundant_pic_count;
  245. if (h->slice_type == AV_PICTURE_TYPE_B)
  246. slice->direct_spatial_mv_pred_flag = h->direct_spatial_mv_pred;
  247. slice->cabac_init_idc = h->pps.cabac ? h->cabac_init_idc : 0;
  248. if (h->deblocking_filter < 2)
  249. slice->disable_deblocking_filter_idc = 1 - h->deblocking_filter;
  250. else
  251. slice->disable_deblocking_filter_idc = h->deblocking_filter;
  252. slice->slice_id = h->current_slice - 1;
  253. }
  254. static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx,
  255. DXVA2_DecodeBufferDesc *bs,
  256. DXVA2_DecodeBufferDesc *sc)
  257. {
  258. const H264Context *h = avctx->priv_data;
  259. const unsigned mb_count = h->mb_width * h->mb_height;
  260. struct dxva_context *ctx = avctx->hwaccel_context;
  261. const H264Picture *current_picture = h->cur_pic_ptr;
  262. struct dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
  263. DXVA_Slice_H264_Short *slice = NULL;
  264. uint8_t *dxva_data, *current, *end;
  265. unsigned dxva_size;
  266. void *slice_data;
  267. unsigned slice_size;
  268. unsigned padding;
  269. unsigned i;
  270. /* Create an annex B bitstream buffer with only slice NAL and finalize slice */
  271. if (FAILED(IDirectXVideoDecoder_GetBuffer(ctx->decoder,
  272. DXVA2_BitStreamDateBufferType,
  273. &dxva_data, &dxva_size)))
  274. return -1;
  275. current = dxva_data;
  276. end = dxva_data + dxva_size;
  277. for (i = 0; i < ctx_pic->slice_count; i++) {
  278. static const uint8_t start_code[] = { 0, 0, 1 };
  279. static const unsigned start_code_size = sizeof(start_code);
  280. unsigned position, size;
  281. assert(offsetof(DXVA_Slice_H264_Short, BSNALunitDataLocation) ==
  282. offsetof(DXVA_Slice_H264_Long, BSNALunitDataLocation));
  283. assert(offsetof(DXVA_Slice_H264_Short, SliceBytesInBuffer) ==
  284. offsetof(DXVA_Slice_H264_Long, SliceBytesInBuffer));
  285. if (is_slice_short(ctx))
  286. slice = &ctx_pic->slice_short[i];
  287. else
  288. slice = (DXVA_Slice_H264_Short*)&ctx_pic->slice_long[i];
  289. position = slice->BSNALunitDataLocation;
  290. size = slice->SliceBytesInBuffer;
  291. if (start_code_size + size > end - current) {
  292. av_log(avctx, AV_LOG_ERROR, "Failed to build bitstream");
  293. break;
  294. }
  295. slice->BSNALunitDataLocation = current - dxva_data;
  296. slice->SliceBytesInBuffer = start_code_size + size;
  297. if (!is_slice_short(ctx)) {
  298. DXVA_Slice_H264_Long *slice_long = (DXVA_Slice_H264_Long*)slice;
  299. if (i < ctx_pic->slice_count - 1)
  300. slice_long->NumMbsForSlice =
  301. slice_long[1].first_mb_in_slice - slice_long[0].first_mb_in_slice;
  302. else
  303. slice_long->NumMbsForSlice = mb_count - slice_long->first_mb_in_slice;
  304. }
  305. memcpy(current, start_code, start_code_size);
  306. current += start_code_size;
  307. memcpy(current, &ctx_pic->bitstream[position], size);
  308. current += size;
  309. }
  310. padding = FFMIN(128 - ((current - dxva_data) & 127), end - current);
  311. if (slice && padding > 0) {
  312. memset(current, 0, padding);
  313. current += padding;
  314. slice->SliceBytesInBuffer += padding;
  315. }
  316. if (FAILED(IDirectXVideoDecoder_ReleaseBuffer(ctx->decoder,
  317. DXVA2_BitStreamDateBufferType)))
  318. return -1;
  319. if (i < ctx_pic->slice_count)
  320. return -1;
  321. memset(bs, 0, sizeof(*bs));
  322. bs->CompressedBufferType = DXVA2_BitStreamDateBufferType;
  323. bs->DataSize = current - dxva_data;
  324. bs->NumMBsInBuffer = mb_count;
  325. if (is_slice_short(ctx)) {
  326. slice_data = ctx_pic->slice_short;
  327. slice_size = ctx_pic->slice_count * sizeof(*ctx_pic->slice_short);
  328. } else {
  329. slice_data = ctx_pic->slice_long;
  330. slice_size = ctx_pic->slice_count * sizeof(*ctx_pic->slice_long);
  331. }
  332. assert((bs->DataSize & 127) == 0);
  333. return ff_dxva2_commit_buffer(avctx, ctx, sc,
  334. DXVA2_SliceControlBufferType,
  335. slice_data, slice_size, mb_count);
  336. }
  337. static int dxva2_h264_start_frame(AVCodecContext *avctx,
  338. av_unused const uint8_t *buffer,
  339. av_unused uint32_t size)
  340. {
  341. const H264Context *h = avctx->priv_data;
  342. struct dxva_context *ctx = avctx->hwaccel_context;
  343. struct dxva2_picture_context *ctx_pic = h->cur_pic_ptr->hwaccel_picture_private;
  344. if (!ctx->decoder || !ctx->cfg || ctx->surface_count <= 0)
  345. return -1;
  346. assert(ctx_pic);
  347. /* Fill up DXVA_PicParams_H264 */
  348. fill_picture_parameters(ctx, h, &ctx_pic->pp);
  349. /* Fill up DXVA_Qmatrix_H264 */
  350. fill_scaling_lists(ctx, h, &ctx_pic->qm);
  351. ctx_pic->slice_count = 0;
  352. ctx_pic->bitstream_size = 0;
  353. ctx_pic->bitstream = NULL;
  354. return 0;
  355. }
  356. static int dxva2_h264_decode_slice(AVCodecContext *avctx,
  357. const uint8_t *buffer,
  358. uint32_t size)
  359. {
  360. const H264Context *h = avctx->priv_data;
  361. struct dxva_context *ctx = avctx->hwaccel_context;
  362. const H264Picture *current_picture = h->cur_pic_ptr;
  363. struct dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
  364. unsigned position;
  365. if (ctx_pic->slice_count >= MAX_SLICES)
  366. return -1;
  367. if (!ctx_pic->bitstream)
  368. ctx_pic->bitstream = buffer;
  369. ctx_pic->bitstream_size += size;
  370. position = buffer - ctx_pic->bitstream;
  371. if (is_slice_short(ctx))
  372. fill_slice_short(&ctx_pic->slice_short[ctx_pic->slice_count],
  373. position, size);
  374. else
  375. fill_slice_long(avctx, &ctx_pic->slice_long[ctx_pic->slice_count],
  376. position, size);
  377. ctx_pic->slice_count++;
  378. if (h->slice_type != AV_PICTURE_TYPE_I && h->slice_type != AV_PICTURE_TYPE_SI)
  379. ctx_pic->pp.wBitFields &= ~(1 << 15); /* Set IntraPicFlag to 0 */
  380. return 0;
  381. }
  382. static int dxva2_h264_end_frame(AVCodecContext *avctx)
  383. {
  384. H264Context *h = avctx->priv_data;
  385. struct dxva2_picture_context *ctx_pic =
  386. h->cur_pic_ptr->hwaccel_picture_private;
  387. int ret;
  388. if (ctx_pic->slice_count <= 0 || ctx_pic->bitstream_size <= 0)
  389. return -1;
  390. ret = ff_dxva2_common_end_frame(avctx, &h->cur_pic_ptr->f,
  391. &ctx_pic->pp, sizeof(ctx_pic->pp),
  392. &ctx_pic->qm, sizeof(ctx_pic->qm),
  393. commit_bitstream_and_slice_buffer);
  394. if (!ret)
  395. ff_h264_draw_horiz_band(h, 0, h->avctx->height);
  396. return ret;
  397. }
  398. AVHWAccel ff_h264_dxva2_hwaccel = {
  399. .name = "h264_dxva2",
  400. .type = AVMEDIA_TYPE_VIDEO,
  401. .id = AV_CODEC_ID_H264,
  402. .pix_fmt = AV_PIX_FMT_DXVA2_VLD,
  403. .start_frame = dxva2_h264_start_frame,
  404. .decode_slice = dxva2_h264_decode_slice,
  405. .end_frame = dxva2_h264_end_frame,
  406. .priv_data_size = sizeof(struct dxva2_picture_context),
  407. };