Loading lib_dec/ivas_svd_dec.c +6 −2 Original line number Diff line number Diff line Loading @@ -96,22 +96,26 @@ void mat2svdMat( ) { int16_t i, j; #ifndef FIX_506 int16_t posCounter; #endif if ( transpose ) { #ifndef FIX_506 posCounter = 0; #endif for ( i = 0; i < mCols; i++ ) { for ( j = 0; j < nRows; j++ ) { svdMat[i][j] = mat[j + nRows * i]; #ifndef FIX_506 if ( mat[j + nRows * i] > 0.0f ) { posCounter++; } #endif } set_zero( &svdMat[i][mCols], MAX_OUTPUT_CHANNELS - nRows ); Loading Loading
lib_dec/ivas_svd_dec.c +6 −2 Original line number Diff line number Diff line Loading @@ -96,22 +96,26 @@ void mat2svdMat( ) { int16_t i, j; #ifndef FIX_506 int16_t posCounter; #endif if ( transpose ) { #ifndef FIX_506 posCounter = 0; #endif for ( i = 0; i < mCols; i++ ) { for ( j = 0; j < nRows; j++ ) { svdMat[i][j] = mat[j + nRows * i]; #ifndef FIX_506 if ( mat[j + nRows * i] > 0.0f ) { posCounter++; } #endif } set_zero( &svdMat[i][mCols], MAX_OUTPUT_CHANNELS - nRows ); Loading