Home
last modified time | relevance | path

Searched refs:decodeSupport (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_video_dec.cpp798 D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT decodeSupport = {}; in d3d12_video_decoder_check_caps_and_create_decoder() local
799 decodeSupport.NodeIndex = pD3D12Dec->m_NodeIndex; in d3d12_video_decoder_check_caps_and_create_decoder()
800 decodeSupport.Configuration = decodeConfiguration; in d3d12_video_decoder_check_caps_and_create_decoder()
801 decodeSupport.Width = pD3D12Dec->base.width; in d3d12_video_decoder_check_caps_and_create_decoder()
802 decodeSupport.Height = pD3D12Dec->base.height; in d3d12_video_decoder_check_caps_and_create_decoder()
803 decodeSupport.DecodeFormat = pD3D12Dec->m_decodeFormat; in d3d12_video_decoder_check_caps_and_create_decoder()
805 decodeSupport.FrameRate.Numerator = 0; in d3d12_video_decoder_check_caps_and_create_decoder()
806 decodeSupport.FrameRate.Denominator = 0; in d3d12_video_decoder_check_caps_and_create_decoder()
807 decodeSupport.BitRate = 0; in d3d12_video_decoder_check_caps_and_create_decoder()
810 &decodeSupport, in d3d12_video_decoder_check_caps_and_create_decoder()
[all …]
Dd3d12_video_screen.cpp82 D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT decodeSupport = {}; in get_max_level_resolution_video_decode_support() local
83 decodeSupport.Configuration = decoderConfig; in get_max_level_resolution_video_decode_support()
84 decodeSupport.DecodeFormat = format; in get_max_level_resolution_video_decode_support()
89 decodeSupport.Width = resolutionsLevelList[idxResol].resolution.Width; in get_max_level_resolution_video_decode_support()
90 decodeSupport.Height = resolutionsLevelList[idxResol].resolution.Height; in get_max_level_resolution_video_decode_support()
93 &decodeSupport, in get_max_level_resolution_video_decode_support()
94 sizeof(decodeSupport)))) { in get_max_level_resolution_video_decode_support()
96 if (((decodeSupport.SupportFlags & D3D12_VIDEO_DECODE_SUPPORT_FLAG_SUPPORTED) != 0) || in get_max_level_resolution_video_decode_support()
97 decodeSupport.DecodeTier > D3D12_VIDEO_DECODE_TIER_NOT_SUPPORTED) { in get_max_level_resolution_video_decode_support()
100 outSupportedConfig = decodeSupport; in get_max_level_resolution_video_decode_support()
Dd3d12_video_dec.h212 d3d12_video_decoder_supports_aot_dpb(D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT decodeSupport,