ref: b4148c3a03a1f91d3b6d931d22d9cd5c44879bfe
parent: c5e91080187c16e6fe0b6634f663d757ad9c6532
parent: 879e21ddfd2d76484c22590ddba655b77767f053
author: James Zern <jzern@google.com>
date: Tue Oct 8 20:55:48 EDT 2013
Merge "vp9_blockd.h: update get_tx_eob() signature"
--- a/vp9/common/vp9_blockd.h
+++ b/vp9/common/vp9_blockd.h
@@ -578,7 +578,7 @@
}
}
-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;
--
⑨