shithub: libvpx

Download patch

ref: 5f221e7ac4d63338c2669e510cc900252f542226
parent: 998b540fe21335e7ea31bcdcfcfa1c3512ac8622
parent: da5054c5af4d8da16492f670ca023a334559021e
author: John Koleszar <jkoleszar@google.com>
date: Fri May 10 12:57:09 EDT 2013

Merge "Fix token allocation for non-4:2:0" into experimental

--- a/vp9/common/vp9_onyxc_int.h
+++ b/vp9/common/vp9_onyxc_int.h
@@ -329,6 +329,6 @@
 }
 
 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_