| Index: source/libvpx/vp9/common/vp9_common_data.c
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_common_data.c (revision 232232)
|
| +++ source/libvpx/vp9/common/vp9_common_data.c (working copy)
|
| @@ -115,6 +115,16 @@
|
| TX_16X16, TX_16X16, TX_16X16, TX_32X32
|
| };
|
|
|
| +const TX_SIZE tx_mode_to_biggest_tx_size[TX_MODES] = {
|
| + TX_4X4, // ONLY_4X4
|
| + TX_8X8, // ALLOW_8X8
|
| + TX_16X16, // ALLOW_16X16
|
| + TX_32X32, // ALLOW_32X32
|
| + TX_32X32, // TX_MODE_SELECT
|
| +};
|
| +
|
| +
|
| +
|
| const BLOCK_SIZE ss_size_lookup[BLOCK_SIZES][2][2] = {
|
| // ss_x == 0 ss_x == 0 ss_x == 1 ss_x == 1
|
| // ss_y == 0 ss_y == 1 ss_y == 0 ss_y == 1
|
| @@ -133,3 +143,4 @@
|
| {{BLOCK_64X64, BLOCK_64X32}, {BLOCK_32X64, BLOCK_32X32}},
|
| };
|
|
|
| +
|
|
|