Coverage Report

Created: 2023-09-25 08:12

/src/opus/silk/code_signs.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
#include "main.h"
33
34
/*#define silk_enc_map(a)                ((a) > 0 ? 1 : 0)*/
35
/*#define silk_dec_map(a)                ((a) > 0 ? 1 : -1)*/
36
/* shifting avoids if-statement */
37
128M
#define silk_enc_map(a)                  ( silk_RSHIFT( (a), 15 ) + 1 )
38
14.6M
#define silk_dec_map(a)                  ( silk_LSHIFT( (a),  1 ) - 1 )
39
40
/* Encodes signs of excitation */
41
void silk_encode_signs(
42
    ec_enc                      *psRangeEnc,                        /* I/O  Compressor data structure                   */
43
    const opus_int8             pulses[],                           /* I    pulse signal                                */
44
    opus_int                    length,                             /* I    length of input                             */
45
    const opus_int              signalType,                         /* I    Signal type                                 */
46
    const opus_int              quantOffsetType,                    /* I    Quantization offset type                    */
47
    const opus_int              sum_pulses[ MAX_NB_SHELL_BLOCKS ]   /* I    Sum of absolute pulses per block            */
48
)
49
23.2M
{
50
23.2M
    opus_int         i, j, p;
51
23.2M
    opus_uint8       icdf[ 2 ];
52
23.2M
    const opus_int8  *q_ptr;
53
23.2M
    const opus_uint8 *icdf_ptr;
54
55
23.2M
    icdf[ 1 ] = 0;
56
23.2M
    q_ptr = pulses;
57
23.2M
    i = silk_SMULBB( 7, silk_ADD_LSHIFT( quantOffsetType, signalType, 1 ) );
58
23.2M
    icdf_ptr = &silk_sign_iCDF[ i ];
59
23.2M
    length = silk_RSHIFT( length + SHELL_CODEC_FRAME_LENGTH/2, LOG2_SHELL_CODEC_FRAME_LENGTH );
60
278M
    for( i = 0; i < length; i++ ) {
61
254M
        p = sum_pulses[ i ];
62
254M
        if( p > 0 ) {
63
36.8M
            icdf[ 0 ] = icdf_ptr[ silk_min( p & 0x1F, 6 ) ];
64
626M
            for( j = 0; j < SHELL_CODEC_FRAME_LENGTH; j++ ) {
65
589M
                if( q_ptr[ j ] != 0 ) {
66
128M
                    ec_enc_icdf( psRangeEnc, silk_enc_map( q_ptr[ j ]), icdf, 8 );
67
128M
                }
68
589M
            }
69
36.8M
        }
70
254M
        q_ptr += SHELL_CODEC_FRAME_LENGTH;
71
254M
    }
72
23.2M
}
73
74
/* Decodes signs of excitation */
75
void silk_decode_signs(
76
    ec_dec                      *psRangeDec,                        /* I/O  Compressor data structure                   */
77
    opus_int16                  pulses[],                           /* I/O  pulse signal                                */
78
    opus_int                    length,                             /* I    length of input                             */
79
    const opus_int              signalType,                         /* I    Signal type                                 */
80
    const opus_int              quantOffsetType,                    /* I    Quantization offset type                    */
81
    const opus_int              sum_pulses[ MAX_NB_SHELL_BLOCKS ]   /* I    Sum of absolute pulses per block            */
82
)
83
313k
{
84
313k
    opus_int         i, j, p;
85
313k
    opus_uint8       icdf[ 2 ];
86
313k
    opus_int16       *q_ptr;
87
313k
    const opus_uint8 *icdf_ptr;
88
89
313k
    icdf[ 1 ] = 0;
90
313k
    q_ptr = pulses;
91
313k
    i = silk_SMULBB( 7, silk_ADD_LSHIFT( quantOffsetType, signalType, 1 ) );
92
313k
    icdf_ptr = &silk_sign_iCDF[ i ];
93
313k
    length = silk_RSHIFT( length + SHELL_CODEC_FRAME_LENGTH/2, LOG2_SHELL_CODEC_FRAME_LENGTH );
94
4.58M
    for( i = 0; i < length; i++ ) {
95
4.26M
        p = sum_pulses[ i ];
96
4.26M
        if( p > 0 ) {
97
3.47M
            icdf[ 0 ] = icdf_ptr[ silk_min( p & 0x1F, 6 ) ];
98
59.0M
            for( j = 0; j < SHELL_CODEC_FRAME_LENGTH; j++ ) {
99
55.5M
                if( q_ptr[ j ] > 0 ) {
100
                    /* attach sign */
101
#if 0
102
                    /* conditional implementation */
103
                    if( ec_dec_icdf( psRangeDec, icdf, 8 ) == 0 ) {
104
                        q_ptr[ j ] = -q_ptr[ j ];
105
                    }
106
#else
107
                    /* implementation with shift, subtraction, multiplication */
108
14.6M
                    q_ptr[ j ] *= silk_dec_map( ec_dec_icdf( psRangeDec, icdf, 8 ) );
109
14.6M
#endif
110
14.6M
                }
111
55.5M
            }
112
3.47M
        }
113
4.26M
        q_ptr += SHELL_CODEC_FRAME_LENGTH;
114
4.26M
    }
115
313k
}