[FFmpeg-cvslog] avcodec/pixblockdsp: Fix get_pixels alignment documentation

Andreas Rheinhardt git at videolan.org
Sat May 31 02:52:58 EEST 2025


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Tue May 27 21:21:25 2025 +0200| [fbf5cfaed51f27cc77ea7aef5ae9dd622a12d23e] | committer: Andreas Rheinhardt

avcodec/pixblockdsp: Fix get_pixels alignment documentation

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fbf5cfaed51f27cc77ea7aef5ae9dd622a12d23e
---

 libavcodec/pixblockdsp.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/pixblockdsp.h b/libavcodec/pixblockdsp.h
index 487a39244d..8d767b2fd3 100644
--- a/libavcodec/pixblockdsp.h
+++ b/libavcodec/pixblockdsp.h
@@ -24,7 +24,7 @@
 
 typedef struct PixblockDSPContext {
     void (*get_pixels)(int16_t *restrict block /* align 16 */,
-                       const uint8_t *pixels /* align 8 */,
+                       const uint8_t *pixels /* align 8 for <= 8 bit, 16 otherwise */,
                        ptrdiff_t stride);
     void (*get_pixels_unaligned)(int16_t *restrict block /* align 16 */,
                        const uint8_t *pixels,



More information about the ffmpeg-cvslog mailing list