avcodec/vc1dsp: Fix vc1op_pixels_func semantics

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2025-05-30 14:56:57 +02:00
parent 09aeeeb663
commit 93e53e253a

View File

@ -30,7 +30,9 @@
#include "hpeldsp.h"
#include "h264chroma.h"
typedef void (*vc1op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, ptrdiff_t line_size, int h);
typedef void (*vc1op_pixels_func)(uint8_t *block/*align width (8 or 16)*/,
const uint8_t *pixels/*align 1*/,
ptrdiff_t line_size, int round);
typedef struct VC1DSPContext {
/* vc1 functions */