From b9723adc305683879814b2caaaea871c478e882c Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Thu, 4 Jan 2018 09:27:24 +1100 Subject: [PATCH] [client] h264: use high profile as it's more compatible on newer cards --- client/decoders/h264.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/decoders/h264.c b/client/decoders/h264.c index 6f36c39c..8cf52417 100644 --- a/client/decoders/h264.c +++ b/client/decoders/h264.c @@ -196,7 +196,7 @@ static bool lgd_h264_initialize(void * opaque, const LG_RendererFormat format, S status = vaQueryConfigEntrypoints( this->vaDisplay, - VAProfileH264Baseline, + VAProfileH264High, entryPoints, &entryPointCount ); @@ -221,7 +221,7 @@ static bool lgd_h264_initialize(void * opaque, const LG_RendererFormat format, S attrib.type = VAConfigAttribRTFormat; vaGetConfigAttributes( this->vaDisplay, - VAProfileH264ConstrainedBaseline, + VAProfileH264High, VAEntrypointVLD, &attrib, 1); @@ -234,7 +234,7 @@ static bool lgd_h264_initialize(void * opaque, const LG_RendererFormat format, S status = vaCreateConfig( this->vaDisplay, - VAProfileH264ConstrainedBaseline, + VAProfileH264High, VAEntrypointVLD, &attrib, 1,