mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 08:30:10 +01:00
nv50: allow forcing PMPEG use, for ease of testing
This also allows people who don't want to install the binary blobs required for VP2 to still get MPEG decoding. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
ee3ca3614e
commit
940f7cec77
2 changed files with 4 additions and 2 deletions
|
|
@ -258,7 +258,8 @@ nv50_create(struct pipe_screen *pscreen, void *priv)
|
|||
draw_set_rasterize_stage(nv50->draw, nv50_draw_render_stage(nv50));
|
||||
#endif
|
||||
|
||||
if (screen->base.device->chipset < 0x84) {
|
||||
if (screen->base.device->chipset < 0x84 ||
|
||||
debug_get_bool_option("NOUVEAU_PMPEG", FALSE)) {
|
||||
/* PMPEG */
|
||||
nouveau_context_init_vdec(&nv50->base);
|
||||
} else if (screen->base.device->chipset < 0x98 ||
|
||||
|
|
|
|||
|
|
@ -647,7 +647,8 @@ nv50_screen_create(struct nouveau_device *dev)
|
|||
|
||||
nv50_screen_init_resource_functions(pscreen);
|
||||
|
||||
if (screen->base.device->chipset < 0x84) {
|
||||
if (screen->base.device->chipset < 0x84 ||
|
||||
debug_get_bool_option("NOUVEAU_PMPEG", FALSE)) {
|
||||
/* PMPEG */
|
||||
nouveau_screen_init_vdec(&screen->base);
|
||||
} else if (screen->base.device->chipset < 0x98 ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue