summaryrefslogtreecommitdiff
path: root/vp8/encoder/bitstream.c
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2012-11-05 12:25:18 -0800
committerScott LaVarnway <slavarnway@google.com>2012-11-05 12:25:18 -0800
commit95390b2b20e1b34883bdc8a985bc5fc94387a97d (patch)
tree2a5bae2d927146ae5879f8aeba03f95ab14d0b0c /vp8/encoder/bitstream.c
parent03c0af87478b15b0dd2cb3c069a795c7f29a6cc4 (diff)
downloadlibvpx-95390b2b20e1b34883bdc8a985bc5fc94387a97d.tar
libvpx-95390b2b20e1b34883bdc8a985bc5fc94387a97d.tar.gz
libvpx-95390b2b20e1b34883bdc8a985bc5fc94387a97d.tar.bz2
libvpx-95390b2b20e1b34883bdc8a985bc5fc94387a97d.zip
Moving ymode_count, uv_mode_count to macroblock struct
Change-Id: Ib73c7b2bee4cb2eb2528fa6b381fffe9503079a0
Diffstat (limited to 'vp8/encoder/bitstream.c')
-rw-r--r--vp8/encoder/bitstream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/bitstream.c b/vp8/encoder/bitstream.c
index 7ab6dc906..f84ae68f7 100644
--- a/vp8/encoder/bitstream.c
+++ b/vp8/encoder/bitstream.c
@@ -118,7 +118,7 @@ static void update_mbintra_mode_probs(VP8_COMP *cpi)
update_mode(
w, VP8_YMODES, vp8_ymode_encodings, vp8_ymode_tree,
- Pnew, x->fc.ymode_prob, bct, (unsigned int *)cpi->ymode_count
+ Pnew, x->fc.ymode_prob, bct, (unsigned int *)cpi->mb.ymode_count
);
}
{
@@ -127,7 +127,7 @@ static void update_mbintra_mode_probs(VP8_COMP *cpi)
update_mode(
w, VP8_UV_MODES, vp8_uv_mode_encodings, vp8_uv_mode_tree,
- Pnew, x->fc.uv_mode_prob, bct, (unsigned int *)cpi->uv_mode_count
+ Pnew, x->fc.uv_mode_prob, bct, (unsigned int *)cpi->mb.uv_mode_count
);
}
}