mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
radv/video: Remove carrizo workaround from VCN decode
Carrizo has UVD so this can never be true. Reviewed-by: Dave Airlie <airlied@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35105>
This commit is contained in:
parent
79045337bc
commit
1f795ec226
1 changed files with 0 additions and 4 deletions
|
|
@ -1331,7 +1331,6 @@ get_h265_msg(struct radv_device *device, struct radv_video_session *vid, struct
|
|||
uint32_t *height_in_samples,
|
||||
void *it_ptr)
|
||||
{
|
||||
const struct radv_physical_device *pdev = radv_device_physical(device);
|
||||
rvcn_dec_message_hevc_t result;
|
||||
int i, j;
|
||||
const struct VkVideoDecodeH265PictureInfoKHR *h265_pic_info =
|
||||
|
|
@ -1354,9 +1353,6 @@ get_h265_msg(struct radv_device *device, struct radv_video_session *vid, struct
|
|||
result.sps_info_flags |= sps->flags.strong_intra_smoothing_enabled_flag << 7;
|
||||
result.sps_info_flags |= sps->flags.separate_colour_plane_flag << 8;
|
||||
|
||||
if (pdev->info.family == CHIP_CARRIZO)
|
||||
result.sps_info_flags |= 1 << 9;
|
||||
|
||||
if (!h265_pic_info->pStdPictureInfo->flags.short_term_ref_pic_set_sps_flag) {
|
||||
result.sps_info_flags |= 1 << 11;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue