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.

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