Coverage Report

Created: 2026-01-17 07:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/opus/silk/LP_variable_cutoff.c
Line
Count
Source
1
/***********************************************************************
2
Copyright (c) 2006-2011, Skype Limited. All rights reserved.
3
Redistribution and use in source and binary forms, with or without
4
modification, are permitted provided that the following conditions
5
are met:
6
- Redistributions of source code must retain the above copyright notice,
7
this list of conditions and the following disclaimer.
8
- Redistributions in binary form must reproduce the above copyright
9
notice, this list of conditions and the following disclaimer in the
10
documentation and/or other materials provided with the distribution.
11
- Neither the name of Internet Society, IETF or IETF Trust, nor the
12
names of specific contributors, may be used to endorse or promote
13
products derived from this software without specific prior written
14
permission.
15
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25
POSSIBILITY OF SUCH DAMAGE.
26
***********************************************************************/
27
28
#ifdef HAVE_CONFIG_H
29
#include "config.h"
30
#endif
31
32
/*
33
    Elliptic/Cauer filters designed with 0.1 dB passband ripple,
34
    80 dB minimum stopband attenuation, and
35
    [0.95 : 0.15 : 0.35] normalized cut off frequencies.
36
*/
37
38
#include "main.h"
39
40
/* Helper function, interpolates the filter taps */
41
static OPUS_INLINE void silk_LP_interpolate_filter_taps(
42
    opus_int32           B_Q28[ TRANSITION_NB ],
43
    opus_int32           A_Q28[ TRANSITION_NA ],
44
    const opus_int       ind,
45
    const opus_int32     fac_Q16
46
)
47
160k
{
48
160k
    opus_int nb, na;
49
50
160k
    if( ind < TRANSITION_INT_NUM - 1 ) {
51
159k
        if( fac_Q16 > 0 ) {
52
157k
            if( fac_Q16 < 32768 ) { /* fac_Q16 is in range of a 16-bit int */
53
                /* Piece-wise linear interpolation of B and A */
54
309k
                for( nb = 0; nb < TRANSITION_NB; nb++ ) {
55
232k
                    B_Q28[ nb ] = silk_SMLAWB(
56
232k
                        silk_Transition_LP_B_Q28[ ind     ][ nb ],
57
232k
                        silk_Transition_LP_B_Q28[ ind + 1 ][ nb ] -
58
232k
                        silk_Transition_LP_B_Q28[ ind     ][ nb ],
59
232k
                        fac_Q16 );
60
232k
                }
61
232k
                for( na = 0; na < TRANSITION_NA; na++ ) {
62
154k
                    A_Q28[ na ] = silk_SMLAWB(
63
154k
                        silk_Transition_LP_A_Q28[ ind     ][ na ],
64
154k
                        silk_Transition_LP_A_Q28[ ind + 1 ][ na ] -
65
154k
                        silk_Transition_LP_A_Q28[ ind     ][ na ],
66
154k
                        fac_Q16 );
67
154k
                }
68
80.1k
            } else { /* ( fac_Q16 - ( 1 << 16 ) ) is in range of a 16-bit int */
69
80.1k
                silk_assert( fac_Q16 - ( 1 << 16 ) == silk_SAT16( fac_Q16 - ( 1 << 16 ) ) );
70
                /* Piece-wise linear interpolation of B and A */
71
320k
                for( nb = 0; nb < TRANSITION_NB; nb++ ) {
72
240k
                    B_Q28[ nb ] = silk_SMLAWB(
73
240k
                        silk_Transition_LP_B_Q28[ ind + 1 ][ nb ],
74
240k
                        silk_Transition_LP_B_Q28[ ind + 1 ][ nb ] -
75
240k
                        silk_Transition_LP_B_Q28[ ind     ][ nb ],
76
240k
                        fac_Q16 - ( (opus_int32)1 << 16 ) );
77
240k
                }
78
240k
                for( na = 0; na < TRANSITION_NA; na++ ) {
79
160k
                    A_Q28[ na ] = silk_SMLAWB(
80
160k
                        silk_Transition_LP_A_Q28[ ind + 1 ][ na ],
81
160k
                        silk_Transition_LP_A_Q28[ ind + 1 ][ na ] -
82
160k
                        silk_Transition_LP_A_Q28[ ind     ][ na ],
83
160k
                        fac_Q16 - ( (opus_int32)1 << 16 ) );
84
160k
                }
85
80.1k
            }
86
157k
        } else {
87
1.99k
            silk_memcpy( B_Q28, silk_Transition_LP_B_Q28[ ind ], TRANSITION_NB * sizeof( opus_int32 ) );
88
1.99k
            silk_memcpy( A_Q28, silk_Transition_LP_A_Q28[ ind ], TRANSITION_NA * sizeof( opus_int32 ) );
89
1.99k
        }
90
159k
    } else {
91
645
        silk_memcpy( B_Q28, silk_Transition_LP_B_Q28[ TRANSITION_INT_NUM - 1 ], TRANSITION_NB * sizeof( opus_int32 ) );
92
645
        silk_memcpy( A_Q28, silk_Transition_LP_A_Q28[ TRANSITION_INT_NUM - 1 ], TRANSITION_NA * sizeof( opus_int32 ) );
93
645
    }
94
160k
}
95
96
/* Low-pass filter with variable cutoff frequency based on  */
97
/* piece-wise linear interpolation between elliptic filters */
98
/* Start by setting psEncC->mode <> 0;                      */
99
/* Deactivate by setting psEncC->mode = 0;                  */
100
void silk_LP_variable_cutoff(
101
    silk_LP_state               *psLP,                          /* I/O  LP filter state                             */
102
    opus_int16                  *frame,                         /* I/O  Low-pass filtered output signal             */
103
    const opus_int              frame_length                    /* I    Frame length                                */
104
)
105
61.1M
{
106
61.1M
    opus_int32   B_Q28[ TRANSITION_NB ], A_Q28[ TRANSITION_NA ], fac_Q16 = 0;
107
61.1M
    opus_int     ind = 0;
108
109
61.1M
    silk_assert( psLP->transition_frame_no >= 0 && psLP->transition_frame_no <= TRANSITION_FRAMES );
110
111
    /* Run filter if needed */
112
61.1M
    if( psLP->mode != 0 ) {
113
        /* Calculate index and interpolation factor for interpolation */
114
160k
#if( TRANSITION_INT_STEPS == 64 )
115
160k
        fac_Q16 = silk_LSHIFT( TRANSITION_FRAMES - psLP->transition_frame_no, 16 - 6 );
116
#else
117
        fac_Q16 = silk_DIV32_16( silk_LSHIFT( TRANSITION_FRAMES - psLP->transition_frame_no, 16 ), TRANSITION_FRAMES );
118
#endif
119
160k
        ind      = silk_RSHIFT( fac_Q16, 16 );
120
160k
        fac_Q16 -= silk_LSHIFT( ind, 16 );
121
122
160k
        silk_assert( ind >= 0 );
123
160k
        silk_assert( ind < TRANSITION_INT_NUM );
124
125
        /* Interpolate filter coefficients */
126
160k
        silk_LP_interpolate_filter_taps( B_Q28, A_Q28, ind, fac_Q16 );
127
128
        /* Update transition frame number for next frame */
129
160k
        psLP->transition_frame_no = silk_LIMIT( psLP->transition_frame_no + psLP->mode, 0, TRANSITION_FRAMES );
130
131
        /* ARMA low-pass filtering */
132
160k
        silk_assert( TRANSITION_NB == 3 && TRANSITION_NA == 2 );
133
160k
        silk_biquad_alt_stride1( frame, B_Q28, A_Q28, psLP->In_LP_State, frame, frame_length);
134
160k
    }
135
61.1M
}