Re: [FFmpeg-devel] [PATCH 2/2] hwcontext_vulkan: expose enabled device and instance extensions

2020-05-10 Thread Lynne
May 10, 2020, 22:39 by s...@jkqxz.net: > On 10/05/2020 15:23, Lynne wrote: > >> May 10, 2020, 14:33 by s...@jkqxz.net: >> >>> On 10/05/2020 11:54, Lynne wrote: >>> ... >> >> From 6ecc3547bcfcc450c8ffe8d93a3040fd863f6288 Mon Sep 17 00:00:00 2001 >> From: Lynne >> Date: Sun, 10 May 2020

Re: [FFmpeg-devel] [PATCH 2/2] hwcontext_vulkan: expose enabled device and instance extensions

2020-05-10 Thread Mark Thompson
On 10/05/2020 15:23, Lynne wrote: > May 10, 2020, 14:33 by s...@jkqxz.net: >> On 10/05/2020 11:54, Lynne wrote: >>> ... > > From 6ecc3547bcfcc450c8ffe8d93a3040fd863f6288 Mon Sep 17 00:00:00 2001 > From: Lynne > Date: Sun, 10 May 2020 11:47:50 +0100 > Subject: [PATCH 2/3] hwcontext_vulkan:

Re: [FFmpeg-devel] [PATCH 2/2] hwcontext_vulkan: expose enabled device and instance extensions

2020-05-10 Thread Lynne
May 10, 2020, 14:33 by s...@jkqxz.net: > On 10/05/2020 11:54, Lynne wrote: > >> */ >> VkInstance inst; >> +/** >> + * Enabled instance extensions. By default, VK_KHR_surface is enabled >> if found. >> + */ >> > > Clarify how this should be set by the user if they are supplying the

[FFmpeg-devel] [PATCH 2/2] hwcontext_vulkan: expose enabled device and instance extensions

2020-05-10 Thread Lynne
This solves a huge oversight - it lets users reliably use their own AVVulkanDeviceContext. Otherwise, the extensions supplied and enabled are not discoverable by anything outside of hwcontext_vulkan. Patch attached. This, and the previous patch to enable extensions through the options are

Re: [FFmpeg-devel] [PATCH 2/2] hwcontext_vulkan: expose enabled device and instance extensions

2020-05-10 Thread Mark Thompson
On 10/05/2020 11:54, Lynne wrote: > This solves a huge oversight - it lets users reliably use their own > AVVulkanDeviceContext. Otherwise, the extensions supplied and enabled > are not discoverable by anything outside of hwcontext_vulkan. > > Patch attached. > > This, and the previous patch to