From 1dc6bdb7965dd09d6c706540a438ced442fa3d2c Mon Sep 17 00:00:00 2001 From: Rinat Ibragimov Date: Tue, 27 Sep 2016 17:21:12 +0300 Subject: [PATCH] video-surface: pretend that 4096x4096 is supported --- src/api-video-surface.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api-video-surface.cc b/src/api-video-surface.cc index bfc832e..dc58907 100644 --- a/src/api-video-surface.cc +++ b/src/api-video-surface.cc @@ -488,10 +488,10 @@ QueryCapabilitiesImpl(VdpDevice device, VdpChromaType surface_chroma_type, VdpBo *is_supported = 1; if (max_width) - *max_width = 1920; + *max_width = 4096; if (max_height) - *max_height = 1080; + *max_height = 4096; return VDP_STATUS_OK; }