Skip to content

Commit a3911a4

Browse files
committed
VST SDK 3.8.0
1 parent b8931a0 commit a3911a4

File tree

636 files changed

+7490
-12898
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

636 files changed

+7490
-12898
lines changed

CMakeLists.txt

Lines changed: 0 additions & 226 deletions
This file was deleted.

LICENSE.txt

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
11
//-----------------------------------------------------------------------------
2-
// LICENSE
3-
// (c) 2025, Steinberg Media Technologies GmbH, All Rights Reserved
4-
//-----------------------------------------------------------------------------
5-
// Redistribution and use in source and binary forms, with or without modification,
6-
// are permitted provided that the following conditions are met:
7-
//
8-
// * Redistributions of source code must retain the above copyright notice,
9-
// this list of conditions and the following disclaimer.
10-
// * Redistributions in binary form must reproduce the above copyright notice,
11-
// this list of conditions and the following disclaimer in the documentation
12-
// and/or other materials provided with the distribution.
13-
// * Neither the name of the Steinberg Media Technologies nor the names of its
14-
// contributors may be used to endorse or promote products derived from this
15-
// software without specific prior written permission.
16-
//
17-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18-
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19-
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20-
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21-
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22-
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24-
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25-
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26-
// OF THE POSSIBILITY OF SUCH DAMAGE.
27-
//-----------------------------------------------------------------------------
2+
MIT License
3+
4+
Copyright (c) 2025, Steinberg Media Technologies GmbH
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.
23+
24+
//---------------------------------------------------------------------------------

samples/vst-hosting/audiohost/source/audiohost.cpp

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,11 @@
77
// Description : Audio Host Example for VST 3
88
//
99
//-----------------------------------------------------------------------------
10-
// LICENSE
11-
// (c) 2024, Steinberg Media Technologies GmbH, All Rights Reserved
12-
//-----------------------------------------------------------------------------
13-
// Redistribution and use in source and binary forms, with or without modification,
14-
// are permitted provided that the following conditions are met:
15-
//
16-
// * Redistributions of source code must retain the above copyright notice,
17-
// this list of conditions and the following disclaimer.
18-
// * Redistributions in binary form must reproduce the above copyright notice,
19-
// this list of conditions and the following disclaimer in the documentation
20-
// and/or other materials provided with the distribution.
21-
// * Neither the name of the Steinberg Media Technologies nor the names of its
22-
// contributors may be used to endorse or promote products derived from this
23-
// software without specific prior written permission.
24-
//
25-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
26-
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27-
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28-
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
29-
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32-
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
33-
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34-
// OF THE POSSIBILITY OF SUCH DAMAGE.
10+
// This file is part of a Steinberg SDK. It is subject to the license terms
11+
// in the LICENSE file found in the top-level directory of this distribution
12+
// and at www.steinberg.net/sdklicenses.
13+
// No part of the SDK, including this file, may be copied, modified, propagated,
14+
// or distributed except according to the terms contained in the LICENSE file.
3515
//-----------------------------------------------------------------------------
3616

3717
#include "public.sdk/samples/vst-hosting/audiohost/source/audiohost.h"

samples/vst-hosting/audiohost/source/audiohost.h

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,11 @@
88
// Description : Audio Host Example for VST 3
99
//
1010
//-----------------------------------------------------------------------------
11-
// LICENSE
12-
// (c) 2024, Steinberg Media Technologies GmbH, All Rights Reserved
13-
//-----------------------------------------------------------------------------
14-
// Redistribution and use in source and binary forms, with or without modification,
15-
// are permitted provided that the following conditions are met:
16-
//
17-
// * Redistributions of source code must retain the above copyright notice,
18-
// this list of conditions and the following disclaimer.
19-
// * Redistributions in binary form must reproduce the above copyright notice,
20-
// this list of conditions and the following disclaimer in the documentation
21-
// and/or other materials provided with the distribution.
22-
// * Neither the name of the Steinberg Media Technologies nor the names of its
23-
// contributors may be used to endorse or promote products derived from this
24-
// software without specific prior written permission.
25-
//
26-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
27-
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28-
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29-
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
30-
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31-
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33-
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
34-
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
35-
// OF THE POSSIBILITY OF SUCH DAMAGE.
11+
// This file is part of a Steinberg SDK. It is subject to the license terms
12+
// in the LICENSE file found in the top-level directory of this distribution
13+
// and at www.steinberg.net/sdklicenses.
14+
// No part of the SDK, including this file, may be copied, modified, propagated,
15+
// or distributed except according to the terms contained in the LICENSE file.
3616
//-----------------------------------------------------------------------------
3717

3818
#pragma once

samples/vst-hosting/audiohost/source/media/audioclient.cpp

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,11 @@
88
// Description : Audio Host Example for VST 3
99
//
1010
//-----------------------------------------------------------------------------
11-
// LICENSE
12-
// (c) 2024, Steinberg Media Technologies GmbH, All Rights Reserved
13-
//-----------------------------------------------------------------------------
14-
// Redistribution and use in source and binary forms, with or without modification,
15-
// are permitted provided that the following conditions are met:
16-
//
17-
// * Redistributions of source code must retain the above copyright notice,
18-
// this list of conditions and the following disclaimer.
19-
// * Redistributions in binary form must reproduce the above copyright notice,
20-
// this list of conditions and the following disclaimer in the documentation
21-
// and/or other materials provided with the distribution.
22-
// * Neither the name of the Steinberg Media Technologies nor the names of its
23-
// contributors may be used to endorse or promote products derived from this
24-
// software without specific prior written permission.
25-
//
26-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
27-
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28-
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29-
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
30-
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31-
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33-
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
34-
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
35-
// OF THE POSSIBILITY OF SUCH DAMAGE.
11+
// This file is part of a Steinberg SDK. It is subject to the license terms
12+
// in the LICENSE file found in the top-level directory of this distribution
13+
// and at www.steinberg.net/sdklicenses.
14+
// No part of the SDK, including this file, may be copied, modified, propagated,
15+
// or distributed except according to the terms contained in the LICENSE file.
3616
//-----------------------------------------------------------------------------
3717

3818
#include "audioclient.h"

0 commit comments

Comments
 (0)