blob: 9384cd78efbdc61ce4b510ad7e24a53f7695d331 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xubde4ac82016-11-28 15:26:06 -08002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xubde4ac82016-11-28 15:26:06 -08004 * 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 Xuc27fc142016-08-22 16:08:15 -070010 */
11
12#include "av1/encoder/variance_tree.h"
13#include "av1/encoder/encoder.h"
14
Yaowu Xuf883b422016-08-30 14:01:10 -070015void av1_setup_var_tree(struct AV1Common *cm, ThreadData *td) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070016 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 Xuf883b422016-08-30 14:01:10 -070028 aom_free(td->var_tree);
Yaowu Xuc27fc142016-08-22 16:08:15 -070029 CHECK_MEM_ERROR(cm, td->var_tree,
Yaowu Xuf883b422016-08-30 14:01:10 -070030 aom_calloc(tree_nodes, sizeof(*td->var_tree)));
Yaowu Xuc27fc142016-08-22 16:08:15 -070031
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 Xuf883b422016-08-30 14:01:10 -070058void av1_free_var_tree(ThreadData *td) {
59 aom_free(td->var_tree);
Yaowu Xuc27fc142016-08-22 16:08:15 -070060 td->var_tree = NULL;
61}