summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_reconintra.h
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2013-05-17 12:50:40 -0700
committerPaul Wilkins <paulwilkins@google.com>2013-05-22 11:53:19 +0100
commit8ba92a0bed9f05b79851b364c4fafd97ac88e824 (patch)
tree7992dafde6cea94a4b38cceb6dce02df628354c3 /vp9/common/vp9_reconintra.h
parent232d90d8fd47cdc07625036bdd0e4c8f009b8c10 (diff)
downloadlibvpx-8ba92a0bed9f05b79851b364c4fafd97ac88e824.tar
libvpx-8ba92a0bed9f05b79851b364c4fafd97ac88e824.tar.gz
libvpx-8ba92a0bed9f05b79851b364c4fafd97ac88e824.tar.bz2
libvpx-8ba92a0bed9f05b79851b364c4fafd97ac88e824.zip
changes intra coding to be based on txfm block
This commit changed the encoding and decoding of intra blocks to be based on transform block. In each prediction block, the intra coding iterates thorough each transform block based on raster scan order. This commit also fixed a bug in D135 prediction code. TODO next: The RD mode/txfm_size selection should take this into account when computing RD values. Change-Id: I6d1be2faa4c4948a52e830b6a9a84a6b2b6850f6
Diffstat (limited to 'vp9/common/vp9_reconintra.h')
-rw-r--r--vp9/common/vp9_reconintra.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_reconintra.h b/vp9/common/vp9_reconintra.h
index faecd6be7..b88761b02 100644
--- a/vp9/common/vp9_reconintra.h
+++ b/vp9/common/vp9_reconintra.h
@@ -23,7 +23,7 @@ B_PREDICTION_MODE vp9_find_bpred_context(MACROBLOCKD *xd, int block,
void vp9_predict_intra_block(MACROBLOCKD *xd,
int block_idx,
- BLOCK_SIZE_TYPE bsize,
+ int bwl_in,
TX_SIZE tx_size,
int mode,
uint8_t *predictor, int pre_stride);