diff options
author | Wu Jianhua <jianhua.wu@intel.com> | 2021-12-09 17:36:51 +0800 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-12-10 16:48:20 +0100 |
commit | 58816f6927745d3512b26efcc7e5d88bee249e53 (patch) | |
tree | 0459d6d3854ad651f1a143436cc70f0a4ac1df0d /libavfilter/allfilters.c | |
parent | ceeff7ae8d918cd54a9b1c8deb85184da53f1250 (diff) | |
download | ffmpeg-58816f6927745d3512b26efcc7e5d88bee249e53.tar.gz |
avfilter: add a transpose_vulkan filter
The following command is on how to apply transpose_vulkan filter:
ffmpeg -init_hw_device vulkan -i input.264 -vf \
hwupload=extra_hw_frames=16,transpose_vulkan,hwdownload,format=yuv420p output.264
Signed-off-by: Wu Jianhua <jianhua.wu@intel.com>
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index b1af2cbcc8..9e16b4e71e 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -462,6 +462,7 @@ extern const AVFilter ff_vf_transpose; extern const AVFilter ff_vf_transpose_npp; extern const AVFilter ff_vf_transpose_opencl; extern const AVFilter ff_vf_transpose_vaapi; +extern const AVFilter ff_vf_transpose_vulkan; extern const AVFilter ff_vf_trim; extern const AVFilter ff_vf_unpremultiply; extern const AVFilter ff_vf_unsharp; |