summaryrefslogtreecommitdiff
path: root/vp8/encoder/encodemv.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2012-10-17 14:51:27 -0700
committerJohn Koleszar <jkoleszar@google.com>2012-10-17 14:51:27 -0700
commit3883dab0a2dedbcf636e91064c38040af744bc90 (patch)
treeb5a83924105d81675146c046e8c0d7aa515df21a /vp8/encoder/encodemv.c
parent47a2154c0e1130a247b7920b0a0c57ada212abc1 (diff)
downloadlibvpx-3883dab0a2dedbcf636e91064c38040af744bc90.tar
libvpx-3883dab0a2dedbcf636e91064c38040af744bc90.tar.gz
libvpx-3883dab0a2dedbcf636e91064c38040af744bc90.tar.bz2
libvpx-3883dab0a2dedbcf636e91064c38040af744bc90.zip
cosmetic: fix '= & ' construct
remove useless space after address-of operator. Change-Id: I1fb9e82e8d6cf87558fbd454fb5c0f87599ca2ab
Diffstat (limited to 'vp8/encoder/encodemv.c')
-rw-r--r--vp8/encoder/encodemv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/encoder/encodemv.c b/vp8/encoder/encodemv.c
index 1289d89bb..4f7e9f1de 100644
--- a/vp8/encoder/encodemv.c
+++ b/vp8/encoder/encodemv.c
@@ -358,7 +358,7 @@ static void add_nmvcount(nmv_context_counts *dst, nmv_context_counts *src) {
#endif
void vp8_write_nmvprobs(VP8_COMP * cpi, int usehp) {
- vp8_writer *const w = & cpi->bc;
+ vp8_writer *const w = &cpi->bc;
int i, j;
nmv_context prob;
unsigned int branch_ct_joint[MV_JOINTS - 1][2];
@@ -832,7 +832,7 @@ static void write_component_probs(
}
void vp8_write_mvprobs(VP8_COMP *cpi) {
- vp8_writer *const w = & cpi->bc;
+ vp8_writer *const w = &cpi->bc;
MV_CONTEXT *mvc = cpi->common.fc.mvc;
int flags[2] = {0, 0};
#ifdef ENTROPY_STATS
@@ -1108,7 +1108,7 @@ static void write_component_probs_hp(
}
void vp8_write_mvprobs_hp(VP8_COMP *cpi) {
- vp8_writer *const w = & cpi->bc;
+ vp8_writer *const w = &cpi->bc;
MV_CONTEXT_HP *mvc = cpi->common.fc.mvc_hp;
int flags[2] = {0, 0};
#ifdef ENTROPY_STATS