Re: [libav-devel] [PATCH 1/2] hwcontext_vaapi: Add driver quirks to the hwdevice

2016-06-17 Thread Mark Thompson
On 17/06/16 09:46, Anton Khirnov wrote: > Quoting Mark Thompson (2016-06-12 19:03:54) >> The driver being used is detected inside av_hwdevice_ctx_init(), and >> the quirks field then set from a table of known drivers. >> >> Also adds the Intel i965 driver quirk (it does not destroy parameter >>

Re: [libav-devel] [PATCH 1/2] hwcontext_vaapi: Add driver quirks to the hwdevice

2016-06-17 Thread Anton Khirnov
Quoting Mark Thompson (2016-06-12 19:03:54) > The driver being used is detected inside av_hwdevice_ctx_init(), and > the quirks field then set from a table of known drivers. > > Also adds the Intel i965 driver quirk (it does not destroy parameter > buffers used in a call to vaRenderPicture()) and

[libav-devel] [PATCH 1/2] hwcontext_vaapi: Add driver quirks to the hwdevice

2016-06-12 Thread Mark Thompson
The driver being used is detected inside av_hwdevice_ctx_init(), and the quirks field then set from a table of known drivers. Also adds the Intel i965 driver quirk (it does not destroy parameter buffers used in a call to vaRenderPicture()) and detects that driver to set it. --- Another