summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-23 06:17:08 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-31 03:12:55 +0200
commit2793e4353f2ec11084bcdf211c32649c47a704bc (patch)
treeff96d51bd4fb40f822f06bd8a53c1501e6a91a46
parent145236741d9a7c18da4ee22c30b777b781bc5ac8 (diff)
avcodec/half2float: Constify arrays in half2float()
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/half2float.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/half2float.h b/libavcodec/half2float.h
index fd11caffdf..7df6747e50 100644
--- a/libavcodec/half2float.h
+++ b/libavcodec/half2float.h
@@ -61,8 +61,8 @@ static void half2float_table(uint32_t *mantissatable, uint32_t *exponenttable,
offsettable[32] = 0;
}
-static uint32_t half2float(uint16_t h, uint32_t *mantissatable, uint32_t *exponenttable,
- uint16_t *offsettable)
+static uint32_t half2float(uint16_t h, const uint32_t *mantissatable, const uint32_t *exponenttable,
+ const uint16_t *offsettable)
{
uint32_t f;