move zigzag scan to common place
[nihav.git] / nihav-core / src / codecs / h263 / data.rs
index 4f6a7057535dbd2c926219c62c36e729d778d969..de827d461e1ceb86a0b24b722cc4d8f4d9455583 100644 (file)
@@ -8,17 +8,6 @@ pub const H263_SCALES: &[u8] = &[
 pub const H263_DC_SCALES: &[u8] = &[
     0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62 ];
 
-pub const H263_ZIGZAG: &[usize] = &[
-    0,   1,  8, 16,  9,  2,  3, 10,
-    17, 24, 32, 25, 18, 11,  4,  5,
-    12, 19, 26, 33, 40, 48, 41, 34,
-    27, 20, 13,  6,  7, 14, 21, 28,
-    35, 42, 49, 56, 57, 50, 43, 36,
-    29, 22, 15, 23, 30, 37, 44, 51,
-    58, 59, 52, 45, 38, 31, 39, 46,
-    53, 60, 61, 54, 47, 55, 62, 63
-];
-
 pub const H263_SCAN_H: &[usize] = &[
     0,   1,  2,  3,  8,  9, 16, 17,
     10, 11,  4,  5,  6,  7, 15, 14,