summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-12-03 17:59:32 -0800
committerDmitry Kovalev <dkovalev@google.com>2013-12-03 17:59:32 -0800
commitf00d157c125a5362b48037a2c65d2f0eee4f5f84 (patch)
treec3ed89ef93a5cc82057ab6371733875e18691874 /vp9/common
parent3c34619125ea8a5ea1657d06d7c4d970d0a30599 (diff)
downloadlibvpx-f00d157c125a5362b48037a2c65d2f0eee4f5f84.tar
libvpx-f00d157c125a5362b48037a2c65d2f0eee4f5f84.tar.gz
libvpx-f00d157c125a5362b48037a2c65d2f0eee4f5f84.tar.bz2
libvpx-f00d157c125a5362b48037a2c65d2f0eee4f5f84.zip
Moving eob array to the encoder.
In the decoder we don't need to save eobs, we can pass eob as an argument. That's why removing eob arrays from VP9Decompressor and TileWorkerData, and moving eob pointer from macroblockd_plane to macroblock_plane. Change-Id: I8eb919acc837acfb3abdd8319af63d1bbca8217a
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_blockd.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/vp9/common/vp9_blockd.h b/vp9/common/vp9_blockd.h
index 993ee7935..8cc4d447f 100644
--- a/vp9/common/vp9_blockd.h
+++ b/vp9/common/vp9_blockd.h
@@ -199,7 +199,6 @@ struct buf_2d {
struct macroblockd_plane {
int16_t *dqcoeff;
- uint16_t *eobs;
PLANE_TYPE plane_type;
int subsampling_x;
int subsampling_y;