summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_blockd.h
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-04-25 11:15:38 -0700
committerJohn Koleszar <jkoleszar@google.com>2013-04-26 10:14:07 -0700
commit4f55c5618afb8ef860744c870ac4e33b5583be22 (patch)
tree55680d6ef63cc26d2873662b46784f871e51533b /vp9/common/vp9_blockd.h
parent4b27eb1f186d9bd2d218c0140b41484df8d38fd1 (diff)
downloadlibvpx-4f55c5618afb8ef860744c870ac4e33b5583be22.tar
libvpx-4f55c5618afb8ef860744c870ac4e33b5583be22.tar.gz
libvpx-4f55c5618afb8ef860744c870ac4e33b5583be22.tar.bz2
libvpx-4f55c5618afb8ef860744c870ac4e33b5583be22.zip
Remove destination pointers from BLOCKD
Access these members from MACROBLOCKD instead. Change-Id: I7907230dd473ff12ebe182b9280d8b7f12a888c4
Diffstat (limited to 'vp9/common/vp9_blockd.h')
-rw-r--r--vp9/common/vp9_blockd.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/vp9/common/vp9_blockd.h b/vp9/common/vp9_blockd.h
index b4f7c93a5..844892abc 100644
--- a/vp9/common/vp9_blockd.h
+++ b/vp9/common/vp9_blockd.h
@@ -279,11 +279,7 @@ typedef struct {
} MODE_INFO;
typedef struct blockd {
- uint8_t **base_dst;
- int dst;
- int dst_stride;
-
-// union b_mode_info bmi;
+ int unused;
} BLOCKD;
struct scale_factors {
@@ -743,7 +739,6 @@ static TX_TYPE get_tx_type_16x16(const MACROBLOCKD *xd, int ib) {
return tx_type;
}
-void vp9_build_block_doffsets(MACROBLOCKD *xd);
void vp9_setup_block_dptrs(MACROBLOCKD *xd);
static TX_SIZE get_uv_tx_size(const MACROBLOCKD *xd) {