Skip to content

Commit

Permalink
Rename MidiTime to TimePos (fix merge conflicts)
Browse files Browse the repository at this point in the history
  • Loading branch information
M374LX committed Nov 19, 2020
2 parents 32e1aa6 + 87875a1 commit fd94df8
Show file tree
Hide file tree
Showing 308 changed files with 3,124 additions and 20,929 deletions.
6 changes: 5 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ environment:
matrix:
- compiler: msvc
install:
- vcpkg install --triplet %PLATFORM%-windows --recurse fftw3 libsamplerate libsndfile sdl2
- cd C:\Tools\vcpkg
- git pull
- .\bootstrap-vcpkg.bat
- cd %APPVEYOR_BUILD_FOLDER%
- vcpkg install --triplet %PLATFORM%-windows --recurse fftw3 libsamplerate libsndfile lilv lv2 sdl2
- nuget install clcache -Version 4.1.0
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
Expand Down
11 changes: 10 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
url = https:/Lukas-W/qt5-x11embed.git
[submodule "src/3rdparty/rpmalloc/rpmalloc"]
path = src/3rdparty/rpmalloc/rpmalloc
url = https:/rampantpixels/rpmalloc.git
url = https:/mjansson/rpmalloc.git
[submodule "plugins/zynaddsubfx/zynaddsubfx"]
path = plugins/zynaddsubfx/zynaddsubfx
url = https:/lmms/zynaddsubfx.git
Expand Down Expand Up @@ -40,3 +40,12 @@
[submodule "plugins/carlabase/carla"]
path = plugins/carlabase/carla
url = https:/falktx/carla
[submodule "plugins/sid/resid"]
path = plugins/Sid/resid
url = https:/simonowen/resid
[submodule "src/3rdparty/jack2"]
path = src/3rdparty/jack2
url = https:/jackaudio/jack2
[submodule "plugins/LadspaEffect/cmt/cmt"]
path = plugins/LadspaEffect/cmt/cmt
url = https:/lmms/cmt
66 changes: 38 additions & 28 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0057 NEW)
ENDIF(COMMAND CMAKE_POLICY)


# Import of windows.h breaks min()/max()
ADD_DEFINITIONS(-DNOMINMAX)

INCLUDE(PluginList)
INCLUDE(CheckSubmodules)
INCLUDE(AddFileDependencies)
Expand All @@ -35,10 +39,10 @@ SET(PROJECT_EMAIL "[email protected]")
SET(PROJECT_DESCRIPTION "${PROJECT_NAME_UCASE} - Free music production software")
SET(PROJECT_COPYRIGHT "2008-${PROJECT_YEAR} ${PROJECT_AUTHOR}")
SET(VERSION_MAJOR "1")
SET(VERSION_MINOR "2")
SET(VERSION_RELEASE "2")
SET(VERSION_STAGE "")
SET(VERSION_BUILD "0")
SET(VERSION_MINOR "3")
SET(VERSION_RELEASE "0")
SET(VERSION_STAGE "alpha")
SET(VERSION_BUILD "")
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}")
IF(VERSION_STAGE)
SET(VERSION "${VERSION}-${VERSION_STAGE}")
Expand Down Expand Up @@ -97,15 +101,13 @@ ENDIF(LMMS_BUILD_APPLE)

