diff options
author | Leo Liu <[email protected]> | 2017-11-22 13:31:53 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-04-18 14:45:35 -0400 |
commit | 90de03708fa269ad54de881b467f4811e4eef87e (patch) | |
tree | 482ce818160186196e96245e8a2f112e907dd67f /src/gallium/drivers | |
parent | c6f1d360198c52d208645c0ccb5e988cded408e8 (diff) |
radeon/vce: disable vce dual pipe on VegaM
Acked-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-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 57b9d349582..22168b50e24 100644 --- a/src/gallium/drivers/radeon/radeon_vce.c +++ b/src/gallium/drivers/radeon/radeon_vce.c @@ -416,7 +416,8 @@ struct pipe_video_codec *si_vce_create_encoder(struct pipe_context *context, if (sscreen->info.family >= CHIP_TONGA && sscreen->info.family != CHIP_STONEY && sscreen->info.family != CHIP_POLARIS11 && - sscreen->info.family != CHIP_POLARIS12) + sscreen->info.family != CHIP_POLARIS12 && + sscreen->info.family != CHIP_VEGAM) enc->dual_pipe = true; /* TODO enable B frame with dual instance */ if ((sscreen->info.family >= CHIP_TONGA) && |