[Libva] [libva-intel-driver][PATCH] encode/hevc: fix HEVC encode on SKL GT3
Xiang, Haihao
haihao.xiang at intel.com
Wed Jul 22 19:05:37 PDT 2015
GT3 has 2 BSD rings, but HEVC commands can be only dispatched to BSD ring 0.
Signed-off-by: Xiang, Haihao <haihao.xiang at intel.com>
---
src/gen9_mfc_hevc.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/gen9_mfc_hevc.c b/src/gen9_mfc_hevc.c
index 306abd9..e52e408 100644
--- a/src/gen9_mfc_hevc.c
+++ b/src/gen9_mfc_hevc.c
@@ -1783,6 +1783,7 @@ gen9_hcpe_hevc_pipeline_programing(VADriverContextP ctx,
struct encode_state *encode_state,
struct intel_encoder_context *encoder_context)
{
+ struct i965_driver_data *i965 = i965_driver_data(ctx);
struct intel_batchbuffer *batch = encoder_context->base.batch;
dri_bo *slice_batch_bo;
@@ -1793,7 +1794,10 @@ gen9_hcpe_hevc_pipeline_programing(VADriverContextP ctx,
#endif
// begin programing
- intel_batchbuffer_start_atomic_bcs(batch, 0x4000);
+ if (i965->intel.has_bsd2)
+ intel_batchbuffer_start_atomic_bcs_override(batch, 0x4000, BSD_RING0);
+ else
+ intel_batchbuffer_start_atomic_bcs(batch, 0x4000);
intel_batchbuffer_emit_mi_flush(batch);
// picture level programing
--
1.9.1
More information about the Libva
mailing list