Coverage Report

Created: 2025-08-28 07:12

/src/libvpx/vp9/encoder/vp9_context_tree.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 *  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
3
 *
4
 *  Use of this source code is governed by a BSD-style license
5
 *  that can be found in the LICENSE file in the root of the source
6
 *  tree. An additional intellectual property rights grant can be found
7
 *  in the file PATENTS.  All contributing project authors may
8
 *  be found in the AUTHORS file in the root of the source tree.
9
 */
10
11
#include "vp9/encoder/vp9_context_tree.h"
12
#include "vp9/encoder/vp9_encoder.h"
13
14
static const BLOCK_SIZE square[] = {
15
  BLOCK_8X8,
16
  BLOCK_16X16,
17
  BLOCK_32X32,
18
  BLOCK_64X64,
19
};
20
21
static void alloc_mode_context(VP9_COMMON *cm, int num_4x4_blk,
22
1.44M
                               PICK_MODE_CONTEXT *ctx) {
23
1.44M
  const int num_blk = (num_4x4_blk < 4 ? 4 : num_4x4_blk);
24
1.44M
  const int num_pix = num_blk << 4;
25
1.44M
  int i, k;
26
1.44M
  ctx->num_4x4_blk = num_blk;
27
28
1.44M
  CHECK_MEM_ERROR(&cm->error, ctx->zcoeff_blk,
29
1.44M
                  vpx_calloc(num_blk, sizeof(uint8_t)));
30
5.76M
  for (i = 0; i < MAX_MB_PLANE; ++i) {
31
17.3M
    for (k = 0; k < 3; ++k) {
32
12.9M
      CHECK_MEM_ERROR(&cm->error, ctx->coeff[i][k],
33
12.9M
                      vpx_memalign(32, num_pix * sizeof(*ctx->coeff[i][k])));
34
12.9M
      CHECK_MEM_ERROR(&cm->error, ctx->qcoeff[i][k],
35
12.9M
                      vpx_memalign(32, num_pix * sizeof(*ctx->qcoeff[i][k])));
36
12.9M
      CHECK_MEM_ERROR(&cm->error, ctx->dqcoeff[i][k],
37
12.9M
                      vpx_memalign(32, num_pix * sizeof(*ctx->dqcoeff[i][k])));
38
12.9M
      CHECK_MEM_ERROR(&cm->error, ctx->eobs[i][k],
39
12.9M
                      vpx_memalign(32, num_blk * sizeof(*ctx->eobs[i][k])));
40
12.9M
      ctx->coeff_pbuf[i][k] = ctx->coeff[i][k];
41
12.9M
      ctx->qcoeff_pbuf[i][k] = ctx->qcoeff[i][k];
42
12.9M
      ctx->dqcoeff_pbuf[i][k] = ctx->dqcoeff[i][k];
43
12.9M
      ctx->eobs_pbuf[i][k] = ctx->eobs[i][k];
44
12.9M
    }
45
4.32M
  }
46
1.44M
}
47
48
1.95M
static void free_mode_context(PICK_MODE_CONTEXT *ctx) {
49
1.95M
  int i, k;
50
1.95M
  vpx_free(ctx->zcoeff_blk);
51
1.95M
  ctx->zcoeff_blk = 0;
52
7.81M
  for (i = 0; i < MAX_MB_PLANE; ++i) {
53
23.4M
    for (k = 0; k < 3; ++k) {
54
17.5M
      vpx_free(ctx->coeff[i][k]);
55
17.5M
      ctx->coeff[i][k] = 0;
56
17.5M
      vpx_free(ctx->qcoeff[i][k]);
57
17.5M
      ctx->qcoeff[i][k] = 0;
58
17.5M
      vpx_free(ctx->dqcoeff[i][k]);
59
17.5M
      ctx->dqcoeff[i][k] = 0;
60
17.5M
      vpx_free(ctx->eobs[i][k]);
61
17.5M
      ctx->eobs[i][k] = 0;
62
17.5M
    }
63
5.86M
  }
64
1.95M
}
65
66
static void alloc_tree_contexts(VP9_COMMON *cm, PC_TREE *tree,
67
339k
                                int num_4x4_blk) {
68
339k
  alloc_mode_context(cm, num_4x4_blk, &tree->none);
69
339k
  alloc_mode_context(cm, num_4x4_blk / 2, &tree->horizontal[0]);
70
339k
  alloc_mode_context(cm, num_4x4_blk / 2, &tree->vertical[0]);
71
72
339k
  if (num_4x4_blk > 4) {
73
83.8k
    alloc_mode_context(cm, num_4x4_blk / 2, &tree->horizontal[1]);
74
83.8k
    alloc_mode_context(cm, num_4x4_blk / 2, &tree->vertical[1]);
75
255k
  } else {
76
255k
    memset(&tree->horizontal[1], 0, sizeof(tree->horizontal[1]));
77
255k
    memset(&tree->vertical[1], 0, sizeof(tree->vertical[1]));
78
255k
  }
79
339k
}
80
81
339k
static void free_tree_contexts(PC_TREE *tree) {
82
339k
  free_mode_context(&tree->none);
83
339k
  free_mode_context(&tree->horizontal[0]);
84
339k
  free_mode_context(&tree->horizontal[1]);
85
339k
  free_mode_context(&tree->vertical[0]);
86
339k
  free_mode_context(&tree->vertical[1]);
87
339k
}
88
89
// This function sets up a tree of contexts such that at each square
90
// partition level. There are contexts for none, horizontal, vertical, and
91
// split.  Along with a block_size value and a selected block_size which
92
// represents the state of our search.
93
3.99k
void vp9_setup_pc_tree(VP9_COMMON *cm, ThreadData *td) {
94
3.99k
  int i, j;
95
3.99k
  const int leaf_nodes = 64;
96
3.99k
  const int tree_nodes = 64 + 16 + 4 + 1;
97
3.99k
  int pc_tree_index = 0;
98
3.99k
  PC_TREE *this_pc;
99
3.99k
  PICK_MODE_CONTEXT *this_leaf;
100
3.99k
  int square_index = 1;
101
3.99k
  int nodes;
102
103
3.99k
  vpx_free(td->leaf_tree);
104
3.99k
  CHECK_MEM_ERROR(&cm->error, td->leaf_tree,
105
3.99k
                  vpx_calloc(leaf_nodes, sizeof(*td->leaf_tree)));
106
3.99k
  vpx_free(td->pc_tree);
107
3.99k
  CHECK_MEM_ERROR(&cm->error, td->pc_tree,
108
3.99k
                  vpx_calloc(tree_nodes, sizeof(*td->pc_tree)));
109
110
3.99k
  this_pc = &td->pc_tree[0];
111
3.99k
  this_leaf = &td->leaf_tree[0];
112
113
  // 4x4 blocks smaller than 8x8 but in the same 8x8 block share the same
114
  // context so we only need to allocate 1 for each 8x8 block.
115
259k
  for (i = 0; i < leaf_nodes; ++i) alloc_mode_context(cm, 1, &td->leaf_tree[i]);
116
117
  // Sets up all the leaf nodes in the tree.
118
259k
  for (pc_tree_index = 0; pc_tree_index < leaf_nodes; ++pc_tree_index) {
119
255k
    PC_TREE *const tree = &td->pc_tree[pc_tree_index];
120
255k
    tree->block_size = square[0];
121
255k
    alloc_tree_contexts(cm, tree, 4);
122
255k
    tree->u.leaf_split[0] = this_leaf++;
123
1.02M
    for (j = 1; j < 4; j++) tree->u.leaf_split[j] = tree->u.leaf_split[0];
124
255k
  }
125
126
  // Each node has 4 leaf nodes, fill each block_size level of the tree
127
  // from leafs to the root.
128
15.9k
  for (nodes = 16; nodes > 0; nodes >>= 2) {
129
95.8k
    for (i = 0; i < nodes; ++i) {
130
83.8k
      PC_TREE *const tree = &td->pc_tree[pc_tree_index];
131
83.8k
      alloc_tree_contexts(cm, tree, 4 << (2 * square_index));
132
83.8k
      tree->block_size = square[square_index];
133
419k
      for (j = 0; j < 4; j++) tree->u.split[j] = this_pc++;
134
83.8k
      ++pc_tree_index;
135
83.8k
    }
136
11.9k
    ++square_index;
137
11.9k
  }
138
3.99k
  td->pc_root = &td->pc_tree[tree_nodes - 1];
139
3.99k
  td->pc_root[0].none.best_mode_index = 2;
140
3.99k
}
141
142
3.99k
void vp9_free_pc_tree(ThreadData *td) {
143
3.99k
  int i;
144
145
3.99k
  if (td == NULL) return;
146
147
3.99k
  if (td->leaf_tree != NULL) {
148
    // Set up all 4x4 mode contexts
149
259k
    for (i = 0; i < 64; ++i) free_mode_context(&td->leaf_tree[i]);
150
3.99k
    vpx_free(td->leaf_tree);
151
3.99k
    td->leaf_tree = NULL;
152
3.99k
  }
153
154
3.99k
  if (td->pc_tree != NULL) {
155
3.99k
    const int tree_nodes = 64 + 16 + 4 + 1;
156
    // Sets up all the leaf nodes in the tree.
157
343k
    for (i = 0; i < tree_nodes; ++i) free_tree_contexts(&td->pc_tree[i]);
158
3.99k
    vpx_free(td->pc_tree);
159
3.99k
    td->pc_tree = NULL;
160
3.99k
  }
161
3.99k
}