diff options
author | peng.chen <peng.c.chen@intel.com> | 2016-01-25 09:55:36 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2016-01-29 14:52:33 +0800 |
commit | aa36c576122df0ead7a6f6ff6e2eb5210131ee38 (patch) | |
tree | 41213e9ab775249ccbd31db68875b8fec922da04 | |
parent | 0312b5c456e29970514230ecf32456aebe64f977 (diff) |
set the minimum of vp9 deocding frame width and height as 1, not 8
Signed-off-by: peng.chen <peng.c.chen@intel.com>
(cherry picked from commit 99ae37b2e2d29be0c00447f26ccab294a2bcc2d9)
-rw-r--r-- | src/i965_decoder_utils.c | 4 |
1 files 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 |