Commit c1a03a71 authored by vaclav's avatar vaclav
Browse files

build fixes

parent 57fc86e2
Loading
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -49,6 +49,19 @@ typedef int ( *ScenarioFnPtr )( const LC3PLUS_CONFIG config,
                                int32_t bitstream_in_size,
                                float **pcm_out );

static void ISAR_LC3PLUS_DEC_FreeSubframeDecodingMatrix(
    int16_t **subframeChannelMatrix )
{
    for ( int16_t i = 0; i < MAX_PARAM_SPATIAL_SUBFRAMES; i++ )
    {
        free( subframeChannelMatrix[i] );
    }

    free( subframeChannelMatrix );

    return;
}

static int encodeAndDecodeOne6chFrameFixture( LC3PLUS_CONFIG config, const int16_t enableCaching, const int32_t bps, ScenarioFnPtr scenarioFn )
{
    ivas_error err;