aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2025-08-02 03:23:12 +0200
committerKacper Michajłow <kasper93@gmail.com>2025-08-02 22:25:28 +0000
commita27c32948754dfb50cd2f625a4ac75e4f52c8875 (patch)
treec33e8df2f1c3e7b50892c2f398243e012f4885ea
parent518d9f0dd43b6ba329a975fe0744a7de5a26f64a (diff)
downloadffmpeg-a27c32948754dfb50cd2f625a4ac75e4f52c8875.tar.gz
avcodec/ffv1: align function declaration with definition
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
-rw-r--r--libavcodec/ffv1.h2
1 files changed, 1 insertions, 1 deletions
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);
/**