aboutsummaryrefslogtreecommitdiff
path: root/decoder/drc_src/impd_drc_extr_delta_coded_info.c
blob: babe75c9a5d45fc5d526f9f8095e9fe2a1234148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/******************************************************************************
 *
 * Copyright (C) 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 *****************************************************************************
 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
*/
#include <stdio.h>
#include <math.h>

#include "impd_type_def.h"
#include "impd_drc_extr_delta_coded_info.h"
#include "impd_drc_common.h"
#include "impd_drc_struct.h"
#include "impd_drc_filter_bank.h"
#include "impd_drc_rom.h"

VOID impd_init_tbls(const WORD32 num_gain_max_values,
                    ia_tables_struct* str_tables) {
  impd_gen_delta_time_code_tbl(num_gain_max_values,
                               str_tables->delta_time_code_table);
  return;
}

void impd_get_delta_gain_code_tbl(
    const WORD32 gain_coding_profile,
    ia_delta_gain_code_table_struct const** delta_time_code_tbl,
    WORD32* num_entries) {
  if (gain_coding_profile == GAIN_CODING_PROFILE_CLIPPING) {
    *delta_time_code_tbl = ia_drc_gain_tbls_prof_2;
    *num_entries = NUM_GAIN_TBL_PROF_2_ENTRIES;
  } else {
    *delta_time_code_tbl = ia_drc_gain_tbls_prof_0_1;
    *num_entries = NUM_GAIN_TBL_PROF_0_1_ENTRIES;
  }
}

void impd_gen_delta_time_code_tbl(
    const WORD32 num_gain_max_values,
    ia_delta_time_code_table_entry_struct* delta_time_code_tbl_item) {
  WORD32 n, k;

  WORD32 Z = 1;
  while ((1 << Z) < 2 * num_gain_max_values) {
    Z++;
  }

  delta_time_code_tbl_item[0].size = -1;
  delta_time_code_tbl_item[0].code = -1;
  delta_time_code_tbl_item[0].value = -1;

  delta_time_code_tbl_item[1].size = 2;
  delta_time_code_tbl_item[1].code = 0x0;
  delta_time_code_tbl_item[1].value = 1;
  for (n = 0; n < 4; n++) {
    delta_time_code_tbl_item[n + 2].size = 4;
    delta_time_code_tbl_item[n + 2].code = 0x4 + n;
    delta_time_code_tbl_item[n + 2].value = n + 2;
  }
  for (n = 0; n < 8; n++) {
    delta_time_code_tbl_item[n + 6].size = 5;
    delta_time_code_tbl_item[n + 6].code = 0x10 + n;
    delta_time_code_tbl_item[n + 6].value = n + 6;
  }

  k = 2 * num_gain_max_values - 14 + 1;
  for (n = 0; n < k; n++) {
    delta_time_code_tbl_item[n + 14].size = 2 + Z;
    delta_time_code_tbl_item[n + 14].code = (0x3 << Z) + n;
    delta_time_code_tbl_item[n + 14].value = n + 14;
  }
}

WORD32
impd_get_delta_tmin(const WORD32 sampling_rate) {
  WORD32 lowerBound = (WORD32)(0.5f + 0.0005f * sampling_rate);
  WORD32 result = 1;
  while (result <= lowerBound) result = result << 1;
  return result;
}