PR #22426 opened by Ramiro Polla (ramiro) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22426 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22426.patch
>From 9ab4753e410aa26dc1772e4f73317a32b7975ac9 Mon Sep 17 00:00:00 2001 From: Ramiro Polla <[email protected]> Date: Sat, 7 Mar 2026 00:01:28 +0100 Subject: [PATCH] avutil/frame: fix typos --- libavutil/frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavutil/frame.h b/libavutil/frame.h index 088b24b717..771c9ce453 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -658,7 +658,7 @@ typedef struct AVFrame { * * For coding bitstream formats which support both lossless and lossy * encoding, it is sometimes possible for a decoder to determine which method - * was used when the bitsream was encoded. + * was used when the bitstream was encoded. */ #define AV_FRAME_FLAG_LOSSLESS (1 << 5) /** @@ -742,7 +742,7 @@ typedef struct AVFrame { /** * @anchor cropping * @name Cropping - * Video frames only. The number of pixels to discard from the the + * Video frames only. The number of pixels to discard from the * top/bottom/left/right border of the frame to obtain the sub-rectangle of * the frame intended for presentation. * @{ @@ -825,7 +825,7 @@ int av_frame_ref(AVFrame *dst, const AVFrame *src); * Ensure the destination frame refers to the same data described by the source * frame, either by creating a new reference for each AVBufferRef from src if * they differ from those in dst, by allocating new buffers and copying data if - * src is not reference counted, or by unrefencing it if src is empty. + * src is not reference counted, or by unreferencing it if src is empty. * * Frame properties on dst will be replaced by those from src. * -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