IF(LMMS_BUILD_WIN32)
SET(WANT_ALSA OFF)
SET(WANT_JACK OFF)
SET(WANT_PULSEAUDIO OFF)
SET(WANT_SNDIO OFF)
SET(WANT_SOUNDIO OFF)
SET(WANT_WINMM ON)
SET(BUNDLE_QT_TRANSLATIONS ON)
SET(LMMS_HAVE_WINMM TRUE)
SET(STATUS_ALSA "<not supported on this platform>")
SET(STATUS_JACK "<not supported on this platform>")
SET(STATUS_PULSEAUDIO "<not supported on this platform>")
SET(STATUS_SOUNDIO "<disabled in this release>")
SET(STATUS_WINMM "OK")
Expand Down Expand Up @@ -201,14 +203,19 @@ IF(WANT_LV2)
IF(PKG_CONFIG_FOUND)
PKG_CHECK_MODULES(LV2 lv2)
PKG_CHECK_MODULES(LILV lilv-0)
IF(LV2_FOUND AND LILV_FOUND)
SET(LMMS_HAVE_LV2 TRUE)
SET(STATUS_LV2 "OK")
ELSE()
SET(STATUS_LV2 "not found, install it or set PKG_CONFIG_PATH appropriately")
ENDIF()
IF(NOT LV2_FOUND AND NOT LILV_FOUND)
FIND_PACKAGE(LV2 CONFIG)
FIND_PACKAGE(LILV CONFIG)
IF(LILV_FOUND)
SET(LILV_LIBRARIES "lilv::lilv")
ENDIF()
ENDIF()
IF(LV2_FOUND AND LILV_FOUND)
SET(LMMS_HAVE_LV2 TRUE)
SET(STATUS_LV2 "OK")
ELSE()
SET(STATUS_LV2 "not found, requires pkg-config")
SET(STATUS_LV2 "not found, install it or set PKG_CONFIG_PATH appropriately")
ENDIF()
ELSE(WANT_LV2)
SET(STATUS_LV2 "not built as requested")
Expand Down Expand Up @@ -433,23 +440,26 @@ ENDIF(NOT LMMS_HAVE_ALSA)

# check for JACK
IF(WANT_JACK)
PKG_CHECK_MODULES(JACK jack>=0.77)
IF(JACK_FOUND)
IF(WANT_WEAKJACK)
SET(LMMS_HAVE_WEAKJACK TRUE)
SET(WEAKJACK_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/src/3rdparty/weakjack/weakjack)
SET(STATUS_JACK "OK (weak linking enabled)")
# use dlsym instead
SET(JACK_LIBRARIES ${CMAKE_DL_LIBS})
ELSE()
IF(WANT_WEAKJACK)
SET(LMMS_HAVE_WEAKJACK TRUE)
SET(WEAKJACK_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/src/3rdparty/weakjack/weakjack)
SET(JACK_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/src/3rdparty/jack2/common)
SET(STATUS_JACK "OK (weak linking enabled)")
# use dlsym instead
SET(JACK_LIBRARIES ${CMAKE_DL_LIBS})
SET(LMMS_HAVE_JACK TRUE)
SET(JACK_FOUND TRUE)
ELSE()
PKG_CHECK_MODULES(JACK jack>=0.77)
IF(JACK_FOUND)
SET(STATUS_JACK "OK")
ENDIF()
SET(LMMS_HAVE_JACK TRUE)
ELSE(JACK_FOUND)
ENDIF()

IF(NOT JACK_FOUND)
SET(JACK_INCLUDE_DIRS "")
SET(STATUS_JACK "not found, please install libjack0.100.0-dev (or similar) "
"if you require JACK support")
ENDIF(JACK_FOUND)
SET(STATUS_JACK "not found")
ENDIF()
ENDIF(WANT_JACK)

# check for FFTW3F-library
Expand Down Expand Up @@ -487,9 +497,9 @@ If(WANT_GIG)
ENDIF(WANT_GIG)

# check for pthreads
IF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD OR LMMS_BUILD_FREEBSD)
IF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD OR LMMS_BUILD_FREEBSD OR LMMS_BUILD_HAIKU)
FIND_PACKAGE(Threads)
ENDIF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD OR LMMS_BUILD_FREEBSD)
ENDIF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD OR LMMS_BUILD_FREEBSD OR LMMS_BUILD_HAIKU)

