summaryrefslogtreecommitdiff
path: root/vp8/encoder/ratectrl.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/ratectrl.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/ratectrl.c')
-rw-r--r--vp8/encoder/ratectrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/ratectrl.c b/vp8/encoder/ratectrl.c
index 2b5f699b6..570bedfe9 100644
--- a/vp8/encoder/ratectrl.c
+++ b/vp8/encoder/ratectrl.c
@@ -123,7 +123,7 @@ int vp8_bits_per_mb(FRAME_TYPE frame_type, int qindex) {
void vp8_save_coding_context(VP8_COMP *cpi) {
- CODING_CONTEXT *const cc = & cpi->coding_context;
+ CODING_CONTEXT *const cc = &cpi->coding_context;
VP8_COMMON *cm = &cpi->common;
MACROBLOCKD *xd = &cpi->mb.e_mbd;
@@ -195,7 +195,7 @@ void vp8_save_coding_context(VP8_COMP *cpi) {
}
void vp8_restore_coding_context(VP8_COMP *cpi) {
- CODING_CONTEXT *const cc = & cpi->coding_context;
+ CODING_CONTEXT *const cc = &cpi->coding_context;
VP8_COMMON *cm = &cpi->common;
MACROBLOCKD *xd = &cpi->mb.e_mbd;