summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-05-10 16:57:09 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-05-10 16:57:09 -0700
commit5f221e7ac4d63338c2669e510cc900252f542226 (patch)
tree895c67de18307e3e2d71f51f0c3e6a45c12f05ad /vp9/common
parent998b540fe21335e7ea31bcdcfcfa1c3512ac8622 (diff)
parentda5054c5af4d8da16492f670ca023a334559021e (diff)
downloadlibvpx-5f221e7ac4d63338c2669e510cc900252f542226.tar
libvpx-5f221e7ac4d63338c2669e510cc900252f542226.tar.gz
libvpx-5f221e7ac4d63338c2669e510cc900252f542226.tar.bz2
libvpx-5f221e7ac4d63338c2669e510cc900252f542226.zip
Merge "Fix token allocation for non-4:2:0" into experimental
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_onyxc_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_onyxc_int.h b/vp9/common/vp9_onyxc_int.h
index 3e8bb15d9..57f9978f4 100644
--- a/vp9/common/vp9_onyxc_int.h
+++ b/vp9/common/vp9_onyxc_int.h
@@ -329,6 +329,6 @@ static int get_mi_col(const MACROBLOCKD *xd) {
}
static int get_token_alloc(int mb_rows, int mb_cols) {
- return mb_rows * mb_cols * (24 * 16 + 4);
+ return mb_rows * mb_cols * (48 * 16 + 4);
}
#endif // VP9_COMMON_VP9_ONYXC_INT_H_