# check for sndio (roaraudio won't work yet)
IF(WANT_SNDIO)
Expand Down
5 changes: 5 additions & 0 deletions cmake/apple/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ SET(MACOSX_BUNDLE_MIMETYPE "application/x-lmms-project")
SET(MACOSX_BUNDLE_MIMETYPE_ICON "project.icns")
SET(MACOSX_BUNDLE_MIMETYPE_ID "io.lmms")
SET(MACOSX_BUNDLE_PROJECT_URL "${PROJECT_URL}")
SET(MACOSX_BUNDLE_DMG_TITLE "${MACOSX_BUNDLE_BUNDLE_NAME} ${MACOSX_BUNDLE_LONG_VERSION_STRING}")

# FIXME: appdmg won't allow volume names > 27 char
# See also https:/LinusU/node-appdmg/issues/48
STRING(SUBSTRING "${MACOSX_BUNDLE_DMG_TITLE}" 0 27 MACOSX_BUNDLE_DMG_TITLE)

CONFIGURE_FILE("lmms.plist.in" "${CMAKE_BINARY_DIR}/Info.plist")
CONFIGURE_FILE("install_apple.sh.in" "${CMAKE_BINARY_DIR}/install_apple.sh" @ONLY)
Expand Down
2 changes: 1 addition & 1 deletion cmake/apple/package_apple.json.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "@MACOSX_BUNDLE_BUNDLE_NAME@ @MACOSX_BUNDLE_LONG_VERSION_STRING@",
"title": "@MACOSX_BUNDLE_DMG_TITLE@",
"background": "@CMAKE_SOURCE_DIR@/cmake/apple/dmg_branding.png",
"icon-size": 128,
"contents": [
Expand Down
2 changes: 1 addition & 1 deletion cmake/modules/PluginList.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ SET(LMMS_PLUGIN_LIST
ReverbSC
sf2_player
sfxr
sid
Sid
SpectrumAnalyzer
stereo_enhancer
stereo_matrix
Expand Down
2 changes: 1 addition & 1 deletion data/presets/AudioFileProcessor/Bass-Mania.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<instrumenttrack fxch="0" vol="59" name="Bass-Mania" tab="1">
<audiofileprocessor reversed="0" looped="0" eframe="0.999938" sframe="0" amp="100" src="misc/bass!.ogg"/>
<eldata fres="0.5" ftype="0" fcut="16000" fwet="0">
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.291" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0" x100="0" lshp="0" hold="0"/>
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.291" latt="0" sus="0" lspd="0.1" att="0.05" pdel="0" lfosyncmode="0" lamt="0" dec="0" x100="0" lshp="0" hold="0"/>
<elcut userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
<elres userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
</eldata>
Expand Down
2 changes: 1 addition & 1 deletion data/presets/AudioFileProcessor/Erazor.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<audiofileprocessor reversed="0" looped="0" eframe="1" stutter="0" sframe="0" src="drumsynth/misc_synth/wowmelodictone.ds" amp="90"/>
</instrument>
<eldata fres="3.51" ftype="0" fcut="2940" fwet="0">
<elvol lspd_denominator="4" sustain="0.95" userwavefile="" pdel="0" dec="0" lamt="0" syncmode="0" latt="0" rel="0.23" amt="1" x100="0" att="0" lpdel="0" hold="0" lshp="0" lspd="0.1" ctlenvamt="0" lspd_numerator="4"/>
<elvol lspd_denominator="4" sustain="0.95" userwavefile="" pdel="0" dec="0" lamt="0" syncmode="0" latt="0" rel="0.23" amt="1" x100="0" att="0.05" lpdel="0" hold="0" lshp="0" lspd="0.1" ctlenvamt="0" lspd_numerator="4"/>
<elcut lspd_denominator="4" sustain="0.5" userwavefile="" pdel="0" dec="0.5" lamt="1" syncmode="0" latt="0" rel="0.1" amt="0" x100="0" att="0" lpdel="0" hold="0.5" lshp="0" lspd="0.01" ctlenvamt="0" lspd_numerator="4"/>
<elres lspd_denominator="4" sustain="0.5" userwavefile="" pdel="0" dec="0.5" lamt="0" syncmode="0" latt="0" rel="0.1" amt="0" x100="0" att="0" lpdel="0" hold="0.5" lshp="0" lspd="0.1" ctlenvamt="0" lspd_numerator="4"/>
</eldata>
Expand Down
2 changes: 1 addition & 1 deletion data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<instrumenttrack fxch="0" vol="59" name="Fat Reversed Kick" tab="0">
<audiofileprocessor reversed="1" looped="1" eframe="0.999949" sframe="0" amp="100" src="drums/bassdrum01.ogg"/>
<eldata fres="3" ftype="0" fcut="193" fwet="1">
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.05" latt="0" sus="0" lspd="0.1" att="0.05" pdel="0" lfosyncmode="0" lamt="0" dec="0" x100="0" lshp="0" hold="0"/>
<elcut userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
<elres userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
</eldata>
Expand Down
9 changes: 4 additions & 5 deletions data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@
<multimediaproject version="1.0" creator="LMMS" creatorversion="1.0.93" type="instrumenttracksettings">
<head/>
<instrumenttracksettings>
<instrumenttrack fxch="0" vol="75" name="Kick 4 your Subwoofer" tab="0">
<audiofileprocessor reversed="0" looped="0" eframe="0.999917" sframe="0" amp="100" src="drums/kick01.ogg"/>
<instrumenttrack fxch="0" vol="100" name="Kick 4 your Subwoofer" tab="0">
<audiofileprocessor reversed="0" looped="0" eframe="0.999917" sframe="0" amp="50" src="drums/kick01.ogg"/>
<eldata fres="2" ftype="2" fcut="58" fwet="1">
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.1" latt="0" sus="0" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.393" x100="0" lshp="0" hold="0"/>
<elcut userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
<elres userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
</eldata>
<arpeggiator chorddisabled="0" arptime="100" arprange="1" arpsyncmode="0" arpmode="0" chord="0" chordrange="1" arp="0" arp-enabled="0" chord-enabled="1" arpdisabled="1" arpdir="0" arpgate="100"/>
<arpeggiator arptime="100" arprange="1" arpsyncmode="0" arpmode="0" arp="0" arp-enabled="0" arpdisabled="1" arpdir="0" arpgate="100"/>
<midiport inputchannel="0" outputchannel="1" send="0" defvelout="0" receive="0" defvelin="0"/>
<chordcreator chorddisabled="0" arptime="100" arprange="1" arpsyncmode="0" arpmode="0" chord="0" chordrange="1" arp="0" arp-enabled="0" chord-enabled="1" arpdisabled="1" arpdir="0" arpgate="100"/>
</instrumenttrack>
</instrumenttracksettings>
</multimediaproject>
</multimediaproject>
2 changes: 1 addition & 1 deletion data/presets/AudioFileProcessor/SString.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<lmms-project version="1.0" creator="LMMS" creatorversion="1.0.93" type="instrumenttracksettings">
<head/>
<instrumenttracksettings muted="0" type="0" name="orion_string01.ogg" solo="0">
<instrumenttrack pan="0" fxch="0" pitchrange="1" pitch="0" basenote="60" vol="85">
<instrumenttrack pan="0" fxch="0" pitchrange="1" pitch="0" basenote="60" vol="100">
<instrument name="audiofileprocessor">
<audiofileprocessor reversed="0" looped="1" eframe="1" stutter="0" sframe="0" src="stringsnpads/orion_string01.ogg" amp="100"/>
</instrument>
Expand Down
2 changes: 1 addition & 1 deletion data/presets/AudioFileProcessor/orion.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<lmms-project version="1.0" creator="LMMS" creatorversion="1.0.93" type="instrumenttracksettings">
<head/>
<instrumenttracksettings muted="0" type="0" name="orion_string01.ogg" solo="0">
<instrumenttrack pan="0" fxch="0" pitchrange="1" pitch="0" basenote="59" vol="42">
<instrumenttrack pan="0" fxch="0" pitchrange="1" pitch="0" basenote="60" vol="50">
<instrument name="audiofileprocessor">
<audiofileprocessor reversed="1" looped="1" eframe="1" stutter="0" sframe="0" src="stringsnpads/orion_string01.ogg" amp="100"/>
</instrument>
Expand Down
9 changes: 9 additions & 0 deletions data/presets/BitInvader/alien_strings.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
<arpeggiator chorddisabled="1" arptime="107" arprange="1" arpsyncmode="6" arpmode="1" chord="0" chordrange="4" arp="74" arp-enabled="0" chord-enabled="0" arpdisabled="1" arpdir="0" arpgate="100"/>
<midiport inputchannel="0" outputchannel="1" send="0" receive="0"/>
<chordcreator chorddisabled="1" arptime="107" arprange="1" arpsyncmode="6" arpmode="1" chord="0" chordrange="4" arp="74" arp-enabled="0" chord-enabled="0" arpdisabled="1" arpdir="0" arpgate="100"/>
<fxchain enabled="1" numofeffects="1">
<effect name="ladspaeffect" on="1" autoquit="1" autoquit_denominator="4" autoquit_numerator="4" wet="1" autoquit_syncmode="0" gate="0">
<ladspacontrols ports="0" link="1"/>
<key>
<attribute name="file" value="dc_remove_1207"/>
<attribute name="plugin" value="dcRemove"/>
</key>
</effect>
</fxchain>
</instrumenttrack>
</instrumenttracksettings>
</multimediaproject>
4 changes: 2 additions & 2 deletions data/presets/BitInvader/bell.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<multimediaproject version="1.0" creator="LMMS" creatorversion="1.0.93" type="instrumenttracksettings">
<head/>
<instrumenttracksettings>
<instrumenttrack fxch="0" vol="59" name="bell" tab="0">
<instrumenttrack fxch="0" vol="25" name="bell" tab="0">
<bitinvader sampleLength="8" version="0.1" normalize="0" sampleShape="AAAAAPMENT8AAIA/8wQ1Py69u7P1BDW/AACAv+8ENb8=" interpolation="1"/>
<eldata fres="0.43" ftype="0" fcut="1280" fwet="0">
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.351" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0"/>
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.351" latt="0" sus="0.499" lspd="0.1" att="0.03" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0"/>
<elcut userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.676" latt="0" sus="0.499" lspd="0.1" att="0.494" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
<elres userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
</eldata>
Expand Down
9 changes: 9 additions & 0 deletions data/presets/BitInvader/drama.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
<arpeggiator chorddisabled="1" arptime="107" arprange="1" arpsyncmode="6" arpmode="1" chord="0" chordrange="4" arp="74" arp-enabled="1" chord-enabled="0" arpdisabled="0" arpdir="0" arpgate="100"/>
<midiport inputchannel="0" outputchannel="1" send="0" receive="0"/>
<chordcreator chorddisabled="1" arptime="107" arprange="1" arpsyncmode="6" arpmode="1" chord="0" chordrange="4" arp="74" arp-enabled="1" chord-enabled="0" arpdisabled="0" arpdir="0" arpgate="100"/>
<fxchain enabled="1" numofeffects="1">
<effect name="ladspaeffect" on="1" autoquit="1" autoquit_denominator="4" autoquit_numerator="4" wet="1" autoquit_syncmode="0" gate="0">
<ladspacontrols ports="0" link="1"/>
<key>
<attribute name="file" value="dc_remove_1207"/>
<attribute name="plugin" value="dcRemove"/>
</key>
</effect>
</fxchain>
</instrumenttrack>
</instrumenttracksettings>
</multimediaproject>
13 changes: 11 additions & 2 deletions data/presets/BitInvader/pluck.xpf
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,25 @@
<multimediaproject version="1.0" creator="LMMS" creatorversion="1.0.93" type="instrumenttracksettings">
<head/>
<instrumenttracksettings>
<instrumenttrack fxch="0" vol="59" name="pluck" tab="1">
<instrumenttrack fxch="0" vol="25" name="pluck" tab="1">
<bitinvader sampleLength="128" version="0.1" normalize="1" sampleShape="QAGguf+B/zwBYYA9gsHAPQF5AD5BYSA+gClAPr+5Xz7+CX8+HgWPPj1pnj5bma0+eZm8Ppdlyz60+dk+0VXoPu1x9j4EJQI/EukIPx+NDz8sCRY/OVkcP0WFIj9RfSg/XU8uP2jrMz9zXTk/fZc+P4elQz+Re0g/mh9NP6OJUT+rvVU/s7dZP7t9XT/CCWE/yVVkP89xZz/VR2o/2ulsP99Nbz/jc3E/52FzP+oNdT/tg3Y/77l3P/G3eD/zdXk/9P15P/VHej/1VXo/9Ct6P/TJeT/yLXk/8V14P+9Tdz/sF3Y/6aV0P+b/cj/iKXE/3h9vP9rpbD/VhWo/0PNnP8o3ZT/FUWI/v0VfP7gRXD+xuVg/q0NVP6OnUT+c7U0/lBdKP4wnRj+EIUI/fP89P3TLOT9rhzU/YjExP1rNLD9RXSg/zczMPc3MzD3NzMw9j8J1PY/CdT0AAAAACtcjvQrXI70K1yO9CtcjvQrXo70K16O9CtejvY/C9b2I00O/kNNHv5e3S7+fe0+/pi1Tv625Vr+0I1q/u2tdv8GRYL/HjWO/zWFmv9ILab/Xi2u/3Nttv+D9b7/k83G/57Vzv+tDdb/to3a/8Ml3v/G7eL/zd3m/9Pt5v/VFer/1VXq/9C96v/TLeb/yLXm/8VV4v+5Bd7/s73W/6WF0v+WZcr8=" interpolation="1"/>
<eldata fres="1.17" ftype="0" fcut="2400" fwet="1">
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.39" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.391" x100="0" lshp="0" hold="0"/>
<elvol userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0.39" latt="0" sus="0.999" lspd="0.1" att="0.03" pdel="0" lfosyncmode="0" lamt="0" dec="0.391" x100="0" lshp="0" hold="0"/>
<elcut userwavefile="" lpdel="0" ctlenvamt="0" amt="1" rel="0" latt="0" sus="0.999" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.18" x100="0" lshp="0" hold="0"/>
<elres userwavefile="" lpdel="0" ctlenvamt="0" amt="0" rel="0.1" latt="0" sus="0.499" lspd="0.1" att="0" pdel="0" lfosyncmode="0" lamt="0" dec="0.499" x100="0" lshp="0" hold="0.499"/>
</eldata>
<arpeggiator chorddisabled="0" arptime="100" arprange="1" arpsyncmode="0" arpmode="0" chord="0" chordrange="2" arp="0" arp-enabled="0" chord-enabled="1" arpdisabled="1" arpdir="0" arpgate="100"/>
<midiport inports="80:0 CS46XX:CS46XX" inputchannel="0" outputchannel="1" send="0" receive="1"/>
<chordcreator chorddisabled="0" arptime="100" arprange="1" arpsyncmode="0" arpmode="0" chord="0" chordrange="2" arp="0" arp-enabled="0" chord-enabled="1" arpdisabled="1" arpdir="0" arpgate="100"/>
<fxchain enabled="1" numofeffects="1">
<effect name="ladspaeffect" on="1" autoquit="1" autoquit_denominator="4" autoquit_numerator="4" wet="1" autoquit_syncmode="0" gate="0">
<ladspacontrols ports="0" link="1"/>
<key>
<attribute name="file" value="dc_remove_1207"/>
<attribute name="plugin" value="dcRemove"/>
</key>
</effect>
</fxchain>
</instrumenttrack>
</instrumenttracksettings>
</multimediaproject>
Loading

0 comments on commit fd94df8

Please sign in to comment.