annotate src/opus-1.3/silk/control_SNR.c @ 72:7b5216b54e42

Update exclusion list
author Chris Cannam
date Fri, 25 Jan 2019 13:49:22 +0000
parents 7aeed7906520
children
rev   line source
Chris@69 1 /***********************************************************************
Chris@69 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
Chris@69 3 Redistribution and use in source and binary forms, with or without
Chris@69 4 modification, are permitted provided that the following conditions
Chris@69 5 are met:
Chris@69 6 - Redistributions of source code must retain the above copyright notice,
Chris@69 7 this list of conditions and the following disclaimer.
Chris@69 8 - Redistributions in binary form must reproduce the above copyright
Chris@69 9 notice, this list of conditions and the following disclaimer in the
Chris@69 10 documentation and/or other materials provided with the distribution.
Chris@69 11 - Neither the name of Internet Society, IETF or IETF Trust, nor the
Chris@69 12 names of specific contributors, may be used to endorse or promote
Chris@69 13 products derived from this software without specific prior written
Chris@69 14 permission.
Chris@69 15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Chris@69 16 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Chris@69 17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Chris@69 18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
Chris@69 19 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Chris@69 20 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Chris@69 21 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Chris@69 22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Chris@69 23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Chris@69 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Chris@69 25 POSSIBILITY OF SUCH DAMAGE.
Chris@69 26 ***********************************************************************/
Chris@69 27
Chris@69 28 #ifdef HAVE_CONFIG_H
Chris@69 29 #include "config.h"
Chris@69 30 #endif
Chris@69 31
Chris@69 32 #include "main.h"
Chris@69 33 #include "tuning_parameters.h"
Chris@69 34
Chris@69 35 /* These tables hold SNR values divided by 21 (so they fit in 8 bits)
Chris@69 36 for different target bitrates spaced at 400 bps interval. The first
Chris@69 37 10 values are omitted (0-4 kb/s) because they're all zeros.
Chris@69 38 These tables were obtained by running different SNRs through the
Chris@69 39 encoder and measuring the active bitrate. */
Chris@69 40 static const unsigned char silk_TargetRate_NB_21[117 - 10] = {
Chris@69 41 0, 15, 39, 52, 61, 68,
Chris@69 42 74, 79, 84, 88, 92, 95, 99,102,105,108,111,114,117,119,122,124,
Chris@69 43 126,129,131,133,135,137,139,142,143,145,147,149,151,153,155,157,
Chris@69 44 158,160,162,163,165,167,168,170,171,173,174,176,177,179,180,182,
Chris@69 45 183,185,186,187,189,190,192,193,194,196,197,199,200,201,203,204,
Chris@69 46 205,207,208,209,211,212,213,215,216,217,219,220,221,223,224,225,
Chris@69 47 227,228,230,231,232,234,235,236,238,239,241,242,243,245,246,248,
Chris@69 48 249,250,252,253,255
Chris@69 49 };
Chris@69 50
Chris@69 51 static const unsigned char silk_TargetRate_MB_21[165 - 10] = {
Chris@69 52 0, 0, 28, 43, 52, 59,
Chris@69 53 65, 70, 74, 78, 81, 85, 87, 90, 93, 95, 98,100,102,105,107,109,
Chris@69 54 111,113,115,116,118,120,122,123,125,127,128,130,131,133,134,136,
Chris@69 55 137,138,140,141,143,144,145,147,148,149,151,152,153,154,156,157,
Chris@69 56 158,159,160,162,163,164,165,166,167,168,169,171,172,173,174,175,
Chris@69 57 176,177,178,179,180,181,182,183,184,185,186,187,188,188,189,190,
Chris@69 58 191,192,193,194,195,196,197,198,199,200,201,202,203,203,204,205,
Chris@69 59 206,207,208,209,210,211,212,213,214,214,215,216,217,218,219,220,
Chris@69 60 221,222,223,224,224,225,226,227,228,229,230,231,232,233,234,235,
Chris@69 61 236,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,
Chris@69 62 251,252,253,254,255
Chris@69 63 };
Chris@69 64
Chris@69 65 static const unsigned char silk_TargetRate_WB_21[201 - 10] = {
Chris@69 66 0, 0, 0, 8, 29, 41,
Chris@69 67 49, 56, 62, 66, 70, 74, 77, 80, 83, 86, 88, 91, 93, 95, 97, 99,
Chris@69 68 101,103,105,107,108,110,112,113,115,116,118,119,121,122,123,125,
Chris@69 69 126,127,129,130,131,132,134,135,136,137,138,140,141,142,143,144,
Chris@69 70 145,146,147,148,149,150,151,152,153,154,156,157,158,159,159,160,
Chris@69 71 161,162,163,164,165,166,167,168,169,170,171,171,172,173,174,175,
Chris@69 72 176,177,177,178,179,180,181,181,182,183,184,185,185,186,187,188,
Chris@69 73 189,189,190,191,192,192,193,194,195,195,196,197,198,198,199,200,
Chris@69 74 200,201,202,203,203,204,205,206,206,207,208,209,209,210,211,211,
Chris@69 75 212,213,214,214,215,216,216,217,218,219,219,220,221,221,222,223,
Chris@69 76 224,224,225,226,226,227,228,229,229,230,231,232,232,233,234,234,
Chris@69 77 235,236,237,237,238,239,240,240,241,242,243,243,244,245,246,246,
Chris@69 78 247,248,249,249,250,251,252,253,255
Chris@69 79 };
Chris@69 80
Chris@69 81 /* Control SNR of redidual quantizer */
Chris@69 82 opus_int silk_control_SNR(
Chris@69 83 silk_encoder_state *psEncC, /* I/O Pointer to Silk encoder state */
Chris@69 84 opus_int32 TargetRate_bps /* I Target max bitrate (bps) */
Chris@69 85 )
Chris@69 86 {
Chris@69 87 int id;
Chris@69 88 int bound;
Chris@69 89 const unsigned char *snr_table;
Chris@69 90
Chris@69 91 psEncC->TargetRate_bps = TargetRate_bps;
Chris@69 92 if( psEncC->nb_subfr == 2 ) {
Chris@69 93 TargetRate_bps -= 2000 + psEncC->fs_kHz/16;
Chris@69 94 }
Chris@69 95 if( psEncC->fs_kHz == 8 ) {
Chris@69 96 bound = sizeof(silk_TargetRate_NB_21);
Chris@69 97 snr_table = silk_TargetRate_NB_21;
Chris@69 98 } else if( psEncC->fs_kHz == 12 ) {
Chris@69 99 bound = sizeof(silk_TargetRate_MB_21);
Chris@69 100 snr_table = silk_TargetRate_MB_21;
Chris@69 101 } else {
Chris@69 102 bound = sizeof(silk_TargetRate_WB_21);
Chris@69 103 snr_table = silk_TargetRate_WB_21;
Chris@69 104 }
Chris@69 105 id = (TargetRate_bps+200)/400;
Chris@69 106 id = silk_min(id - 10, bound-1);
Chris@69 107 if( id <= 0 ) {
Chris@69 108 psEncC->SNR_dB_Q7 = 0;
Chris@69 109 } else {
Chris@69 110 psEncC->SNR_dB_Q7 = snr_table[id]*21;
Chris@69 111 }
Chris@69 112 return SILK_NO_ERROR;
Chris@69 113 }