From aa36c576122df0ead7a6f6ff6e2eb5210131ee38 Mon Sep 17 00:00:00 2001 From: "peng.chen" Date: Mon, 25 Jan 2016 09:55:36 +0800 Subject: set the minimum of vp9 deocding frame width and height as 1, not 8 Signed-off-by: peng.chen (cherry picked from commit 99ae37b2e2d29be0c00447f26ccab294a2bcc2d9) --- src/i965_decoder_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i965_decoder_utils.c b/src/i965_decoder_utils.c index 835d3fd..892f3cf 100644 --- a/src/i965_decoder_utils.c +++ b/src/i965_decoder_utils.c @@ -1322,10 +1322,10 @@ intel_decoder_check_vp9_parameter(VADriverContextP ctx, int i=0, index=0; //Max support upto 4k for BXT - if ((pic_param->frame_width-1 < 7) || (pic_param->frame_width-1 > 4095)) + if ((pic_param->frame_width-1 < 0) || (pic_param->frame_width-1 > 4095)) return va_status; - if ((pic_param->frame_height-1 < 7) || (pic_param->frame_height-1 > 4095)) + if ((pic_param->frame_height-1 < 0) || (pic_param->frame_height-1 > 4095)) return va_status; //Set the reference object in decode state for last reference -- cgit v1.2.3