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.

188 lines
7.0KB

  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 "mpegutils.h"
  23. #include "mpegvideo.h"
  24. #include "internal.h"
  25. #include "vaapi_decode.h"
  26. /** Reconstruct bitstream f_code */
  27. static inline int mpeg2_get_f_code(const MpegEncContext *s)
  28. {
  29. return (s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) |
  30. (s->mpeg_f_code[1][0] << 4) | s->mpeg_f_code[1][1];
  31. }
  32. /** Determine frame start: first field for field picture or frame picture */
  33. static inline int mpeg2_get_is_frame_start(const MpegEncContext *s)
  34. {
  35. return s->first_field || s->picture_structure == PICT_FRAME;
  36. }
  37. static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_t *buffer, av_unused uint32_t size)
  38. {
  39. const MpegEncContext *s = avctx->priv_data;
  40. VAAPIDecodePicture *pic = s->current_picture_ptr->hwaccel_picture_private;
  41. VAPictureParameterBufferMPEG2 pic_param;
  42. VAIQMatrixBufferMPEG2 iq_matrix;
  43. int i, err;
  44. pic->output_surface = ff_vaapi_get_surface_id(s->current_picture_ptr->f);
  45. pic_param = (VAPictureParameterBufferMPEG2) {
  46. .horizontal_size = s->width,
  47. .vertical_size = s->height,
  48. .forward_reference_picture = VA_INVALID_ID,
  49. .backward_reference_picture = VA_INVALID_ID,
  50. .picture_coding_type = s->pict_type,
  51. .f_code = mpeg2_get_f_code(s),
  52. .picture_coding_extension.bits = {
  53. .intra_dc_precision = s->intra_dc_precision,
  54. .picture_structure = s->picture_structure,
  55. .top_field_first = s->top_field_first,
  56. .frame_pred_frame_dct = s->frame_pred_frame_dct,
  57. .concealment_motion_vectors = s->concealment_motion_vectors,
  58. .q_scale_type = s->q_scale_type,
  59. .intra_vlc_format = s->intra_vlc_format,
  60. .alternate_scan = s->alternate_scan,
  61. .repeat_first_field = s->repeat_first_field,
  62. .progressive_frame = s->progressive_frame,
  63. .is_first_field = mpeg2_get_is_frame_start(s),
  64. },
  65. };
  66. switch (s->pict_type) {
  67. case AV_PICTURE_TYPE_B:
  68. pic_param.backward_reference_picture = ff_vaapi_get_surface_id(s->next_picture.f);
  69. // fall-through
  70. case AV_PICTURE_TYPE_P:
  71. pic_param.forward_reference_picture = ff_vaapi_get_surface_id(s->last_picture.f);
  72. break;
  73. }
  74. err = ff_vaapi_decode_make_param_buffer(avctx, pic,
  75. VAPictureParameterBufferType,
  76. &pic_param, sizeof(pic_param));
  77. if (err < 0)
  78. goto fail;
  79. iq_matrix.load_intra_quantiser_matrix = 1;
  80. iq_matrix.load_non_intra_quantiser_matrix = 1;
  81. iq_matrix.load_chroma_intra_quantiser_matrix = 1;
  82. iq_matrix.load_chroma_non_intra_quantiser_matrix = 1;
  83. for (i = 0; i < 64; i++) {
  84. int n = s->idsp.idct_permutation[ff_zigzag_direct[i]];
  85. iq_matrix.intra_quantiser_matrix[i] = s->intra_matrix[n];
  86. iq_matrix.non_intra_quantiser_matrix[i] = s->inter_matrix[n];
  87. iq_matrix.chroma_intra_quantiser_matrix[i] = s->chroma_intra_matrix[n];
  88. iq_matrix.chroma_non_intra_quantiser_matrix[i] = s->chroma_inter_matrix[n];
  89. }
  90. err = ff_vaapi_decode_make_param_buffer(avctx, pic,
  91. VAIQMatrixBufferType,
  92. &iq_matrix, sizeof(iq_matrix));
  93. if (err < 0)
  94. goto fail;
  95. return 0;
  96. fail:
  97. ff_vaapi_decode_cancel(avctx, pic);
  98. return err;
  99. }
  100. static int vaapi_mpeg2_end_frame(AVCodecContext *avctx)
  101. {
  102. MpegEncContext *s = avctx->priv_data;
  103. VAAPIDecodePicture *pic = s->current_picture_ptr->hwaccel_picture_private;
  104. int ret;
  105. ret = ff_vaapi_decode_issue(avctx, pic);
  106. if (ret < 0)
  107. goto fail;
  108. ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);
  109. fail:
  110. return ret;
  111. }
  112. static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
  113. {
  114. const MpegEncContext *s = avctx->priv_data;
  115. VAAPIDecodePicture *pic = s->current_picture_ptr->hwaccel_picture_private;
  116. VASliceParameterBufferMPEG2 slice_param;
  117. GetBitContext gb;
  118. uint32_t quantiser_scale_code, intra_slice_flag, macroblock_offset;
  119. int err;
  120. /* Determine macroblock_offset */
  121. init_get_bits(&gb, buffer, 8 * size);
  122. if (get_bits_long(&gb, 32) >> 8 != 1) /* start code */
  123. return AVERROR_INVALIDDATA;
  124. quantiser_scale_code = get_bits(&gb, 5);
  125. intra_slice_flag = get_bits1(&gb);
  126. if (intra_slice_flag) {
  127. skip_bits(&gb, 8);
  128. while (get_bits1(&gb) != 0)
  129. skip_bits(&gb, 8);
  130. }
  131. macroblock_offset = get_bits_count(&gb);
  132. slice_param = (VASliceParameterBufferMPEG2) {
  133. .slice_data_size = size,
  134. .slice_data_offset = 0,
  135. .slice_data_flag = VA_SLICE_DATA_FLAG_ALL,
  136. .macroblock_offset = macroblock_offset,
  137. .slice_horizontal_position = s->mb_x,
  138. .slice_vertical_position = s->mb_y >> (s->picture_structure != PICT_FRAME),
  139. .quantiser_scale_code = quantiser_scale_code,
  140. .intra_slice_flag = intra_slice_flag,
  141. };
  142. err = ff_vaapi_decode_make_slice_buffer(avctx, pic,
  143. &slice_param, sizeof(slice_param),
  144. buffer, size);
  145. if (err < 0) {
  146. ff_vaapi_decode_cancel(avctx, pic);
  147. return err;
  148. }
  149. return 0;
  150. }
  151. AVHWAccel ff_mpeg2_vaapi_hwaccel = {
  152. .name = "mpeg2_vaapi",
  153. .type = AVMEDIA_TYPE_VIDEO,
  154. .id = AV_CODEC_ID_MPEG2VIDEO,
  155. .pix_fmt = AV_PIX_FMT_VAAPI,
  156. .start_frame = &vaapi_mpeg2_start_frame,
  157. .end_frame = &vaapi_mpeg2_end_frame,
  158. .decode_slice = &vaapi_mpeg2_decode_slice,
  159. .frame_priv_data_size = sizeof(VAAPIDecodePicture),
  160. .init = &ff_vaapi_decode_init,
  161. .uninit = &ff_vaapi_decode_uninit,
  162. .priv_data_size = sizeof(VAAPIDecodeContext),
  163. };