diff options
author | Lynne <dev@lynne.ee> | 2021-08-10 12:38:49 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-08-14 00:27:43 +0200 |
commit | d5de9965ef680dad76ffca162afb20ddd9fd35d3 (patch) | |
tree | 1b12d1098c1ff7d5aa8c681f6a22cb6e4862c9c7 /libavutil/version.h | |
parent | c44c03221d760ef8caec9e13b07251b90a6a1c8e (diff) | |
download | ffmpeg-d5de9965ef680dad76ffca162afb20ddd9fd35d3.tar.gz |
imgutils: expose av_image_copy_plane_uc_from()
The reason why the generic av_image_copy_uc_from() doesn't really
fit in the case for Vulkan is because some planes may be copied via
other methods (such as mapping GPU memory), and if they don't satisfy
the strict alignment requirements, a gpu image->gpu buffer->cpu ram
copy is performed.
We need this for hwcontext_vulkan, and I think this will also be
useful to API users like libplacebo who would rather not write
a custom SIMD memcpy.
Diffstat (limited to 'libavutil/version.h')
-rw-r--r-- | libavutil/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index 6b4a265457..201b012596 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -79,7 +79,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 57 -#define LIBAVUTIL_VERSION_MINOR 3 +#define LIBAVUTIL_VERSION_MINOR 4 #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |