Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-08 23:59:09 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-31 13:54:22 +0300
commit2b04405b63ef6885f4c8a1898b51577152a151c8 (patch)
tree60da219c56a0e9f6b1259137b90f9ebdd07fcb25 /libavcodec/speedhq.c
parent0e3272d9a47bb672f2e320c778d4849be471703b (diff)
avcodec/speedhq: Remove cast
Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/speedhq.c')
-rw-r--r--libavcodec/speedhq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c
index 748e8617f6..0c08894315 100644
--- a/libavcodec/speedhq.c
+++ b/libavcodec/speedhq.c
@@ -135,7 +135,7 @@ static const uint8_t speedhq_run[121] = {
RLTable ff_rl_speedhq = {
121,
121,
- (const uint16_t (*)[])speedhq_vlc,
+ speedhq_vlc,
speedhq_run,
speedhq_level,
};