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.

144 lines
6.3KB

  1. /*
  2. * MPEG-2 HW decode acceleration through VA API
  3. *
  4. * Copyright (C) 2008-2009 Splitted-Desktop Systems
  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 "vaapi_internal.h"
  23. /** Reconstruct bitstream f_code */
  24. static inline int mpeg2_get_f_code(MpegEncContext *s)
  25. {
  26. return (s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) |
  27. (s->mpeg_f_code[1][0] << 4) | s->mpeg_f_code[1][1];
  28. }
  29. /** Determine frame start: first field for field picture or frame picture */
  30. static inline int mpeg2_get_is_frame_start(MpegEncContext *s)
  31. {
  32. return s->first_field || s->picture_structure == PICT_FRAME;
  33. }
  34. static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_t *buffer, av_unused uint32_t size)
  35. {
  36. struct MpegEncContext * const s = avctx->priv_data;
  37. struct vaapi_context * const vactx = avctx->hwaccel_context;
  38. VAPictureParameterBufferMPEG2 *pic_param;
  39. VAIQMatrixBufferMPEG2 *iq_matrix;
  40. int i;
  41. av_dlog(avctx, "vaapi_mpeg2_start_frame()\n");
  42. vactx->slice_param_size = sizeof(VASliceParameterBufferMPEG2);
  43. /* Fill in VAPictureParameterBufferMPEG2 */
  44. pic_param = ff_vaapi_alloc_pic_param(vactx, sizeof(VAPictureParameterBufferMPEG2));
  45. if (!pic_param)
  46. return -1;
  47. pic_param->horizontal_size = s->width;
  48. pic_param->vertical_size = s->height;
  49. pic_param->forward_reference_picture = VA_INVALID_ID;
  50. pic_param->backward_reference_picture = VA_INVALID_ID;
  51. pic_param->picture_coding_type = s->pict_type;
  52. pic_param->f_code = mpeg2_get_f_code(s);
  53. pic_param->picture_coding_extension.value = 0; /* reset all bits */
  54. pic_param->picture_coding_extension.bits.intra_dc_precision = s->intra_dc_precision;
  55. pic_param->picture_coding_extension.bits.picture_structure = s->picture_structure;
  56. pic_param->picture_coding_extension.bits.top_field_first = s->top_field_first;
  57. pic_param->picture_coding_extension.bits.frame_pred_frame_dct = s->frame_pred_frame_dct;
  58. pic_param->picture_coding_extension.bits.concealment_motion_vectors = s->concealment_motion_vectors;
  59. pic_param->picture_coding_extension.bits.q_scale_type = s->q_scale_type;
  60. pic_param->picture_coding_extension.bits.intra_vlc_format = s->intra_vlc_format;
  61. pic_param->picture_coding_extension.bits.alternate_scan = s->alternate_scan;
  62. pic_param->picture_coding_extension.bits.repeat_first_field = s->repeat_first_field;
  63. pic_param->picture_coding_extension.bits.progressive_frame = s->progressive_frame;
  64. pic_param->picture_coding_extension.bits.is_first_field = mpeg2_get_is_frame_start(s);
  65. switch (s->pict_type) {
  66. case AV_PICTURE_TYPE_B:
  67. pic_param->backward_reference_picture = ff_vaapi_get_surface_id(&s->next_picture);
  68. // fall-through
  69. case AV_PICTURE_TYPE_P:
  70. pic_param->forward_reference_picture = ff_vaapi_get_surface_id(&s->last_picture);
  71. break;
  72. }
  73. /* Fill in VAIQMatrixBufferMPEG2 */
  74. iq_matrix = ff_vaapi_alloc_iq_matrix(vactx, sizeof(VAIQMatrixBufferMPEG2));
  75. if (!iq_matrix)
  76. return -1;
  77. iq_matrix->load_intra_quantiser_matrix = 1;
  78. iq_matrix->load_non_intra_quantiser_matrix = 1;
  79. iq_matrix->load_chroma_intra_quantiser_matrix = 1;
  80. iq_matrix->load_chroma_non_intra_quantiser_matrix = 1;
  81. for (i = 0; i < 64; i++) {
  82. int n = s->dsp.idct_permutation[ff_zigzag_direct[i]];
  83. iq_matrix->intra_quantiser_matrix[i] = s->intra_matrix[n];
  84. iq_matrix->non_intra_quantiser_matrix[i] = s->inter_matrix[n];
  85. iq_matrix->chroma_intra_quantiser_matrix[i] = s->chroma_intra_matrix[n];
  86. iq_matrix->chroma_non_intra_quantiser_matrix[i] = s->chroma_inter_matrix[n];
  87. }
  88. return 0;
  89. }
  90. static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
  91. {
  92. MpegEncContext * const s = avctx->priv_data;
  93. VASliceParameterBufferMPEG2 *slice_param;
  94. GetBitContext gb;
  95. uint32_t quantiser_scale_code, intra_slice_flag, macroblock_offset;
  96. av_dlog(avctx, "vaapi_mpeg2_decode_slice(): buffer %p, size %d\n", buffer, size);
  97. /* Determine macroblock_offset */
  98. init_get_bits(&gb, buffer, 8 * size);
  99. if (get_bits_long(&gb, 32) >> 8 != 1) /* start code */
  100. return AVERROR_INVALIDDATA;
  101. quantiser_scale_code = get_bits(&gb, 5);
  102. intra_slice_flag = get_bits1(&gb);
  103. if (intra_slice_flag) {
  104. skip_bits(&gb, 8);
  105. while (get_bits1(&gb) != 0)
  106. skip_bits(&gb, 8);
  107. }
  108. macroblock_offset = get_bits_count(&gb);
  109. /* Fill in VASliceParameterBufferMPEG2 */
  110. slice_param = (VASliceParameterBufferMPEG2 *)ff_vaapi_alloc_slice(avctx->hwaccel_context, buffer, size);
  111. if (!slice_param)
  112. return -1;
  113. slice_param->macroblock_offset = macroblock_offset;
  114. slice_param->slice_horizontal_position = s->mb_x;
  115. slice_param->slice_vertical_position = s->mb_y >> (s->picture_structure != PICT_FRAME);
  116. slice_param->quantiser_scale_code = quantiser_scale_code;
  117. slice_param->intra_slice_flag = intra_slice_flag;
  118. return 0;
  119. }
  120. AVHWAccel ff_mpeg2_vaapi_hwaccel = {
  121. .name = "mpeg2_vaapi",
  122. .type = AVMEDIA_TYPE_VIDEO,
  123. .id = AV_CODEC_ID_MPEG2VIDEO,
  124. .pix_fmt = AV_PIX_FMT_VAAPI_VLD,
  125. .start_frame = vaapi_mpeg2_start_frame,
  126. .end_frame = ff_vaapi_mpeg_end_frame,
  127. .decode_slice = vaapi_mpeg2_decode_slice,
  128. };