mirror of
https://github.com/rehlds/revoice.git
synced 2025-03-04 01:25:31 +03:00
68 lines
3.4 KiB
C
68 lines
3.4 KiB
C
|
/***********************************************************************
|
||
|
Copyright (c) 2006-2012, Skype Limited. All rights reserved.
|
||
|
Redistribution and use in source and binary forms, with or without
|
||
|
modification, (subject to the limitations in the disclaimer below)
|
||
|
are permitted provided that the following conditions are met:
|
||
|
- Redistributions of source code must retain the above copyright notice,
|
||
|
this list of conditions and the following disclaimer.
|
||
|
- Redistributions in binary form must reproduce the above copyright
|
||
|
notice, this list of conditions and the following disclaimer in the
|
||
|
documentation and/or other materials provided with the distribution.
|
||
|
- Neither the name of Skype Limited, nor the names of specific
|
||
|
contributors, may be used to endorse or promote products derived from
|
||
|
this software without specific prior written permission.
|
||
|
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED
|
||
|
BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||
|
CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
|
||
|
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||
|
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||
|
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||
|
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
***********************************************************************/
|
||
|
|
||
|
/* *
|
||
|
* SKP_Silk_decimate2_coarsest.c *
|
||
|
* *
|
||
|
* downsample by a factor 2, coarsest *
|
||
|
* */
|
||
|
#include "SKP_Silk_SigProc_FLP.h"
|
||
|
|
||
|
/* coefficients for coarsest 2-fold resampling */
|
||
|
/* note that these differ from the interpolator with the same filter orders! */
|
||
|
static float A20cst_FLP[ 1 ] = {0.289001464843750f};
|
||
|
static float A21cst_FLP[ 1 ] = {0.780487060546875f};
|
||
|
|
||
|
/* downsample by a factor 2, coarsest */
|
||
|
void SKP_Silk_decimate2_coarsest_FLP(
|
||
|
const SKP_float *in, /* I: 16 kHz signal [2*len] */
|
||
|
SKP_float *S, /* I/O: state vector [2] */
|
||
|
SKP_float *out, /* O: 8 kHz signal [len] */
|
||
|
SKP_float *scratch, /* I: scratch memory [3*len] */
|
||
|
const SKP_int32 len /* I: number of OUTPUT samples */
|
||
|
)
|
||
|
{
|
||
|
SKP_int32 k;
|
||
|
|
||
|
/* de-interleave allpass inputs */
|
||
|
for ( k = 0; k < len; k++ ) {
|
||
|
scratch[ k ] = in[ 2 * k + 0 ];
|
||
|
scratch[ k + len ] = in[ 2 * k + 1 ];
|
||
|
}
|
||
|
|
||
|
/* allpass filters */
|
||
|
SKP_Silk_allpass_int_FLP( scratch, S + 0, A21cst_FLP[ 0 ], scratch + 2 * len, len );
|
||
|
SKP_Silk_allpass_int_FLP( scratch + len, S + 1, A20cst_FLP[ 0 ], scratch, len );
|
||
|
|
||
|
/* add two allpass outputs */
|
||
|
for ( k = 0; k < len; k++ ) {
|
||
|
out[ k ] = 0.5f * ( scratch[ k ] + scratch[ k + 2 * len ] );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|