mirror of https://git.ffmpeg.org/ffmpeg.git
vaapi_h264: fix slice data offset
This commit is contained in:
parent
ae4f5d944c
commit
1ddd3e23a4
|
@ -328,7 +328,7 @@ static int vaapi_h264_decode_slice(AVCodecContext *avctx,
|
||||||
slice_param = (VASliceParameterBufferH264 *)ff_vaapi_alloc_slice(avctx->hwaccel_context, buffer, size);
|
slice_param = (VASliceParameterBufferH264 *)ff_vaapi_alloc_slice(avctx->hwaccel_context, buffer, size);
|
||||||
if (!slice_param)
|
if (!slice_param)
|
||||||
return -1;
|
return -1;
|
||||||
slice_param->slice_data_bit_offset = get_bits_count(&h->gb) + 8; /* bit buffer started beyond nal_unit_type */
|
slice_param->slice_data_bit_offset = get_bits_count(&sl->gb) + 8; /* bit buffer started beyond nal_unit_type */
|
||||||
slice_param->first_mb_in_slice = (sl->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + sl->mb_x;
|
slice_param->first_mb_in_slice = (sl->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + sl->mb_x;
|
||||||
slice_param->slice_type = ff_h264_get_slice_type(sl);
|
slice_param->slice_type = ff_h264_get_slice_type(sl);
|
||||||
slice_param->direct_spatial_mv_pred_flag = sl->slice_type == AV_PICTURE_TYPE_B ? sl->direct_spatial_mv_pred : 0;
|
slice_param->direct_spatial_mv_pred_flag = sl->slice_type == AV_PICTURE_TYPE_B ? sl->direct_spatial_mv_pred : 0;
|
||||||
|
|
Loading…
Reference in New Issue