all: fix typos found by codespell

This commit is contained in:
Timo Rothenpieler
2025-08-01 22:43:23 +02:00
parent 8d439b2483
commit 262d41c804
303 changed files with 482 additions and 481 deletions

View File

@@ -114,7 +114,7 @@ static int recon_frame_process(PrivData *pd, const AVPacket *pkt)
return ret;
}
// the encoder's internal format (in which the reconsturcted frames are
// the encoder's internal format (in which the reconstructed frames are
// exported) may be different from the user-facing pixel format
if (f->format != pd->enc->pix_fmt) {
if (!pd->scaler) {
@@ -242,7 +242,7 @@ static int process_frame(DecodeContext *dc, AVFrame *frame)
else if (ret == AVERROR_EOF)
return 0;
else if (ret < 0) {
fprintf(stderr, "Error receving a frame from decoder\n");
fprintf(stderr, "Error receiving a frame from decoder\n");
return ret;
}

View File

@@ -41,7 +41,7 @@
static void usage(void)
{
printf("Simple expression evalutor, please *don't* turn me to a feature-complete language interpreter\n");
printf("Simple expression evaluator, please *don't* turn me to a feature-complete language interpreter\n");
printf("usage: ffeval [OPTIONS]\n");
printf("\n"
"Options:\n"

View File

@@ -6,7 +6,7 @@ merge_internal(){ # $1=repository, $2=refspec
[ -z "$version" ] && git pull --no-rebase --log --stat --commit --no-edit $1 sourceplugin-$2
}
unset suceeded failed version
unset succeeded failed version
merge(){ # $1=repository, $2=refspec
merge_internal "$1" "$2" || {
@@ -15,7 +15,7 @@ merge(){ # $1=repository, $2=refspec
failed="$failed $2"
return 0
}
suceeded="$suceeded $2"
succeeded="$succeeded $2"
}
error(){
@@ -34,5 +34,5 @@ git diff --cached --exit-code >/dev/null ||\
merge "https://github.com/michaelni/FFmpeg.git" "libpostproc"
[ -n "$version" ] && echo version: $version
[ -n "$suceeded" ] && echo Succeeded merging: $suceeded
[ -n "$succeeded" ] && echo Succeeded merging: $succeeded
[ -n "$failed" ] && echo Failed merging: $failed

View File

@@ -39,7 +39,7 @@ EOF
}
test -z "$1" && show_help
test ! -d "$1" && echo $1 is not an accessable directory && show_help
test ! -d "$1" && echo $1 is not an accessible directory && show_help
test ! -f target_dec_fate.sh && echo $0 Must be run from its location && show_help
grep 'CONFIG_OSSFUZZ 0' ../config.h && echo not configured for ossfuzz && show_help

View File

@@ -12,7 +12,7 @@ Provide a shell used to send interactive commands to a zmq filter.
The command assumes there is a running zmq or azmq filter acting as a
ZMQ server.
You can send a command to it, follwing the syntax:
You can send a command to it, following the syntax:
TARGET COMMAND [COMMAND_ARGS]
* TARGET is the target filter identifier to send the command to