mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
d3d11decoder: Check 16K resolution support
16K decoding is supported by some GPUs Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2629>
This commit is contained in:
parent
4b50e674c3
commit
eaa9943b98
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ typedef struct _GstDXVAResolution
|
|||
|
||||
static const GstDXVAResolution gst_dxva_resolutions[] = {
|
||||
{1920, 1088}, {2560, 1440}, {3840, 2160}, {4096, 2160},
|
||||
{7680, 4320}, {8192, 4320}
|
||||
{7680, 4320}, {8192, 4320}, {15360, 8640}, {16384, 8640}
|
||||
};
|
||||
|
||||
gboolean gst_d3d11_decoder_util_is_legacy_device (GstD3D11Device * device);
|
||||
|
|
Loading…
Reference in a new issue