summaryrefslogtreecommitdiff
path: root/libavcodec/vp8.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-06-21 22:09:35 +0200
committerClément Bœsch <u@pkh.me>2016-06-21 22:09:35 +0200
commit8df1dbd7980a6b09c0b6f43299a49e56d19bd1ca (patch)
treec19d08d53e0243fec0e083c1522bfee93f969fda /libavcodec/vp8.c
parentea80e90e134c8325add9e11eb07a52b0af815deb (diff)
parent5afb94c817abffad030c6b94d7003dca8aace3d5 (diff)
Merge commit '5afb94c817abffad030c6b94d7003dca8aace3d5'
* commit '5afb94c817abffad030c6b94d7003dca8aace3d5': Mark read-only tables as static Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r--libavcodec/vp8.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index e60705a187..c1c3eb7072 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -1163,10 +1163,10 @@ void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y,
uint8_t *segment, uint8_t *ref, int layout, int is_vp7)
{
VP56RangeCoder *c = &s->c;
- const char *vp7_feature_name[] = { "q-index",
- "lf-delta",
- "partial-golden-update",
- "blit-pitch" };
+ static const char *vp7_feature_name[] = { "q-index",
+ "lf-delta",
+ "partial-golden-update",
+ "blit-pitch" };
if (is_vp7) {
int i;
*segment = 0;