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 /libavformat/scd.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 'libavformat/scd.c')
-rw-r--r-- | libavformat/scd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/scd.c b/libavformat/scd.c index 91b2262ff7..f0048bcc85 100644 --- a/libavformat/scd.c +++ b/libavformat/scd.c @@ -187,7 +187,7 @@ static int scd_read_track(AVFormatContext *s, SCDTrackHeader *track, int index) /* Not sure what to do with these, it seems to be fine to ignore them. */ if (track->aux_count != 0) - av_log(s, AV_LOG_DEBUG, "[%d] Track has %u auxillary chunk(s).\n", index, track->aux_count); + av_log(s, AV_LOG_DEBUG, "[%d] Track has %u auxiliary chunk(s).\n", index, track->aux_count); if ((st = avformat_new_stream(s, NULL)) == NULL) return AVERROR(ENOMEM); |