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.

561 lines
23KB

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