OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The VP8 project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 | 11 |
12 #include "boolhuff.h" | 12 #include "boolhuff.h" |
(...skipping 12 matching lines...) Expand all Loading... |
25 255, 252, 249, 246, 243, 240, 238, 235, 232, 229, 227, 224, 221,
219, 216, 214, | 25 255, 252, 249, 246, 243, 240, 238, 235, 232, 229, 227, 224, 221,
219, 216, 214, |
26 211, 208, 206, 203, 201, 198, 196, 194, 191, 189, 186, 184, 181,
179, 177, 174, | 26 211, 208, 206, 203, 201, 198, 196, 194, 191, 189, 186, 184, 181,
179, 177, 174, |
27 172, 170, 168, 165, 163, 161, 159, 156, 154, 152, 150, 148, 145,
143, 141, 139, | 27 172, 170, 168, 165, 163, 161, 159, 156, 154, 152, 150, 148, 145,
143, 141, 139, |
28 137, 135, 133, 131, 129, 127, 125, 123, 121, 119, 117, 115, 113,
111, 109, 107, | 28 137, 135, 133, 131, 129, 127, 125, 123, 121, 119, 117, 115, 113,
111, 109, 107, |
29 105, 103, 101, 99, 97, 95, 93, 92, 90, 88, 86, 84, 82,
81, 79, 77, | 29 105, 103, 101, 99, 97, 95, 93, 92, 90, 88, 86, 84, 82,
81, 79, 77, |
30 75, 73, 72, 70, 68, 66, 65, 63, 61, 60, 58, 56, 55,
53, 51, 50, | 30 75, 73, 72, 70, 68, 66, 65, 63, 61, 60, 58, 56, 55,
53, 51, 50, |
31 48, 46, 45, 43, 41, 40, 38, 37, 35, 33, 32, 30, 29,
27, 25, 24, | 31 48, 46, 45, 43, 41, 40, 38, 37, 35, 33, 32, 30, 29,
27, 25, 24, |
32 22, 21, 19, 18, 16, 15, 13, 12, 10, 9, 7, 6, 4,
3, 1, 1 | 32 22, 21, 19, 18, 16, 15, 13, 12, 10, 9, 7, 6, 4,
3, 1, 1 |
33 }; | 33 }; |
34 | 34 |
OLD | NEW |