aboutsummaryrefslogtreecommitdiff
path: root/src/modules/audio_processing/main/source/splitting_filter.cc
blob: 1526141cc97b1690c138a4d0779b8867c69e0c94 (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
/*
 *  Copyright (c) 2011 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.
 */

#include "splitting_filter.h"
#include "signal_processing_library.h"

namespace webrtc {

void SplittingFilterAnalysis(const WebRtc_Word16* in_data,
                             WebRtc_Word16* low_band,
                             WebRtc_Word16* high_band,
                             WebRtc_Word32* filter_state1,
                             WebRtc_Word32* filter_state2)
{
    WebRtcSpl_AnalysisQMF(in_data, low_band, high_band, filter_state1, filter_state2);
}

void SplittingFilterSynthesis(const WebRtc_Word16* low_band,
                              const WebRtc_Word16* high_band,
                              WebRtc_Word16* out_data,
                              WebRtc_Word32* filt_state1,
                              WebRtc_Word32* filt_state2)
{
    WebRtcSpl_SynthesisQMF(low_band, high_band, out_data, filt_state1, filt_state2);
}
}  // namespace webrtc