diff options
author | Lim Siew Hoon <siew.hoon.lim@intel.com> | 2015-09-09 10:10:58 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2015-09-09 12:42:14 +0800 |
commit | 6f2ea35f5caaf39e81617e7087f20f4885b51985 (patch) | |
tree | 39d156039b1e3b5634b99a034d86c063b6419b91 | |
parent | 2d42512bd6b7382c5effe21a5f9999742d98db88 (diff) |
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>
-rw-r--r-- | src/gen75_vme.c | 2 | ||||
-rw-r--r-- | src/gen7_vme.c | 2 | ||||
-rw-r--r-- | src/gen8_vme.c | 2 | ||||
-rw-r--r-- | src/gen9_vme.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gen75_vme.c b/src/gen75_vme.c index 0b8855d..a85d6b3 100644 --- a/src/gen75_vme.c +++ b/src/gen75_vme.c @@ -593,7 +593,7 @@ static void gen75_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)) { diff --git a/src/gen7_vme.c b/src/gen7_vme.c index 7b116ad..156e0d3 100644 --- a/src/gen7_vme.c +++ b/src/gen7_vme.c @@ -615,7 +615,7 @@ static void gen7_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 = AVC_VME_INTRA_SHADER; } else if ((pSliceParameter->slice_type == SLICE_TYPE_P) || (pSliceParameter->slice_type == SLICE_TYPE_SP)) { diff --git a/src/gen8_vme.c b/src/gen8_vme.c index 5dd502c..edf6060 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)) { diff --git a/src/gen9_vme.c b/src/gen9_vme.c index 736b13a..5f9b796 100644 --- a/src/gen9_vme.c +++ b/src/gen9_vme.c @@ -710,7 +710,7 @@ static void gen9_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)) { |