search for: nvc0_create_decod

Displaying 3 results from an estimated 3 matches for "nvc0_create_decod".

Did you mean: nvc0_create_decoder
2014 May 18
2
[PATCH] nvc0: maxwell has a new video engine, don't return a decoder object
...3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_video.c b/src/gallium/drivers/nouveau/nvc0/nvc0_video.c index 5871f59..c9ab13a 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_video.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_video.c @@ -77,6 +77,9 @@ nvc0_create_decoder(struct pipe_context *context, if (getenv("XVMC_VL")) return vl_create_decoder(context, templ); + if (screen->device->chipset >= 0x110) + return NULL; + if (templ->entrypoint != PIPE_VIDEO_ENTRYPOINT_BITSTREAM) { debug_printf("%x\n",...
2014 May 19
0
[Mesa-dev] [PATCH] nvc0: maxwell has a new video engine, don't return a decoder object
...ertions(+) > > diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_video.c b/src/gallium/drivers/nouveau/nvc0/nvc0_video.c > index 5871f59..c9ab13a 100644 > --- a/src/gallium/drivers/nouveau/nvc0/nvc0_video.c > +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_video.c > @@ -77,6 +77,9 @@ nvc0_create_decoder(struct pipe_context *context, > if (getenv("XVMC_VL")) > return vl_create_decoder(context, templ); > > + if (screen->device->chipset >= 0x110) > + return NULL; Is that really necessary? It'll already fail because it tries to create kepler&...
2013 Aug 11
10
[PATCH 00/10] Add support for MPEG2 and VC-1 on VP3/VP4 for NV98-NVAF
As it turns out, with the proprietary firmware, the VP3 and VP4 interfaces are identical. Furthermore, this is all already implemented for nvc0. So these patches (a) move the easily sharable bits of the nvc0 implementation into the nouveau directory, and then (b) implement the other parts in nv50. The non-shared parts are still largely copies, but there are some differences, not the least of which