Merge "vp9_blockd.h: update get_tx_eob() signature"

This commit is contained in:
James Zern 2013-10-09 00:55:48 -07:00 committed by Gerrit Code Review
commit b4148c3a03

View File

@ -578,7 +578,7 @@ static void set_contexts(MACROBLOCKD *xd, struct macroblockd_plane *pd,
}
}
static int get_tx_eob(struct segmentation *seg, int segment_id,
static int get_tx_eob(const struct segmentation *seg, int segment_id,
TX_SIZE tx_size) {
const int eob_max = 16 << (tx_size << 1);
return vp9_segfeature_active(seg, segment_id, SEG_LVL_SKIP) ? 0 : eob_max;