diff options
author | Sonny Jiang <[email protected]> | 2015-12-15 15:33:40 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2016-03-24 23:08:04 -0400 |
commit | f87ed903fb6fd1bdb0cfa7a4dd5b9d00a9f38e31 (patch) | |
tree | 28e86ebe1156bb81f73f900a1a2bd6d7cc1b9ffa | |
parent | 0c5477465f08502fd81783ce17c449330537eb00 (diff) |
radeon/vce: disable two pipe mode for Polaris11
Signed-off-by: Sonny Jiang <[email protected]>
Reviewed-by: Leo Liu <[email protected]>
-rw-r--r-- | src/gallium/drivers/radeon/radeon_vce.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/radeon_vce.c b/src/gallium/drivers/radeon/radeon_vce.c index 6584393f430..99b82ca9409 100644 --- a/src/gallium/drivers/radeon/radeon_vce.c +++ b/src/gallium/drivers/radeon/radeon_vce.c @@ -409,7 +409,8 @@ struct pipe_video_codec *rvce_create_encoder(struct pipe_context *context, rscreen->info.drm_major == 3) enc->use_vui = true; if (rscreen->info.family >= CHIP_TONGA && - rscreen->info.family != CHIP_STONEY) + rscreen->info.family != CHIP_STONEY && + rscreen->info.family != CHIP_POLARIS11) enc->dual_pipe = true; /* TODO enable B frame with dual instance */ if ((rscreen->info.family >= CHIP_TONGA) && |