Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | bde4ac8 | 2016-11-28 15:26:06 -0800 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | bde4ac8 | 2016-11-28 15:26:06 -0800 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include "av1/encoder/variance_tree.h" |
| 13 | #include "av1/encoder/encoder.h" |
| 14 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 15 | void av1_setup_var_tree(struct AV1Common *cm, ThreadData *td) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 16 | int i, j; |
| 17 | #if CONFIG_EXT_PARTITION |
| 18 | const int leaf_nodes = 1024; |
| 19 | const int tree_nodes = 1024 + 256 + 64 + 16 + 4 + 1; |
| 20 | #else |
| 21 | const int leaf_nodes = 256; |
| 22 | const int tree_nodes = 256 + 64 + 16 + 4 + 1; |
| 23 | #endif // CONFIG_EXT_PARTITION |
| 24 | int index = 0; |
| 25 | VAR_TREE *this_var; |
| 26 | int nodes; |
| 27 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 28 | aom_free(td->var_tree); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 29 | CHECK_MEM_ERROR(cm, td->var_tree, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 30 | aom_calloc(tree_nodes, sizeof(*td->var_tree))); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 31 | |
| 32 | this_var = &td->var_tree[0]; |
| 33 | |
| 34 | // Sets up all the leaf nodes in the tree. |
| 35 | for (index = 0; index < leaf_nodes; ++index) { |
| 36 | VAR_TREE *const leaf = &td->var_tree[index]; |
| 37 | leaf->split[0] = NULL; |
| 38 | } |
| 39 | |
| 40 | // Each node has 4 leaf nodes, fill in the child pointers |
| 41 | // from leafs to the root. |
| 42 | for (nodes = leaf_nodes >> 2; nodes > 0; nodes >>= 2) { |
| 43 | for (i = 0; i < nodes; ++i, ++index) { |
| 44 | VAR_TREE *const node = &td->var_tree[index]; |
| 45 | for (j = 0; j < 4; j++) node->split[j] = this_var++; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // Set up the root node for the largest superblock size |
| 50 | i = MAX_MIB_SIZE_LOG2 - MIN_MIB_SIZE_LOG2; |
| 51 | td->var_root[i] = &td->var_tree[tree_nodes - 1]; |
| 52 | // Set up the root nodes for the rest of the possible superblock sizes |
| 53 | while (--i >= 0) { |
| 54 | td->var_root[i] = td->var_root[i + 1]->split[0]; |
| 55 | } |
| 56 | } |
| 57 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 58 | void av1_free_var_tree(ThreadData *td) { |
| 59 | aom_free(td->var_tree); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 60 | td->var_tree = NULL; |
| 61 | } |