blob: 7c012a8296963a408d7213631ab1cdd135f69ded [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001/*
John Koleszarc2140b82010-09-09 08:16:39 -04002 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
John Koleszar0ea50ce2010-05-18 11:58:33 -04003 *
John Koleszar94c52e42010-06-18 12:39:21 -04004 * Use of this source code is governed by a BSD-style license
John Koleszar09202d82010-06-04 16:19:40 -04005 * 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 Koleszar94c52e42010-06-18 12:39:21 -04007 * in the file PATENTS. All contributing project authors may
John Koleszar09202d82010-06-04 16:19:40 -04008 * be found in the AUTHORS file in the root of the source tree.
John Koleszar0ea50ce2010-05-18 11:58:33 -04009 */
10
11
12/****************************************************************************
13*
14* Module Title : boolhuff.h
15*
16* Description : Bool Coder header file.
17*
18****************************************************************************/
James Zernbb285202013-12-15 18:25:05 -080019#ifndef VP8_ENCODER_BOOLHUFF_H_
20#define VP8_ENCODER_BOOLHUFF_H_
John Koleszar0ea50ce2010-05-18 11:58:33 -040021
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -040022#include "vpx_ports/mem.h"
James Berrybc715112011-10-12 11:18:50 -040023#include "vpx/internal/vpx_codec_internal.h"
John Koleszar0ea50ce2010-05-18 11:58:33 -040024
James Zern513fae32014-01-18 12:16:11 -080025#ifdef __cplusplus
26extern "C" {
27#endif
28
John Koleszar0ea50ce2010-05-18 11:58:33 -040029typedef struct
30{
31 unsigned int lowvalue;
32 unsigned int range;
John Koleszar0ea50ce2010-05-18 11:58:33 -040033 int count;
34 unsigned int pos;
35 unsigned char *buffer;
James Berrybc715112011-10-12 11:18:50 -040036 unsigned char *buffer_end;
37 struct vpx_internal_error_info *error;
John Koleszar0ea50ce2010-05-18 11:58:33 -040038} BOOL_CODER;
39
James Berrybc715112011-10-12 11:18:50 -040040extern void vp8_start_encode(BOOL_CODER *bc, unsigned char *buffer, unsigned char *buffer_end);
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -040041
John Koleszar0ea50ce2010-05-18 11:58:33 -040042extern void vp8_encode_value(BOOL_CODER *br, int data, int bits);
43extern void vp8_stop_encode(BOOL_CODER *bc);
44extern const unsigned int vp8_prob_cost[256];
45
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -040046
47DECLARE_ALIGNED(16, extern const unsigned char, vp8_norm[256]);
48
James Berrybc715112011-10-12 11:18:50 -040049static 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 LaVarnwaya25f6a92011-07-19 09:17:25 -040059
James Berrybc715112011-10-12 11:18:50 -040060 return 0;
61}
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -040062static 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. Bultje65d22822013-03-18 15:28:51 -070070#ifdef VP8_ENTROPY_STATS
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -040071#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 Berrybc715112011-10-12 11:18:50 -0400113 validate_buffer(br->buffer + br->pos, 1, br->buffer_end, br->error);
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -0400114 br->buffer[br->pos++] = (lowvalue >> (24 - offset));
James Berrybc715112011-10-12 11:18:50 -0400115
Scott LaVarnwaya25f6a92011-07-19 09:17:25 -0400116 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 Zern513fae32014-01-18 12:16:11 -0800128#ifdef __cplusplus
129} // extern "C"
130#endif
131
James Zernbb285202013-12-15 18:25:05 -0800132#endif // VP8_ENCODER_BOOLHUFF_H_