aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2025-08-01 22:43:23 +0200
committerTimo Rothenpieler <timo@rothenpieler.org>2025-08-03 13:48:47 +0200
commit262d41c8042acfa7ff1da6f256c367be86ecddb2 (patch)
treea9fb6b7aec94868375cf94f139dcd265158dbf7c /libavcodec/utils.c
parent8d439b24839d486d1fcc858a2a5eb7ecd700e3a9 (diff)
downloadffmpeg-262d41c8042acfa7ff1da6f256c367be86ecddb2.tar.gz
all: fix typos found by codespell
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index f2686b6863..cfa35d0e04 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -336,7 +336,7 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
// H.264 uses edge emulation for out of frame motion vectors, for this
// it requires a temporary area large enough to hold a 21x21 block,
- // increasing witdth ensure that the temporary area is large enough,
+ // increasing width ensure that the temporary area is large enough,
// the next rounded up width is 32
*width = FFMAX(*width, 32);
}