Index: source/libvpx/vp8/encoder/tokenize.c |
=================================================================== |
--- source/libvpx/vp8/encoder/tokenize.c (revision 60257) |
+++ source/libvpx/vp8/encoder/tokenize.c (working copy) |
@@ -1,5 +1,5 @@ |
/* |
- * Copyright (c) 2010 The VP8 project authors. All Rights Reserved. |
+ * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
* |
* Use of this source code is governed by a BSD-style license |
* that can be found in the LICENSE file in the root of the source |
@@ -26,8 +26,8 @@ |
void vp8_stuff_mb(VP8_COMP *cpi, MACROBLOCKD *x, TOKENEXTRA **t) ; |
void vp8_fix_contexts(MACROBLOCKD *x); |
-TOKENEXTRA vp8_dct_value_tokens[DCT_MAX_VALUE*2]; |
-const TOKENEXTRA *vp8_dct_value_tokens_ptr; |
+TOKENVALUE vp8_dct_value_tokens[DCT_MAX_VALUE*2]; |
+const TOKENVALUE *vp8_dct_value_tokens_ptr; |
int vp8_dct_value_cost[DCT_MAX_VALUE*2]; |
const int *vp8_dct_value_cost_ptr; |
#if 0 |
@@ -37,7 +37,7 @@ |
static void fill_value_tokens() |
{ |
- TOKENEXTRA *const t = vp8_dct_value_tokens + DCT_MAX_VALUE; |
+ TOKENVALUE *const t = vp8_dct_value_tokens + DCT_MAX_VALUE; |
vp8_extra_bit_struct *const e = vp8_extra_bits; |
int i = -DCT_MAX_VALUE; |