aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_overlay_vulkan.c
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2024-10-04 11:22:02 +0200
committerLynne <dev@lynne.ee>2024-10-06 01:21:44 +0200
commit0a1f8107bb78e0db5e0e8d3041f377416102bdea (patch)
treeb1bce1b2bb9236c6402b16ff6f8905ac533a3c30 /libavfilter/vf_overlay_vulkan.c
parentfcd1cdcb7b749abc97d3f2252d843ca1730a6e24 (diff)
downloadffmpeg-0a1f8107bb78e0db5e0e8d3041f377416102bdea.tar.gz
vulkan: move SPIR-V compilation code to libavutil
The code is not currently used by libavutil, its just where our common Vulkan code is. Since SPIR-V compilation will be needed by lavc, move it, rather than having lavc including lavfi.
Diffstat (limited to 'libavfilter/vf_overlay_vulkan.c')
-rw-r--r--libavfilter/vf_overlay_vulkan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_overlay_vulkan.c b/libavfilter/vf_overlay_vulkan.c
index 3af2482772..4c77dcc8fe 100644
--- a/libavfilter/vf_overlay_vulkan.c
+++ b/libavfilter/vf_overlay_vulkan.c
@@ -20,8 +20,8 @@
#include "libavutil/random_seed.h"
#include "libavutil/opt.h"
+#include "libavutil/vulkan_spirv.h"
#include "vulkan_filter.h"
-#include "vulkan_spirv.h"
#include "filters.h"
#include "framesync.h"