diff options
author | Diederik de Haas via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> | 2023-11-10 16:41:54 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2023-11-18 19:55:42 +0100 |
commit | c07ed10b0e18beecdb5c816546eca3a065ddc5ad (patch) | |
tree | 66387e2a7cc9b1680c8b0f02100dfe319f05d48a /libavutil/hwcontext_vulkan.c | |
parent | 5452cbdc150f0fcff736cd3897a2c41fec77fb79 (diff) | |
download | ffmpeg-c07ed10b0e18beecdb5c816546eca3a065ddc5ad.tar.gz |
apply spelling fixes
Fix spelling issue as reported by Debian's lintian tool:
accomodate -> accommodate
addtional -> additional
auxillary -> auxiliary
bellow -> below
betweeen -> between
Calulate -> Calculate
coefficents -> coefficients
Defalt -> Default
defaul -> default
higer -> higher
neccesary -> necessary
orignal -> original
ouput -> output
precison -> precision
processsing -> processing
substract -> subtract
Transfered -> Transferred
upto -> up to
Also add several of them to the 'common typos' check in patcheck.
Signed-off-by: Diederik de Haas <didi.debian@cknow.org>
Diffstat (limited to 'libavutil/hwcontext_vulkan.c')
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index b4130abcde..204b57c011 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -3072,7 +3072,7 @@ static int vulkan_transfer_data_from_cuda(AVHWFramesContext *hwfc, CHECK_CU(cu->cuCtxPopCurrent(&dummy)); - av_log(hwfc, AV_LOG_VERBOSE, "Transfered CUDA image to Vulkan!\n"); + av_log(hwfc, AV_LOG_VERBOSE, "Transferred CUDA image to Vulkan!\n"); return err = prepare_frame(hwfc, &fp->upload_exec, dst_f, PREP_MODE_EXTERNAL_IMPORT); @@ -3648,7 +3648,7 @@ static int vulkan_transfer_data_to_cuda(AVHWFramesContext *hwfc, AVFrame *dst, CHECK_CU(cu->cuCtxPopCurrent(&dummy)); - av_log(hwfc, AV_LOG_VERBOSE, "Transfered Vulkan image to CUDA!\n"); + av_log(hwfc, AV_LOG_VERBOSE, "Transferred Vulkan image to CUDA!\n"); return prepare_frame(hwfc, &fp->upload_exec, dst_f, PREP_MODE_EXTERNAL_IMPORT); |