From a27c32948754dfb50cd2f625a4ac75e4f52c8875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Sat, 2 Aug 2025 03:23:12 +0200 Subject: [PATCH] avcodec/ffv1: align function declaration with definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kacper Michajłow --- libavcodec/ffv1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index ee0a1a7858..d6f25737f5 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -201,7 +201,7 @@ int ff_ffv1_parse_header(FFV1Context *f, RangeCoder *c, uint8_t *state); int ff_ffv1_read_extra_header(FFV1Context *f); int ff_ffv1_read_quant_tables(RangeCoder *c, int16_t quant_table[MAX_CONTEXT_INPUTS][256]); -void ff_ffv1_compute_bits_per_plane(const FFV1Context *f, FFV1SliceContext *sc, int bits[4], int offset[1], int mask[4], int bits_per_raw_sample); +void ff_ffv1_compute_bits_per_plane(const FFV1Context *f, FFV1SliceContext *sc, int bits[4], int *offset, int mask[4], int bits_per_raw_sample); int ff_ffv1_get_symbol(RangeCoder *c, uint8_t *state, int is_signed); /**