This commit is contained in:
Mike Jerris
2016-09-26 14:31:51 -04:00
parent 2b1f0da5c4
commit 8c5f0301f3
1008 changed files with 110177 additions and 201326 deletions

View File

@@ -8,7 +8,6 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef VP8_ENCODER_TOKENIZE_H_
#define VP8_ENCODER_TOKENIZE_H_
@@ -21,18 +20,16 @@ extern "C" {
void vp8_tokenize_initialize();
typedef struct
{
short Token;
short Extra;
typedef struct {
short Token;
short Extra;
} TOKENVALUE;
typedef struct
{
const vp8_prob *context_tree;
short Extra;
unsigned char Token;
unsigned char skip_eob_node;
typedef struct {
const vp8_prob *context_tree;
short Extra;
unsigned char Token;
unsigned char skip_eob_node;
} TOKENEXTRA;
int rd_cost_mby(MACROBLOCKD *);
@@ -41,7 +38,8 @@ int rd_cost_mby(MACROBLOCKD *);
void init_context_counters();
void print_context_counters();
extern _int64 context_counters[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
extern _int64 context_counters[BLOCK_TYPES][COEF_BANDS][PREV_COEF_CONTEXTS]
[MAX_ENTROPY_TOKENS];
#endif
extern const short *const vp8_dct_value_cost_ptr;