diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-05-30 14:56:57 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-06-02 13:43:10 +0200 |
commit | 93e53e253a5b723db18cf3c804569191cb1d610a (patch) | |
tree | c7d0baa4cf990582c6f12121d08d03c8c02796b4 | |
parent | 09aeeeb66323792577ffbc7faed82c1a3180553f (diff) | |
download | ffmpeg-93e53e253a5b723db18cf3c804569191cb1d610a.tar.gz |
avcodec/vc1dsp: Fix vc1op_pixels_func semantics
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/vc1dsp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/vc1dsp.h b/libavcodec/vc1dsp.h index e3b90d2b62..b018537af3 100644 --- a/libavcodec/vc1dsp.h +++ b/libavcodec/vc1dsp.h @@ -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 */ |