Re: [libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-14 Thread Mark Thompson
On 14/06/16 06:02, Gwenole Beauchesne wrote: > Hi, > > 2016-06-10 10:49 GMT+02:00 Mark Thompson : >> On 10/06/16 08:06, Anton Khirnov wrote: >>> Quoting Mark Thompson (2016-06-10 01:25:58) Adds a general mechanism for setting driver quirks, and detects the driver name to set them. >

Re: [libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-13 Thread Diego Biurrun
On Tue, Jun 14, 2016 at 07:02:52AM +0200, Gwenole Beauchesne wrote: > 2016-06-10 10:49 GMT+02:00 Mark Thompson : > > On 10/06/16 08:06, Anton Khirnov wrote: > >> Quoting Mark Thompson (2016-06-10 01:25:58) > >>> Adds a general mechanism for setting driver quirks, and detects the > >>> driver name t

Re: [libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-13 Thread Gwenole Beauchesne
Hi, 2016-06-10 10:49 GMT+02:00 Mark Thompson : > On 10/06/16 08:06, Anton Khirnov wrote: >> Quoting Mark Thompson (2016-06-10 01:25:58) >>> Adds a general mechanism for setting driver quirks, and detects the >>> driver name to set them. >>> >>> When the i965 driver is being used, destroy all param

Re: [libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-10 Thread Mark Thompson
On 10/06/16 08:06, Anton Khirnov wrote: > Quoting Mark Thompson (2016-06-10 01:25:58) >> Adds a general mechanism for setting driver quirks, and detects the >> driver name to set them. >> >> When the i965 driver is being used, destroy all parameter buffers >> explicitly after use despite passing th

Re: [libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-10 Thread Anton Khirnov
Quoting Mark Thompson (2016-06-10 01:25:58) > Adds a general mechanism for setting driver quirks, and detects the > driver name to set them. > > When the i965 driver is being used, destroy all parameter buffers > explicitly after use despite passing them to vaRenderPicture(). > --- > An alternativ

[libav-devel] [PATCH] vaapi_encode: Add driver-specific behaviour for i965 param buffers

2016-06-09 Thread Mark Thompson
Adds a general mechanism for setting driver quirks, and detects the driver name to set them. When the i965 driver is being used, destroy all parameter buffers explicitly after use despite passing them to vaRenderPicture(). --- An alternative approach to solving the same problem as the previous pat