summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_bitstream.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-04-18 16:18:08 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-04-18 16:18:08 -0700
commit77f4697a135361fe72c048c55633055d929d7464 (patch)
tree39493c464d5f3fe507aaf76c72753e2e79e44f0e /vp9/encoder/vp9_bitstream.c
parent54f843c8915e65b2e9dea74188642d4c293362d1 (diff)
downloadlibvpx-77f4697a135361fe72c048c55633055d929d7464.tar
libvpx-77f4697a135361fe72c048c55633055d929d7464.tar.gz
libvpx-77f4697a135361fe72c048c55633055d929d7464.tar.bz2
libvpx-77f4697a135361fe72c048c55633055d929d7464.zip
Fixing member names inside TOKENVALUE and TOKENEXTRA structs.
Change-Id: I183ec5819d4d80966c92db36db75b8c3be0d381d
Diffstat (limited to 'vp9/encoder/vp9_bitstream.c')
-rw-r--r--vp9/encoder/vp9_bitstream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_bitstream.c b/vp9/encoder/vp9_bitstream.c
index bcfbd6094..7bb9c598a 100644
--- a/vp9/encoder/vp9_bitstream.c
+++ b/vp9/encoder/vp9_bitstream.c
@@ -469,7 +469,7 @@ static void pack_mb_tokens(vp9_writer* const bc,
TOKENEXTRA *p = *tp;
while (p < stop) {
- const int t = p->Token;
+ const int t = p->token;
const struct vp9_token *const a = vp9_coef_encodings + t;
const vp9_extra_bit_struct *const b = vp9_extra_bits + t;
int i = 0;
@@ -497,7 +497,7 @@ static void pack_mb_tokens(vp9_writer* const bc,
if (b->base_val) {
- const int e = p->Extra, L = b->Len;
+ const int e = p->extra, L = b->Len;
if (L) {
const unsigned char *pp = b->prob;