blob: 50be72413bc6d60d94146ebd9e672ff8804bf65c [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * 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/treewriter.h"
13
Yaowu Xuf883b422016-08-30 14:01:10 -070014static void tree2tok(struct av1_token *tokens, const aom_tree_index *tree,
Yaowu Xuc27fc142016-08-22 16:08:15 -070015 int i, int v, int l) {
16 v += v;
17 ++l;
18
19 do {
Yaowu Xuf883b422016-08-30 14:01:10 -070020 const aom_tree_index j = tree[i++];
Yaowu Xuc27fc142016-08-22 16:08:15 -070021 if (j <= 0) {
22 tokens[-j].value = v;
23 tokens[-j].len = l;
24 } else {
25 tree2tok(tokens, tree, j, v, l);
26 }
27 } while (++v & 1);
28}
29
Yaowu Xuf883b422016-08-30 14:01:10 -070030void av1_tokens_from_tree(struct av1_token *tokens,
31 const aom_tree_index *tree) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070032 tree2tok(tokens, tree, 0, 0, 0);
33}
34
Yaowu Xuf883b422016-08-30 14:01:10 -070035static unsigned int convert_distribution(unsigned int i, aom_tree tree,
Yaowu Xuc27fc142016-08-22 16:08:15 -070036 unsigned int branch_ct[][2],
37 const unsigned int num_events[]) {
38 unsigned int left, right;
39
40 if (tree[i] <= 0)
41 left = num_events[-tree[i]];
42 else
43 left = convert_distribution(tree[i], tree, branch_ct, num_events);
44
45 if (tree[i + 1] <= 0)
46 right = num_events[-tree[i + 1]];
47 else
48 right = convert_distribution(tree[i + 1], tree, branch_ct, num_events);
49
50 branch_ct[i >> 1][0] = left;
51 branch_ct[i >> 1][1] = right;
52 return left + right;
53}
54
Yaowu Xuf883b422016-08-30 14:01:10 -070055void av1_tree_probs_from_distribution(aom_tree tree,
56 unsigned int branch_ct[/* n-1 */][2],
57 const unsigned int num_events[/* n */]) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070058 convert_distribution(0, tree, branch_ct, num_events);
59}