mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
d3d11decoder: Check 16K resolution support
16K decoding is supported by some GPUs Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2633>
This commit is contained in:
parent
037beeb157
commit
d010e1c3f4
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,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