mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-03 10:27:40 +00:00
Allow building testffmpeg without Vulkan support
This commit is contained in:
parent
16e0806ced
commit
fcb132b8e8
2 changed files with 45 additions and 3 deletions
|
@ -12,11 +12,13 @@
|
|||
#include <SDL3/SDL.h>
|
||||
#include <SDL3/SDL_vulkan.h>
|
||||
|
||||
#include "testffmpeg_vulkan.h"
|
||||
|
||||
#ifdef FFMPEG_VULKAN_SUPPORT
|
||||
|
||||
#include <libavutil/hwcontext.h>
|
||||
#include <libavutil/hwcontext_vulkan.h>
|
||||
|
||||
#include "testffmpeg_vulkan.h"
|
||||
|
||||
#define VULKAN_FUNCTIONS() \
|
||||
VULKAN_GLOBAL_FUNCTION(vkCreateInstance) \
|
||||
VULKAN_GLOBAL_FUNCTION(vkEnumerateInstanceExtensionProperties) \
|
||||
|
@ -966,3 +968,40 @@ void DestroyVulkanVideoContext(VulkanVideoContext *context)
|
|||
SDL_free(context);
|
||||
}
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
VulkanVideoContext *CreateVulkanVideoContext(SDL_Window *window)
|
||||
{
|
||||
SDL_SetError("testffmpeg not built with Vulkan support");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void SetupVulkanRenderProperties(VulkanVideoContext *context, SDL_PropertiesID props)
|
||||
{
|
||||
}
|
||||
|
||||
void SetupVulkanDeviceContextData(VulkanVideoContext *context, AVVulkanDeviceContext *ctx)
|
||||
{
|
||||
}
|
||||
|
||||
SDL_Texture *CreateVulkanVideoTexture(VulkanVideoContext *context, AVFrame *frame, SDL_Renderer *renderer, SDL_PropertiesID props)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int BeginVulkanFrameRendering(VulkanVideoContext *context, AVFrame *frame, SDL_Renderer *renderer)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int FinishVulkanFrameRendering(VulkanVideoContext *context, AVFrame *frame, SDL_Renderer *renderer)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
void DestroyVulkanVideoContext(VulkanVideoContext *context)
|
||||
{
|
||||
}
|
||||
|
||||
#endif // FFMPEG_VULKAN_SUPPORT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue