summaryrefslogtreecommitdiff
path: root/modules/audio_coding/codecs/isac/fix/source/filterbank_internal.h
blob: 3fefc1a5dcc41a8ce6d0ad955bb19c8079ef699b (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
/*
 *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_
#define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_

#include "typedefs.h"

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

/* Arguments:
 *   io:  Input/output, in Q0.
 *   len: Input, sample length.
 *   coefficient: Input.
 *   state: Input/output, filter state, in Q4.
 */
void WebRtcIsacfix_HighpassFilterFixDec32(int16_t *io,
                                          int16_t len,
                                          const int16_t *coefficient,
                                          int32_t *state);

typedef void (*AllpassFilter2FixDec16)(
    int16_t *data_ch1,           // Input and output in channel 1, in Q0
    int16_t *data_ch2,           // Input and output in channel 2, in Q0
    const int16_t *factor_ch1,   // Scaling factor for channel 1, in Q15
    const int16_t *factor_ch2,   // Scaling factor for channel 2, in Q15
    const int length,            // Length of the data buffers
    int32_t *filter_state_ch1,   // Filter state for channel 1, in Q16
    int32_t *filter_state_ch2);  // Filter state for channel 2, in Q16
extern AllpassFilter2FixDec16 WebRtcIsacfix_AllpassFilter2FixDec16;

void WebRtcIsacfix_AllpassFilter2FixDec16C(
   int16_t *data_ch1,
   int16_t *data_ch2,
   const int16_t *factor_ch1,
   const int16_t *factor_ch2,
   const int length,
   int32_t *filter_state_ch1,
   int32_t *filter_state_ch2);

#if (defined WEBRTC_DETECT_ARM_NEON) || (defined WEBRTC_ARCH_ARM_NEON)
void WebRtcIsacfix_AllpassFilter2FixDec16Neon(
   int16_t *data_ch1,
   int16_t *data_ch2,
   const int16_t *factor_ch1,
   const int16_t *factor_ch2,
   const int length,
   int32_t *filter_state_ch1,
   int32_t *filter_state_ch2);
#endif

#if defined(MIPS_DSP_R1_LE)
void WebRtcIsacfix_AllpassFilter2FixDec16MIPS(
   int16_t *data_ch1,
   int16_t *data_ch2,
   const int16_t *factor_ch1,
   const int16_t *factor_ch2,
   const int length,
   int32_t *filter_state_ch1,
   int32_t *filter_state_ch2);
#endif

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif

#endif
/* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_ */