| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM 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 #include <assert.h> | 11 #include <assert.h> |
| 12 #include "vp9/encoder/vp9_writer.h" | 12 #include "vp9/encoder/vp9_writer.h" |
| 13 #include "vp9/common/vp9_entropy.h" | 13 #include "vp9/common/vp9_entropy.h" |
| 14 | 14 |
| 15 #ifdef ENTROPY_STATS | |
| 16 unsigned int active_section = 0; | |
| 17 #endif | |
| 18 | |
| 19 const unsigned int vp9_prob_cost[256] = { | |
| 20 2047, 2047, 1791, 1641, 1535, 1452, 1385, 1328, 1279, 1235, 1196, 1161, | |
| 21 1129, 1099, 1072, 1046, 1023, 1000, 979, 959, 940, 922, 905, 889, | |
| 22 873, 858, 843, 829, 816, 803, 790, 778, 767, 755, 744, 733, | |
| 23 723, 713, 703, 693, 684, 675, 666, 657, 649, 641, 633, 625, | |
| 24 617, 609, 602, 594, 587, 580, 573, 567, 560, 553, 547, 541, | |
| 25 534, 528, 522, 516, 511, 505, 499, 494, 488, 483, 477, 472, | |
| 26 467, 462, 457, 452, 447, 442, 437, 433, 428, 424, 419, 415, | |
| 27 410, 406, 401, 397, 393, 389, 385, 381, 377, 373, 369, 365, | |
| 28 361, 357, 353, 349, 346, 342, 338, 335, 331, 328, 324, 321, | |
| 29 317, 314, 311, 307, 304, 301, 297, 294, 291, 288, 285, 281, | |
| 30 278, 275, 272, 269, 266, 263, 260, 257, 255, 252, 249, 246, | |
| 31 243, 240, 238, 235, 232, 229, 227, 224, 221, 219, 216, 214, | |
| 32 211, 208, 206, 203, 201, 198, 196, 194, 191, 189, 186, 184, | |
| 33 181, 179, 177, 174, 172, 170, 168, 165, 163, 161, 159, 156, | |
| 34 154, 152, 150, 148, 145, 143, 141, 139, 137, 135, 133, 131, | |
| 35 129, 127, 125, 123, 121, 119, 117, 115, 113, 111, 109, 107, | |
| 36 105, 103, 101, 99, 97, 95, 93, 92, 90, 88, 86, 84, | |
| 37 82, 81, 79, 77, 75, 73, 72, 70, 68, 66, 65, 63, | |
| 38 61, 60, 58, 56, 55, 53, 51, 50, 48, 46, 45, 43, | |
| 39 41, 40, 38, 37, 35, 33, 32, 30, 29, 27, 25, 24, | |
| 40 22, 21, 19, 18, 16, 15, 13, 12, 10, 9, 7, 6, | |
| 41 4, 3, 1, 1}; | |
| 42 | |
| 43 void vp9_start_encode(vp9_writer *br, uint8_t *source) { | 15 void vp9_start_encode(vp9_writer *br, uint8_t *source) { |
| 44 br->lowvalue = 0; | 16 br->lowvalue = 0; |
| 45 br->range = 255; | 17 br->range = 255; |
| 46 br->value = 0; | 18 br->value = 0; |
| 47 br->count = -24; | 19 br->count = -24; |
| 48 br->buffer = source; | 20 br->buffer = source; |
| 49 br->pos = 0; | 21 br->pos = 0; |
| 50 vp9_write_bit(br, 0); | 22 vp9_write_bit(br, 0); |
| 51 } | 23 } |
| 52 | 24 |
| 53 void vp9_stop_encode(vp9_writer *br) { | 25 void vp9_stop_encode(vp9_writer *br) { |
| 54 int i; | 26 int i; |
| 55 | 27 |
| 56 for (i = 0; i < 32; i++) | 28 for (i = 0; i < 32; i++) |
| 57 vp9_write_bit(br, 0); | 29 vp9_write_bit(br, 0); |
| 58 | 30 |
| 59 // Ensure there's no ambigous collision with any index marker bytes | 31 // Ensure there's no ambigous collision with any index marker bytes |
| 60 if ((br->buffer[br->pos - 1] & 0xe0) == 0xc0) | 32 if ((br->buffer[br->pos - 1] & 0xe0) == 0xc0) |
| 61 br->buffer[br->pos++] = 0; | 33 br->buffer[br->pos++] = 0; |
| 62 } | 34 } |
| 63 | 35 |
| OLD | NEW |