John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | /* |
John Koleszar | c2140b8 | 2010-09-09 08:16:39 -0400 | [diff] [blame] | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | * |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 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 |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 7 | * in the file PATENTS. All contributing project authors may |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 8 | * be found in the AUTHORS file in the root of the source tree. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | |
| 12 | /**************************************************************************** |
| 13 | * |
| 14 | * Module Title : boolhuff.h |
| 15 | * |
| 16 | * Description : Bool Coder header file. |
| 17 | * |
| 18 | ****************************************************************************/ |
James Zern | bb28520 | 2013-12-15 18:25:05 -0800 | [diff] [blame] | 19 | #ifndef VP8_ENCODER_BOOLHUFF_H_ |
| 20 | #define VP8_ENCODER_BOOLHUFF_H_ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 21 | |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 22 | #include "vpx_ports/mem.h" |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 23 | #include "vpx/internal/vpx_codec_internal.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 24 | |
James Zern | 513fae3 | 2014-01-18 12:16:11 -0800 | [diff] [blame] | 25 | #ifdef __cplusplus |
| 26 | extern "C" { |
| 27 | #endif |
| 28 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 29 | typedef struct |
| 30 | { |
| 31 | unsigned int lowvalue; |
| 32 | unsigned int range; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 33 | int count; |
| 34 | unsigned int pos; |
| 35 | unsigned char *buffer; |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 36 | unsigned char *buffer_end; |
| 37 | struct vpx_internal_error_info *error; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 38 | } BOOL_CODER; |
| 39 | |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 40 | extern void vp8_start_encode(BOOL_CODER *bc, unsigned char *buffer, unsigned char *buffer_end); |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 41 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 42 | extern void vp8_encode_value(BOOL_CODER *br, int data, int bits); |
| 43 | extern void vp8_stop_encode(BOOL_CODER *bc); |
| 44 | extern const unsigned int vp8_prob_cost[256]; |
| 45 | |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 46 | |
| 47 | DECLARE_ALIGNED(16, extern const unsigned char, vp8_norm[256]); |
| 48 | |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 49 | static int validate_buffer(const unsigned char *start, |
| 50 | size_t len, |
| 51 | const unsigned char *end, |
| 52 | struct vpx_internal_error_info *error) |
| 53 | { |
| 54 | if (start + len > start && start + len < end) |
| 55 | return 1; |
| 56 | else |
| 57 | vpx_internal_error(error, VPX_CODEC_CORRUPT_FRAME, |
| 58 | "Truncated packet or corrupt partition "); |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 59 | |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 60 | return 0; |
| 61 | } |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 62 | static void vp8_encode_bool(BOOL_CODER *br, int bit, int probability) |
| 63 | { |
| 64 | unsigned int split; |
| 65 | int count = br->count; |
| 66 | unsigned int range = br->range; |
| 67 | unsigned int lowvalue = br->lowvalue; |
| 68 | register unsigned int shift; |
| 69 | |
Ronald S. Bultje | 65d2282 | 2013-03-18 15:28:51 -0700 | [diff] [blame] | 70 | #ifdef VP8_ENTROPY_STATS |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 71 | #if defined(SECTIONBITS_OUTPUT) |
| 72 | |
| 73 | if (bit) |
| 74 | Sectionbits[active_section] += vp8_prob_cost[255-probability]; |
| 75 | else |
| 76 | Sectionbits[active_section] += vp8_prob_cost[probability]; |
| 77 | |
| 78 | #endif |
| 79 | #endif |
| 80 | |
| 81 | split = 1 + (((range - 1) * probability) >> 8); |
| 82 | |
| 83 | range = split; |
| 84 | |
| 85 | if (bit) |
| 86 | { |
| 87 | lowvalue += split; |
| 88 | range = br->range - split; |
| 89 | } |
| 90 | |
| 91 | shift = vp8_norm[range]; |
| 92 | |
| 93 | range <<= shift; |
| 94 | count += shift; |
| 95 | |
| 96 | if (count >= 0) |
| 97 | { |
| 98 | int offset = shift - count; |
| 99 | |
| 100 | if ((lowvalue << (offset - 1)) & 0x80000000) |
| 101 | { |
| 102 | int x = br->pos - 1; |
| 103 | |
| 104 | while (x >= 0 && br->buffer[x] == 0xff) |
| 105 | { |
| 106 | br->buffer[x] = (unsigned char)0; |
| 107 | x--; |
| 108 | } |
| 109 | |
| 110 | br->buffer[x] += 1; |
| 111 | } |
| 112 | |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 113 | validate_buffer(br->buffer + br->pos, 1, br->buffer_end, br->error); |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 114 | br->buffer[br->pos++] = (lowvalue >> (24 - offset)); |
James Berry | bc71511 | 2011-10-12 11:18:50 -0400 | [diff] [blame] | 115 | |
Scott LaVarnway | a25f6a9 | 2011-07-19 09:17:25 -0400 | [diff] [blame] | 116 | lowvalue <<= offset; |
| 117 | shift = count; |
| 118 | lowvalue &= 0xffffff; |
| 119 | count -= 8 ; |
| 120 | } |
| 121 | |
| 122 | lowvalue <<= shift; |
| 123 | br->count = count; |
| 124 | br->lowvalue = lowvalue; |
| 125 | br->range = range; |
| 126 | } |
| 127 | |
James Zern | 513fae3 | 2014-01-18 12:16:11 -0800 | [diff] [blame] | 128 | #ifdef __cplusplus |
| 129 | } // extern "C" |
| 130 | #endif |
| 131 | |
James Zern | bb28520 | 2013-12-15 18:25:05 -0800 | [diff] [blame] | 132 | #endif // VP8_ENCODER_BOOLHUFF_H_ |