summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_blockd.h
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-04-19 11:07:47 -0700
committerJohn Koleszar <jkoleszar@google.com>2013-04-19 11:11:54 -0700
commit17313c408f4ca8f775f324a9b9513c2ea307d96e (patch)
tree6de4b08813b98ee0689592fce27bbff524f5a361 /vp9/common/vp9_blockd.h
parent0053b46d51d2683a70c484828b3864a5d5a46f1d (diff)
downloadlibvpx-17313c408f4ca8f775f324a9b9513c2ea307d96e.tar
libvpx-17313c408f4ca8f775f324a9b9513c2ea307d96e.tar.gz
libvpx-17313c408f4ca8f775f324a9b9513c2ea307d96e.tar.bz2
libvpx-17313c408f4ca8f775f324a9b9513c2ea307d96e.zip
Move diff to MACROBLOCKD per-plane data.
Change-Id: Ic27af09e38af8317ac4743241883d577a44f1490
Diffstat (limited to 'vp9/common/vp9_blockd.h')
-rw-r--r--vp9/common/vp9_blockd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_blockd.h b/vp9/common/vp9_blockd.h
index 907bef95e..265c1f21a 100644
--- a/vp9/common/vp9_blockd.h
+++ b/vp9/common/vp9_blockd.h
@@ -342,6 +342,7 @@ struct mb_plane {
DECLARE_ALIGNED(16, int16_t, qcoeff[64 * 64]);
DECLARE_ALIGNED(16, int16_t, dqcoeff[64 * 64]);
DECLARE_ALIGNED(16, uint16_t, eobs[256]);
+ DECLARE_ALIGNED(16, int16_t, diff[64 * 64]);
PLANE_TYPE plane_type;
int subsampling_x;
int subsampling_y;
@@ -355,7 +356,6 @@ struct mb_plane {
BLOCK_OFFSET((x)->plane[2].field, ((i) - 20), 16))
typedef struct macroblockd {
- DECLARE_ALIGNED(16, int16_t, diff[64*64+32*32*2]); /* from idct diff */
#if CONFIG_CODE_NONZEROCOUNT
DECLARE_ALIGNED(16, uint16_t, nzcs[256+64*2]);
#endif