summaryrefslogtreecommitdiff
path: root/libavcodec/vp8data.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-03-24 11:16:53 +0100
committerDiego Biurrun <diego@biurrun.de>2016-03-25 15:23:56 +0100
commitf4d581cda3897f66c1dda7586b93f86a591dbbef (patch)
tree2b0ffc804d914fe27b7324f7e21487476df13bda /libavcodec/vp8data.h
parent02cd8bb9cb4381c50f42a9284098cc8a33d397db (diff)
lavc: Deduplicate zigzag_scan table
Diffstat (limited to 'libavcodec/vp8data.h')
-rw-r--r--libavcodec/vp8data.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/vp8data.h b/libavcodec/vp8data.h
index b49dea98fa..f8f9fff674 100644
--- a/libavcodec/vp8data.h
+++ b/libavcodec/vp8data.h
@@ -708,14 +708,6 @@ static const uint8_t vp8_token_update_probs[4][8][3][NUM_DCT_TOKENS - 1] = {
},
};
-// fixme: copied from h264data.h
-static const uint8_t zigzag_scan[16]={
- 0 + 0 * 4, 1 + 0 * 4, 0 + 1 * 4, 0 + 2 * 4,
- 1 + 1 * 4, 2 + 0 * 4, 3 + 0 * 4, 2 + 1 * 4,
- 1 + 2 * 4, 0 + 3 * 4, 1 + 3 * 4, 2 + 2 * 4,
- 3 + 1 * 4, 3 + 2 * 4, 2 + 3 * 4, 3 + 3 * 4,
-};
-
static const uint8_t vp8_dc_qlookup[VP8_MAX_QUANT + 1] = {
4, 5, 6, 7, 8, 9, 10, 10, 11, 12, 13, 14, 15, 16, 17, 17,
18, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 25, 25, 26, 27, 28,