Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickaƫl Raulet <mraulet@insa-rennes.fr>2014-07-13 12:30:13 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-15 01:46:36 +0400
commit07b91b8d629db51974c6fb97e36406d508a56764 (patch)
tree24c851cb712b419e927b5e17c1807b3fcf092209 /libavcodec/hevc_cabac.c
parenta65d6e17bd04e11b863c8f80d028af0058440a68 (diff)
hevc: cleaning up, remove unused constants(cherry picked from commit 7eed32d076c57aa03011d65a64903e8bdb633978)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc_cabac.c')
-rw-r--r--libavcodec/hevc_cabac.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/libavcodec/hevc_cabac.c b/libavcodec/hevc_cabac.c
index 40f5ce18fe..d770a27a63 100644
--- a/libavcodec/hevc_cabac.c
+++ b/libavcodec/hevc_cabac.c
@@ -360,14 +360,6 @@ static const uint8_t horiz_scan8x8_inv[8][8] = {
{ 44, 45, 46, 47, 60, 61, 62, 63, },
};
-static const uint8_t diag_scan4x1_x[4] = {
- 0, 1, 2, 3,
-};
-
-static const uint8_t diag_scan1x4_y[4] = {
- 0, 1, 2, 3,
-};
-
static const uint8_t diag_scan2x2_x[4] = {
0, 0, 1, 1,
};
@@ -381,50 +373,6 @@ static const uint8_t diag_scan2x2_inv[2][2] = {
{ 1, 3, },
};
-static const uint8_t diag_scan8x2_x[16] = {
- 0, 0, 1, 1,
- 2, 2, 3, 3,
- 4, 4, 5, 5,
- 6, 6, 7, 7,
-};
-
-static const uint8_t diag_scan8x2_y[16] = {
- 0, 1, 0, 1,
- 0, 1, 0, 1,
- 0, 1, 0, 1,
- 0, 1, 0, 1,
-};
-
-static const uint8_t diag_scan8x2_inv[2][8] = {
- { 0, 2, 4, 6, 8, 10, 12, 14, },
- { 1, 3, 5, 7, 9, 11, 13, 15, },
-};
-
-static const uint8_t diag_scan2x8_x[16] = {
- 0, 0, 1, 0,
- 1, 0, 1, 0,
- 1, 0, 1, 0,
- 1, 0, 1, 1,
-};
-
-static const uint8_t diag_scan2x8_y[16] = {
- 0, 1, 0, 2,
- 1, 3, 2, 4,
- 3, 5, 4, 6,
- 5, 7, 6, 7,
-};
-
-static const uint8_t diag_scan2x8_inv[8][2] = {
- { 0, 2, },
- { 1, 4, },
- { 3, 6, },
- { 5, 8, },
- { 7, 10, },
- { 9, 12, },
- { 11, 14, },
- { 13, 15, },
-};
-
const uint8_t ff_hevc_diag_scan4x4_x[16] = {
0, 0, 1, 0,
1, 2, 0, 1,