]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/speedhq: Remove cast
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 8 Dec 2020 20:59:09 +0000 (21:59 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Thu, 31 Dec 2020 10:54:22 +0000 (11:54 +0100)
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/speedhq.c

index 748e8617f62edcdad10f78133b7f21fe625270f0..0c08894315204f13cc142ca88da0a05cd1ea8d8b 100644 (file)
@@ -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,
 };