1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/pixblockdsp: Fix get_pixels alignment documentation

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-05-27 21:21:25 +02:00
parent 17d5f30dd5
commit fbf5cfaed5

View File

@ -24,7 +24,7 @@
typedef struct PixblockDSPContext { typedef struct PixblockDSPContext {
void (*get_pixels)(int16_t *restrict block /* align 16 */, 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); ptrdiff_t stride);
void (*get_pixels_unaligned)(int16_t *restrict block /* align 16 */, void (*get_pixels_unaligned)(int16_t *restrict block /* align 16 */,
const uint8_t *pixels, const uint8_t *pixels,