Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [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 | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [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/treewriter.h" |
| 13 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 14 | static void tree2tok(struct av1_token *tokens, const aom_tree_index *tree, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 15 | int i, int v, int l) { |
| 16 | v += v; |
| 17 | ++l; |
| 18 | |
| 19 | do { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 20 | const aom_tree_index j = tree[i++]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 21 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 30 | void av1_tokens_from_tree(struct av1_token *tokens, |
| 31 | const aom_tree_index *tree) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 32 | tree2tok(tokens, tree, 0, 0, 0); |
| 33 | } |
| 34 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 35 | static unsigned int convert_distribution(unsigned int i, aom_tree tree, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 36 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 55 | void av1_tree_probs_from_distribution(aom_tree tree, |
| 56 | unsigned int branch_ct[/* n-1 */][2], |
| 57 | const unsigned int num_events[/* n */]) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 58 | convert_distribution(0, tree, branch_ct, num_events); |
| 59 | } |