PR #22404 opened by Ramiro Polla (ramiro) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22404 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22404.patch
>From 493dfc356f8e3a5a86335a62ba672abb94000875 Mon Sep 17 00:00:00 2001 From: Ramiro Polla <[email protected]> Date: Thu, 5 Mar 2026 17:24:10 +0100 Subject: [PATCH] swscale/swscale_internal: fix typos in flag names --- libswscale/swscale_internal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index d9fb6d9297..5920f7ffad 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -186,10 +186,10 @@ typedef void (*yuv2interleavedX_fn)(enum AVPixelFormat dstFormat, * to write into dest[] * @param uvalpha chroma scaling coefficient for the second line of chroma * pixels, either 2048 or 0. If 0, one chroma input is used - * for 2 output pixels (or if the SWS_FLAG_FULL_CHR_INT flag + * for 2 output pixels (or if the SWS_FULL_CHR_H_INT flag * is set, it generates 1 output pixel). If 2048, two chroma * input pixels should be averaged for 2 output pixels (this - * only happens if SWS_FLAG_FULL_CHR_INT is not set) + * only happens if SWS_FULL_CHR_H_INT is not set) * @param y vertical line number for this output. This does not need * to be used to calculate the offset in the destination, * but can be used to generate comfort noise using dithering @@ -599,7 +599,7 @@ struct SwsInternal { * pixels to interpolate the output pixel. Since you can use at most * two input pixels per output pixel in bilinear scaling, this is * impossible and thus downscaling by any size will create artifacts. - * To enable this type of scaling, set SWS_FLAG_FAST_BILINEAR + * To enable this type of scaling, set SWS_FAST_BILINEAR * in SwsInternal->flags. */ /** @{ */ -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
