summaryrefslogtreecommitdiff
path: root/src/gen8_vme.c
diff options
context:
space:
mode:
authorLim Siew Hoon <siew.hoon.lim@intel.com>2015-09-09 10:10:58 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2015-09-09 12:42:14 +0800
commit6f2ea35f5caaf39e81617e7087f20f4885b51985 (patch)
tree39d156039b1e3b5634b99a034d86c063b6419b91 /src/gen8_vme.c
parent2d42512bd6b7382c5effe21a5f9999742d98db88 (diff)
downloadlibva-intel-driver-6f2ea35f5caaf39e81617e7087f20f4885b51985.tar.gz
Fix if issue of SLICE_TYPE_I statement in vme_pipeline_programing
Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com> Reviewed-by: Zhao, Yakui <yakui.zhao@intel.com>
Diffstat (limited to 'src/gen8_vme.c')
-rw-r--r--src/gen8_vme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gen8_vme.c b/src/gen8_vme.c
index 5dd502c8..edf6060c 100644
--- a/src/gen8_vme.c
+++ b/src/gen8_vme.c
@@ -666,7 +666,7 @@ static void gen8_vme_pipeline_programing(VADriverContextP ctx,
}
if ((pSliceParameter->slice_type == SLICE_TYPE_I) ||
- (pSliceParameter->slice_type == SLICE_TYPE_I)) {
+ (pSliceParameter->slice_type == SLICE_TYPE_SI)) {
kernel_shader = VME_INTRA_SHADER;
} else if ((pSliceParameter->slice_type == SLICE_TYPE_P) ||
(pSliceParameter->slice_type == SLICE_TYPE_SP)) {