summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiang, Haihao <haihao.xiang@intel.com>2016-04-11 16:22:18 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2016-04-28 20:30:33 +0800
commit656c16bf9a399ea3154a12f24846323bfe3ef4e5 (patch)
treea63463a95bf6c2fd453153c8ab516ca3da1814b4
parentbb232561bba4320ffc41b67db9f7ca3ecab32de7 (diff)
Set the right alignment on BXT/KBL
With the commit 'CSC: Remove average logic when saving NV12 surface on IVB+', This fixes https://bugs.freedesktop.org/show_bug.cgi?id=94845 on BXT/KBL Reviewed-by: Kelley, Sean V <sean.v.kelley@intel.com> Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
-rw-r--r--src/i965_device_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i965_device_info.c b/src/i965_device_info.c
index 6ac1d0c..c777a0d 100644
--- a/src/i965_device_info.c
+++ b/src/i965_device_info.c
@@ -378,7 +378,7 @@ static struct hw_codec_info bxt_hw_codec_info = {
.max_width = 4096,
.max_height = 4096,
- .min_linear_wpitch = 64,
+ .min_linear_wpitch = 128,
.min_linear_hpitch = 16,
.h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
@@ -430,7 +430,7 @@ static struct hw_codec_info kbl_hw_codec_info = {
.max_width = 4096,
.max_height = 4096,
- .min_linear_wpitch = 64,
+ .min_linear_wpitch = 128,
.min_linear_hpitch = 16,
.h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |