Commit 4bb07b2e authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

improve formatting, name conventions

parent 5b684737
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@
 *
 *-------------------------------------------------------------------*/

Word32 Inv_grp_length[17] = {
static const Word32 Inv_grp_length[17] = {
    // Q31
    0,
    2147483647,
+1 −1
Original line number Diff line number Diff line
@@ -1563,7 +1563,7 @@ static Word32 ReadMSInformation(
    }
    ELSE
    {
        printf( "ERROR UNSUPPORTED MS MODE\n" );
        printf( "Error in ReadMSInformation() - unsupported MS mode information!\n" );
    }

    return iBitsRead;
+2 −2
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ static Word32 UnQuantize_fx(
    return fVal_fx;
}

static void PackReal(
static void PackReal_fx(
    const Word32 iChannels,
    const Word32 iNumBlocks,
    Word32 ***pppfReal,
@@ -591,7 +591,7 @@ Word32 EncodeLCLDFrame(
    assert( available_bits <= pBits->buf_len * 8 );
    IF( EQ_32( psLCLDEncoder->iRealOnlyOut, 1 ) )
    {
        PackReal( psLCLDEncoder->iChannels, psLCLDEncoder->iNumBlocks * 2, pppfLCLDReal_fx, pppfLCLDImag_fx );
        PackReal_fx( psLCLDEncoder->iChannels, psLCLDEncoder->iNumBlocks * 2, pppfLCLDReal_fx, pppfLCLDImag_fx );
    }
    /* Do MS calc here */
    IF( EQ_32( psLCLDEncoder->iChannels, 2 ) )