summaryrefslogtreecommitdiff
path: root/libavcodec/speedhq.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-01-19 19:15:42 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-01-19 19:49:55 +0100
commit1df3d636d46b675d0b176ceddc4530f7d29c5aa1 (patch)
tree946cac26d92de5f9e66c02c158cdb5461c4e00e0 /libavcodec/speedhq.c
parent45f4bf94afb8b70d99fb7b5760fd65f5c3ad8b88 (diff)
avcodec/speedhq: Fix warning about "initialization from incompatible pointer type"
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 7ccb2c33ef..385f779f83 100644
--- a/libavcodec/speedhq.c
+++ b/libavcodec/speedhq.c
@@ -135,7 +135,7 @@ static const uint8_t speedhq_run[121] = {
static RLTable ff_rl_speedhq = {
121,
121,
- speedhq_vlc,
+ (const uint16_t (*)[])speedhq_vlc,
speedhq_run,
speedhq_level,
};