mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
d3d12: fix configuration flag for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_DISABLE_LOOP_FILTER_ACROSS_SLICES
Signed-off-by: Pohsiang Hsu <pohhsu@microsoft.com> Reviewed-by: Sil Vilerino <sivileri@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34844>
This commit is contained in:
parent
2ff18b2757
commit
2939604248
1 changed files with 1 additions and 1 deletions
|
|
@ -895,7 +895,7 @@ d3d12_video_encoder_convert_hevc_codec_configuration(struct d3d12_video_encoder
|
|||
if (picture->seq.sample_adaptive_offset_enabled_flag)
|
||||
config.ConfigurationFlags |= D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_SAO_FILTER;
|
||||
|
||||
if (picture->pic.pps_loop_filter_across_slices_enabled_flag)
|
||||
if (!picture->pic.pps_loop_filter_across_slices_enabled_flag)
|
||||
config.ConfigurationFlags |= D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_DISABLE_LOOP_FILTER_ACROSS_SLICES;
|
||||
|
||||
if (picture->pic.transform_skip_enabled_flag)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue