Commit 66ffcc0d authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

diff of ivas-float-update@74b339e0b (base) vs float-main@eb6212c59 (incoming)

parent 74b339e0
Loading
Loading
Loading
Loading
Loading
+374 −104

File changed.

Preview size limit exceeded, changes collapsed.

+268 −138

File changed.

Preview size limit exceeded, changes collapsed.

+271 −8

File changed.

Preview size limit exceeded, changes collapsed.

+46 −131

File changed.

Preview size limit exceeded, changes collapsed.

+1 −2
Original line number Diff line number Diff line
@@ -272,7 +272,7 @@ void tcx_hm_modify_envelope(
    const int16_t L_frame /* i  : number of spectral lines              */
)
{
    int32_t k, h, x;
    int32_t h, x, k;
    Word16 inv_shape[2 * kTcxHmParabolaHalfWidth + 1]; /* Q15 */

    if ( gain == 0 )
@@ -290,7 +290,6 @@ void tcx_hm_modify_envelope(

    while ( k <= L_frame + kTcxHmParabolaHalfWidth - 1 )
    {

        for ( x = max( 0, k - kTcxHmParabolaHalfWidth ); x <= min( k + kTcxHmParabolaHalfWidth, L_frame - 1 ); ++x )
        {
            env[x] = Mpy_32_16( env[x], inv_shape[x - k + kTcxHmParabolaHalfWidth] );
Loading