avutil/frame: fix typos

This commit is contained in:
Ramiro Polla
2026-03-07 00:01:28 +01:00
parent 6023ad715c
commit 252ab61726

View File

@@ -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.
*