Commit b70d44cb authored by Jonas Svedberg's avatar Jonas Svedberg
Browse files

assert fixed for FDCNG WB

parent b1c89d61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@
#define FIX_422                                         /* FhG: Issue 422: re-introduce fix for noisy speech buffer in ParamISM */

#define ERI_FDCNGVQ_LOW_ROM                             /* Eri: Contribution #31 Table ROM saving for IVAS FDCNG-VQ modes       */
#define ERI_MSVQ_CLEANUP                                /* Eri: Contribution #31  BE modularization, mainly for future BASOP of msvq encoder side DCT21&DCT24  c-code   */
#define ERI_MSVQ_CLEANUP                                /* Eri: Contribution #31  BE modularization of msvq encoder side DCT21&DCT24 within msvq_enc()        */
                

#define FIX_416_ISM_BR_SWITCHING                        /* FhG: add missing CLDFB reconfig to ISM BR switching */
+1 −1
Original line number Diff line number Diff line
@@ -475,7 +475,7 @@ void msvq_enc(
        if ( !s && applyDCT_flag != 0 ) /* means: m==1 */
        {
            /* stage 1 candidates search in truncated dct24  domain without any weights  */
            assert( N == FDCNG_VQ_MAX_LEN );
            assert( N == FDCNG_VQ_MAX_LEN || N == FDCNG_VQ_MAX_LEN_WB );  /* 21 and 24 allowed */
            assert( maxC == 2 * FDCNG_VQ_DCT_NSEGM );

            p_max = msvq_stage1_dct_search( u, FDCNG_VQ_MAX_LEN, maxC,
+3 −3

File changed.

Contains only whitespace changes.