Commit 57fc86e2 authored by vaclav's avatar vaclav
Browse files

build fixes

parent 549a18dc
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ static int tryOpenEncoderWithInvalidBitrate( void )
    {
        return 1;
    }
    err = IVAS_LC3PLUS_ENC_Open( config, invalid_low_bps, &encHandle );
    err = ISAR_LC3PLUS_ENC_Open( config, invalid_low_bps, &encHandle );
    /* setting an invalid bitrate should trigger an error - which is what we expect */
    if ( IVAS_ERR_LC3PLUS_INVALID_BITRATE != err )
    {
@@ -246,8 +246,8 @@ static int tryCallEncoderApiWithInvalidParams( void )
    {
        return 1;
    }
    IVAS_LC3PLUS_ENC_Close( &invalidEncHandle );
    if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != IVAS_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out ) )
    ISAR_LC3PLUS_ENC_Close( &invalidEncHandle );
    if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out ) )
    {
        return 1;
    }
+70 −70

File changed.

Preview size limit exceeded, changes collapsed.