diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-23 14:33:59 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-25 00:18:47 +0100 |
commit | a82001c8cf009e2de7b7f7a5bfb560c01f4d4f4c (patch) | |
tree | 1899410951aa4e4b255b53af2a341b03f31bc744 | |
parent | 2bcec40ccee6a848db4034c4d096a44bf10db957 (diff) | |
download | ffmpeg-a82001c8cf009e2de7b7f7a5bfb560c01f4d4f4c.tar.gz |
avcodec/vp8data: Remove unused array
Unused since 748f921ad1997a464fb8963d0ba2c5bb5e036b1b.
Reviewed-by: Peter Ross <pross@xvid.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/vp8data.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h index 5e6dea7617..1fcce134eb 100644 --- a/libavcodec/vp8data.h +++ b/libavcodec/vp8data.h @@ -316,12 +316,6 @@ static const uint8_t vp8_pred4x4_prob_intra[10][10][9] = { }, }; -static const int8_t vp8_segmentid_tree[][2] = { - { 1, 2 }, - { -0, -1 }, // '00', '01' - { -2, -3 }, // '10', '11' -}; - static const uint8_t vp8_coeff_band[16] = { 0, 1, 2, 3, 6, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7 }; |