2 * MPEG-2 HW decode acceleration through VA API
4 * Copyright (C) 2008-2009 Splitted-Desktop Systems
6 * This file is part of Libav.
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.
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.
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
24 #include "mpegutils.h"
25 #include "mpegvideo.h"
27 #include "vaapi_decode.h"
29 /** Reconstruct bitstream f_code */
30 static inline int mpeg2_get_f_code(const MpegEncContext
*s
)
32 return (s
->mpeg_f_code
[0][0] << 12) | (s
->mpeg_f_code
[0][1] << 8) |
33 (s
->mpeg_f_code
[1][0] << 4) | s
->mpeg_f_code
[1][1];
36 /** Determine frame start: first field for field picture or frame picture */
37 static inline int mpeg2_get_is_frame_start(const MpegEncContext
*s
)
39 return s
->first_field
|| s
->picture_structure
== PICT_FRAME
;
42 static int vaapi_mpeg2_start_frame(AVCodecContext
*avctx
, av_unused
const uint8_t *buffer
, av_unused
uint32_t size
)
44 const MpegEncContext
*s
= avctx
->priv_data
;
45 VAAPIDecodePicture
*pic
= s
->current_picture_ptr
->hwaccel_picture_private
;
46 VAPictureParameterBufferMPEG2 pic_param
;
47 VAIQMatrixBufferMPEG2 iq_matrix
;
50 pic
->output_surface
= ff_vaapi_get_surface_id(s
->current_picture_ptr
->f
);
52 pic_param
= (VAPictureParameterBufferMPEG2
) {
53 .horizontal_size
= s
->width
,
54 .vertical_size
= s
->height
,
55 .forward_reference_picture
= VA_INVALID_ID
,
56 .backward_reference_picture
= VA_INVALID_ID
,
57 .picture_coding_type
= s
->pict_type
,
58 .f_code
= mpeg2_get_f_code(s
),
59 .picture_coding_extension
.bits
= {
60 .intra_dc_precision
= s
->intra_dc_precision
,
61 .picture_structure
= s
->picture_structure
,
62 .top_field_first
= s
->top_field_first
,
63 .frame_pred_frame_dct
= s
->frame_pred_frame_dct
,
64 .concealment_motion_vectors
= s
->concealment_motion_vectors
,
65 .q_scale_type
= s
->q_scale_type
,
66 .intra_vlc_format
= s
->intra_vlc_format
,
67 .alternate_scan
= s
->alternate_scan
,
68 .repeat_first_field
= s
->repeat_first_field
,
69 .progressive_frame
= s
->progressive_frame
,
70 .is_first_field
= mpeg2_get_is_frame_start(s
),
74 switch (s
->pict_type
) {
75 case AV_PICTURE_TYPE_B
:
76 pic_param
.backward_reference_picture
= ff_vaapi_get_surface_id(s
->next_picture
.f
);
78 case AV_PICTURE_TYPE_P
:
79 pic_param
.forward_reference_picture
= ff_vaapi_get_surface_id(s
->last_picture
.f
);
83 err
= ff_vaapi_decode_make_param_buffer(avctx
, pic
,
84 VAPictureParameterBufferType
,
85 &pic_param
, sizeof(pic_param
));
89 iq_matrix
.load_intra_quantiser_matrix
= 1;
90 iq_matrix
.load_non_intra_quantiser_matrix
= 1;
91 iq_matrix
.load_chroma_intra_quantiser_matrix
= 1;
92 iq_matrix
.load_chroma_non_intra_quantiser_matrix
= 1;
94 for (i
= 0; i
< 64; i
++) {
95 int n
= s
->idsp
.idct_permutation
[ff_zigzag_direct
[i
]];
96 iq_matrix
.intra_quantiser_matrix
[i
] = s
->intra_matrix
[n
];
97 iq_matrix
.non_intra_quantiser_matrix
[i
] = s
->inter_matrix
[n
];
98 iq_matrix
.chroma_intra_quantiser_matrix
[i
] = s
->chroma_intra_matrix
[n
];
99 iq_matrix
.chroma_non_intra_quantiser_matrix
[i
] = s
->chroma_inter_matrix
[n
];
102 err
= ff_vaapi_decode_make_param_buffer(avctx
, pic
,
103 VAIQMatrixBufferType
,
104 &iq_matrix
, sizeof(iq_matrix
));
111 ff_vaapi_decode_cancel(avctx
, pic
);
115 static int vaapi_mpeg2_end_frame(AVCodecContext
*avctx
)
117 MpegEncContext
*s
= avctx
->priv_data
;
118 VAAPIDecodePicture
*pic
= s
->current_picture_ptr
->hwaccel_picture_private
;
121 ret
= ff_vaapi_decode_issue(avctx
, pic
);
125 ff_mpeg_draw_horiz_band(s
, 0, s
->avctx
->height
);
131 static int vaapi_mpeg2_decode_slice(AVCodecContext
*avctx
, const uint8_t *buffer
, uint32_t size
)
133 const MpegEncContext
*s
= avctx
->priv_data
;
134 VAAPIDecodePicture
*pic
= s
->current_picture_ptr
->hwaccel_picture_private
;
135 VASliceParameterBufferMPEG2 slice_param
;
137 uint32_t quantiser_scale_code
, intra_slice_flag
, macroblock_offset
;
140 /* Determine macroblock_offset */
141 init_get_bits(&gb
, buffer
, 8 * size
);
142 if (get_bits_long(&gb
, 32) >> 8 != 1) /* start code */
143 return AVERROR_INVALIDDATA
;
144 quantiser_scale_code
= get_bits(&gb
, 5);
145 intra_slice_flag
= get_bits1(&gb
);
146 if (intra_slice_flag
) {
148 while (get_bits1(&gb
) != 0)
151 macroblock_offset
= get_bits_count(&gb
);
153 slice_param
= (VASliceParameterBufferMPEG2
) {
154 .slice_data_size
= size
,
155 .slice_data_offset
= 0,
156 .slice_data_flag
= VA_SLICE_DATA_FLAG_ALL
,
157 .macroblock_offset
= macroblock_offset
,
158 .slice_horizontal_position
= s
->mb_x
,
159 .slice_vertical_position
= s
->mb_y
>> (s
->picture_structure
!= PICT_FRAME
),
160 .quantiser_scale_code
= quantiser_scale_code
,
161 .intra_slice_flag
= intra_slice_flag
,
164 err
= ff_vaapi_decode_make_slice_buffer(avctx
, pic
,
165 &slice_param
, sizeof(slice_param
),
168 ff_vaapi_decode_cancel(avctx
, pic
);
176 const AVHWAccel ff_mpeg2_vaapi_hwaccel
= {
177 .name
= "mpeg2_vaapi",
178 .type
= AVMEDIA_TYPE_VIDEO
,
179 .id
= AV_CODEC_ID_MPEG2VIDEO
,
180 .pix_fmt
= AV_PIX_FMT_VAAPI
,
181 .start_frame
= &vaapi_mpeg2_start_frame
,
182 .end_frame
= &vaapi_mpeg2_end_frame
,
183 .decode_slice
= &vaapi_mpeg2_decode_slice
,
184 .frame_priv_data_size
= sizeof(VAAPIDecodePicture
),
185 .init
= &ff_vaapi_decode_init
,
186 .uninit
= &ff_vaapi_decode_uninit
,
187 .frame_params
= &ff_vaapi_common_frame_params
,
188 .priv_data_size
= sizeof(VAAPIDecodeContext
),
189 .caps_internal
= HWACCEL_CAP_ASYNC_SAFE
,