├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── plugin_bug.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── ci_codestyle.yml │ ├── ci_learn_update_paylists.yml │ ├── ci_linux_au4.yml │ ├── ci_macos_au4.yml │ ├── ci_windows_au4.yml │ ├── cmake.yml │ ├── package_linux.yml │ └── winget.yml ├── .gitignore ├── ABOUT-NLS ├── BUILDING.md ├── CHANGELOG.txt ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL ├── LICENSE.txt ├── README.md ├── au4 ├── .gitignore ├── CMakeLists.txt ├── SetupConfigure.cmake ├── buildscripts │ ├── .gitignore │ ├── ci │ │ ├── checkcodestyle │ │ │ ├── .gitignore │ │ │ └── ci_fetch.cmake │ │ ├── common │ │ │ ├── ci_configure.cmake │ │ │ ├── make_artifact_name_env.cmake │ │ │ ├── make_branch_env.cmake │ │ │ ├── make_build_mode_env.cmake │ │ │ ├── make_build_number_env.cmake │ │ │ ├── make_revision_env.cmake │ │ │ └── make_version_env.cmake │ │ ├── learn │ │ │ ├── make_playlists_info_file.sh │ │ │ ├── make_youtube_playlist_info.py │ │ │ └── push_file_to_s3.sh │ │ ├── linux │ │ │ ├── ci_all.cmake │ │ │ ├── ci_all.sh │ │ │ ├── ci_build.cmake │ │ │ ├── make_appimage.sh │ │ │ ├── package.cmake │ │ │ └── setup.sh │ │ ├── macos │ │ │ ├── ci_build.cmake │ │ │ ├── package.cmake │ │ │ └── setup.sh │ │ ├── tools │ │ │ └── s3_install.sh │ │ └── windows │ │ │ ├── ci_all.cmake │ │ │ ├── ci_all.sh │ │ │ ├── ci_build.cmake │ │ │ ├── package.cmake │ │ │ └── setup.cmake │ ├── cmake │ │ ├── SetupBuildEnvironment.cmake │ │ └── SetupDependencies.cmake │ └── packaging │ │ ├── Linux+BSD │ │ ├── SetupAppImagePackaging.cmake │ │ ├── audacity.svg │ │ ├── mscore.1.preview.sh │ │ ├── musescore.xml.in │ │ ├── org.musescore.MuseScore.appdata.xml.in │ │ ├── org.musescore.MuseScore.desktop.in │ │ └── portable │ │ │ ├── ARM │ │ │ ├── jessie-crosscompile-armhf.Dockerfile │ │ │ ├── jessie-crosscompile-armhf.cmake │ │ │ └── jessie-packaging-armhf.Dockerfile │ │ │ ├── AppRun.in │ │ │ ├── CMakeLists.txt │ │ │ ├── copy-libs │ │ │ ├── findlib.c │ │ │ ├── ldd-recursive │ │ │ ├── portable-utils.in │ │ │ ├── qt.conf │ │ │ ├── rm-empty-dirs │ │ │ └── x86_64 │ │ │ └── Dockerfile │ │ └── MacOS │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── macosx_entitlements.plist │ │ ├── make_dmg.sh │ │ ├── musescore-dmg-background.tiff │ │ └── qt.conf ├── ci_build.bat ├── ci_build.cmake ├── src │ ├── CMakeLists.txt │ ├── app │ │ ├── CMakeLists.txt │ │ ├── app.cpp │ │ ├── app.h │ │ ├── app.qrc │ │ ├── commandlineparser.cpp │ │ ├── commandlineparser.h │ │ ├── configs │ │ │ ├── dark.cfg │ │ │ ├── high_contrast_black.cfg │ │ │ ├── high_contrast_white.cfg │ │ │ ├── learn.cfg │ │ │ └── light.cfg │ │ └── main.cpp │ ├── appshell │ │ ├── CMakeLists.txt │ │ ├── appshell.qrc │ │ ├── appshellmodule.cpp │ │ ├── appshellmodule.h │ │ ├── appshelltypes.h │ │ ├── iapplicationactioncontroller.h │ │ ├── iappshellconfiguration.h │ │ ├── internal │ │ │ ├── applicationactioncontroller.cpp │ │ │ ├── applicationactioncontroller.h │ │ │ ├── applicationuiactions.cpp │ │ │ ├── applicationuiactions.h │ │ │ ├── appshellconfiguration.cpp │ │ │ ├── appshellconfiguration.h │ │ │ ├── framelesswindowcontroller.cpp │ │ │ ├── framelesswindowcontroller.h │ │ │ ├── isessionsmanager.h │ │ │ ├── platform │ │ │ │ └── win │ │ │ │ │ ├── winframelesswindowcontroller.cpp │ │ │ │ │ └── winframelesswindowcontroller.h │ │ │ ├── sessionsmanager.cpp │ │ │ ├── sessionsmanager.h │ │ │ ├── startupscenario.cpp │ │ │ └── startupscenario.h │ │ ├── istartupscenario.h │ │ ├── qml │ │ │ ├── AboutDialog.qml │ │ │ ├── AboutMusicXMLDialog.qml │ │ │ ├── AppWindow.qml │ │ │ ├── DevTools │ │ │ │ ├── CorruptScore │ │ │ │ │ └── CorruptScoreDevTools.qml │ │ │ │ ├── CrashHandler │ │ │ │ │ └── CrashHandlerDevTools.qml │ │ │ │ ├── DevToolsMenu.qml │ │ │ │ ├── DevToolsPage.qml │ │ │ │ ├── Extensions │ │ │ │ │ └── ExtensionsListView.qml │ │ │ │ ├── Gallery │ │ │ │ │ └── GeneralComponentsGallery.qml │ │ │ │ ├── Interactive │ │ │ │ │ ├── InteractiveTests.qml │ │ │ │ │ └── SampleDialog.qml │ │ │ │ ├── KeyNav │ │ │ │ │ ├── KeyNavExample.qml │ │ │ │ │ ├── KeyNavSection.qml │ │ │ │ │ └── KeyNavSubSection.qml │ │ │ │ ├── MPE │ │ │ │ │ └── ArticulationsProfileEditorView.qml │ │ │ │ └── Preferences │ │ │ │ │ └── SettingsPage.qml │ │ │ ├── FirstLaunchSetup │ │ │ │ ├── FirstLaunchSetupDialog.qml │ │ │ │ ├── Page.qml │ │ │ │ ├── PlaybackPage.qml │ │ │ │ ├── ThemesPage.qml │ │ │ │ ├── TutorialsPage.qml │ │ │ │ └── resources │ │ │ │ │ ├── MuseSounds.png │ │ │ │ │ └── VideoTutorials.png │ │ │ ├── HomePage │ │ │ │ ├── HomeMenu.qml │ │ │ │ ├── HomePage.qml │ │ │ │ └── PluginsPage.qml │ │ │ ├── Main.qml │ │ │ ├── Main.wasm.qml │ │ │ ├── MainToolBar.qml │ │ │ ├── Preferences │ │ │ │ ├── AdvancedPreferencesPage.qml │ │ │ │ ├── AppearancePreferencesPage.qml │ │ │ │ ├── BraillePreferencesPage.qml │ │ │ │ ├── CanvasPreferencesPage.qml │ │ │ │ ├── FoldersPreferencesPage.qml │ │ │ │ ├── GeneralPreferencesPage.qml │ │ │ │ ├── ImportPreferencesPage.qml │ │ │ │ ├── MidiDeviceMappingPreferencesPage.qml │ │ │ │ ├── NoteInputPreferencesPage.qml │ │ │ │ ├── PlaybackPreferencesPage.qml │ │ │ │ ├── PreferencesDialog.qml │ │ │ │ ├── PreferencesPage.qml │ │ │ │ ├── SaveAndPublishPreferencesPage.qml │ │ │ │ ├── ScorePreferencesPage.qml │ │ │ │ ├── ShortcutsPreferencesPage.qml │ │ │ │ ├── UpdatePreferencesPage.qml │ │ │ │ └── internal │ │ │ │ │ ├── AccentColorsSection.qml │ │ │ │ │ ├── AdvancedTopSection.qml │ │ │ │ │ ├── AudioApiSection.qml │ │ │ │ │ ├── AudioEngineSection.qml │ │ │ │ │ ├── AutoSaveSection.qml │ │ │ │ │ ├── AutomaticUpdateSection.qml │ │ │ │ │ ├── BaseSection.qml │ │ │ │ │ ├── BrailleAdvancedSection.qml │ │ │ │ │ ├── BrailleSection.qml │ │ │ │ │ ├── CharsetsSection.qml │ │ │ │ │ ├── ColorAndWallpaperSection.qml │ │ │ │ │ ├── ComboBoxWithTitle.qml │ │ │ │ │ ├── CommonAudioApiConfiguration.qml │ │ │ │ │ ├── DefaultFilesSection.qml │ │ │ │ │ ├── FoldersSection.qml │ │ │ │ │ ├── ImportStyleSection.qml │ │ │ │ │ ├── IncrementalPropertyControlWithTitle.qml │ │ │ │ │ ├── KeyboardLayoutsSection.qml │ │ │ │ │ ├── LanguagesSection.qml │ │ │ │ │ ├── MeiSection.qml │ │ │ │ │ ├── MidiDevicesSection.qml │ │ │ │ │ ├── MidiSection.qml │ │ │ │ │ ├── MiscellaneousSection.qml │ │ │ │ │ ├── MixerSection.qml │ │ │ │ │ ├── MusicXmlSection.qml │ │ │ │ │ ├── NoteInputPlaySection.qml │ │ │ │ │ ├── NoteInputSection.qml │ │ │ │ │ ├── PreferencesButtonsPanel.qml │ │ │ │ │ ├── PreferencesMenu.qml │ │ │ │ │ ├── ProgramStartSection.qml │ │ │ │ │ ├── PublishMuseScoreComSection.qml │ │ │ │ │ ├── RemoteControlSection.qml │ │ │ │ │ ├── SaveToCloudSection.qml │ │ │ │ │ ├── ScrollPagesSection.qml │ │ │ │ │ ├── ThemeAdditionalOptionsSection.qml │ │ │ │ │ ├── ThemesSection.qml │ │ │ │ │ ├── UiColorsSection.qml │ │ │ │ │ ├── UiFontSection.qml │ │ │ │ │ └── ZoomSection.qml │ │ │ ├── ProjectPage │ │ │ │ ├── ProjectPage.qml │ │ │ │ └── ProjectStatusBar.qml │ │ │ ├── PublishPage │ │ │ │ ├── PublishPage.qml │ │ │ │ └── PublishToolBar.qml │ │ │ ├── WindowContent.qml │ │ │ ├── dockwindow │ │ │ │ ├── DockFloatingWindow.qml │ │ │ │ ├── DockFrame.qml │ │ │ │ ├── DockPage.qml │ │ │ │ ├── DockPanel.qml │ │ │ │ ├── DockPanelTab.qml │ │ │ │ ├── DockSeparator.qml │ │ │ │ ├── DockTitleBar.qml │ │ │ │ ├── DockToolBar.qml │ │ │ │ ├── DockWidget.qml │ │ │ │ └── DockingHolder.qml │ │ │ ├── platform │ │ │ │ ├── AppButtonBackground.qml │ │ │ │ ├── AppMenuBar.qml │ │ │ │ ├── PlatformMenuBar.qml │ │ │ │ ├── linux │ │ │ │ │ └── Main.qml │ │ │ │ ├── mac │ │ │ │ │ └── Main.qml │ │ │ │ └── win │ │ │ │ │ ├── AppSystemButtons.qml │ │ │ │ │ ├── AppTitleBar.qml │ │ │ │ │ └── Main.qml │ │ │ ├── resources │ │ │ │ └── mu_logo.svg │ │ │ └── shared │ │ │ │ ├── AccentColorsList.qml │ │ │ │ ├── ThemeSamplesList.qml │ │ │ │ └── internal │ │ │ │ └── ThemeSample.qml │ │ ├── resources │ │ │ ├── LoadingScreen.svg │ │ │ └── win_opengl_buglist.json │ │ └── view │ │ │ ├── aboutmodel.cpp │ │ │ ├── aboutmodel.h │ │ │ ├── appmenumodel.cpp │ │ │ ├── appmenumodel.h │ │ │ ├── devtools │ │ │ ├── settingslistmodel.cpp │ │ │ └── settingslistmodel.h │ │ │ ├── firstlaunchsetup │ │ │ ├── firstlaunchsetupmodel.cpp │ │ │ ├── firstlaunchsetupmodel.h │ │ │ ├── themespagemodel.cpp │ │ │ └── themespagemodel.h │ │ │ ├── framelesswindow │ │ │ ├── framelesswindowmodel.cpp │ │ │ └── framelesswindowmodel.h │ │ │ ├── internal │ │ │ ├── iappmenumodelhook.h │ │ │ ├── maintoolbarmodel.cpp │ │ │ ├── maintoolbarmodel.h │ │ │ ├── platform │ │ │ │ └── macos │ │ │ │ │ ├── macosappmenumodelhook.h │ │ │ │ │ ├── macosappmenumodelhook.mm │ │ │ │ │ ├── macosscrollinghook.cpp │ │ │ │ │ └── macosscrollinghook.h │ │ │ └── splashscreen │ │ │ │ ├── loadingscreenview.cpp │ │ │ │ ├── loadingscreenview.h │ │ │ │ ├── newinstanceloadingscreenview.cpp │ │ │ │ ├── newinstanceloadingscreenview.h │ │ │ │ ├── splashscreen.cpp │ │ │ │ └── splashscreen.h │ │ │ ├── mainwindowtitleprovider.cpp │ │ │ ├── mainwindowtitleprovider.h │ │ │ ├── navigableappmenumodel.cpp │ │ │ ├── navigableappmenumodel.h │ │ │ ├── notationstatusbarmodel.cpp │ │ │ ├── notationstatusbarmodel.h │ │ │ ├── preferences │ │ │ ├── advancedpreferencesmodel.cpp │ │ │ ├── advancedpreferencesmodel.h │ │ │ ├── appearancepreferencesmodel.cpp │ │ │ ├── appearancepreferencesmodel.h │ │ │ ├── braillepreferencesmodel.cpp │ │ │ ├── braillepreferencesmodel.h │ │ │ ├── canvaspreferencesmodel.cpp │ │ │ ├── canvaspreferencesmodel.h │ │ │ ├── commonaudioapiconfigurationmodel.cpp │ │ │ ├── commonaudioapiconfigurationmodel.h │ │ │ ├── folderspreferencesmodel.cpp │ │ │ ├── folderspreferencesmodel.h │ │ │ ├── generalpreferencesmodel.cpp │ │ │ ├── generalpreferencesmodel.h │ │ │ ├── importpreferencesmodel.cpp │ │ │ ├── importpreferencesmodel.h │ │ │ ├── noteinputpreferencesmodel.cpp │ │ │ ├── noteinputpreferencesmodel.h │ │ │ ├── playbackpreferencesmodel.cpp │ │ │ ├── playbackpreferencesmodel.h │ │ │ ├── preferencepageitem.cpp │ │ │ ├── preferencepageitem.h │ │ │ ├── preferencesmodel.cpp │ │ │ ├── preferencesmodel.h │ │ │ ├── saveandpublishpreferencesmodel.cpp │ │ │ ├── saveandpublishpreferencesmodel.h │ │ │ ├── scorepreferencesmodel.cpp │ │ │ ├── scorepreferencesmodel.h │ │ │ ├── updatepreferencesmodel.cpp │ │ │ └── updatepreferencesmodel.h │ │ │ ├── projectpagemodel.cpp │ │ │ ├── projectpagemodel.h │ │ │ ├── publish │ │ │ ├── publishtoolbarmodel.cpp │ │ │ └── publishtoolbarmodel.h │ │ │ ├── windowdroparea.cpp │ │ │ └── windowdroparea.h │ ├── au3wrap │ │ ├── CMakeLists.txt │ │ ├── au3wrapmodule.cpp │ │ ├── au3wrapmodule.h │ │ ├── audacity3playback.cpp │ │ ├── audacity3playback.h │ │ ├── audacity3project.cpp │ │ ├── audacity3project.h │ │ ├── iau3wavepainter.h │ │ ├── iaudacity3playback.h │ │ ├── internal │ │ │ ├── WaveformScale.cpp │ │ │ ├── WaveformScale.h │ │ │ ├── au3wavepainter.cpp │ │ │ ├── au3wavepainter.h │ │ │ ├── domaccessor.cpp │ │ │ ├── domaccessor.h │ │ │ ├── domconverter.cpp │ │ │ ├── domconverter.h │ │ │ ├── processinginteraction.cpp │ │ │ ├── processinginteraction.h │ │ │ ├── wxlogwrap.cpp │ │ │ └── wxlogwrap.h │ │ ├── mocks │ │ │ ├── au3settingsmock.cpp │ │ │ └── au3settingsmock.h │ │ ├── thirdparty │ │ │ ├── pffft │ │ │ │ └── CMakeLists.txt │ │ │ ├── portmixer │ │ │ │ └── CMakeLists.txt │ │ │ ├── soxr │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── soxr-config.h.in │ │ │ └── sqlite │ │ │ │ └── CMakeLists.txt │ │ └── wxtypes_convert.h │ ├── context │ │ ├── CMakeLists.txt │ │ ├── contextmodule.cpp │ │ ├── contextmodule.h │ │ ├── iglobalcontext.h │ │ ├── internal │ │ │ ├── globalcontext.cpp │ │ │ ├── globalcontext.h │ │ │ ├── uicontextresolver.cpp │ │ │ └── uicontextresolver.h │ │ ├── iuicontextresolver.h │ │ ├── shortcutcontext.h │ │ └── uicontext.h │ ├── framework │ │ └── uicomponents │ │ │ └── view │ │ │ └── abstractmenumodel.cpp │ ├── playback │ │ ├── CMakeLists.txt │ │ ├── audiotypes.h │ │ ├── internal │ │ │ ├── playbackcontroller.cpp │ │ │ ├── playbackcontroller.h │ │ │ ├── playbackuiactions.cpp │ │ │ └── playbackuiactions.h │ │ ├── iplaybackcontroller.h │ │ ├── playback.qrc │ │ ├── playbackmodule.cpp │ │ ├── playbackmodule.h │ │ ├── qml │ │ │ └── Audacity │ │ │ │ └── Playback │ │ │ │ ├── PlaybackToolBar.qml │ │ │ │ ├── internal │ │ │ │ ├── CustomiseControlPanel.qml │ │ │ │ ├── CustomiseView.qml │ │ │ │ ├── PlaybackToolBarActionDelegate.qml │ │ │ │ └── PlaybackToolBarCustomisePopup.qml │ │ │ │ └── qmldir │ │ └── view │ │ │ └── toolbars │ │ │ ├── playbacktoolbarcustomiseitem.cpp │ │ │ ├── playbacktoolbarcustomiseitem.h │ │ │ ├── playbacktoolbarcustomisemodel.cpp │ │ │ ├── playbacktoolbarcustomisemodel.h │ │ │ ├── playbacktoolbarmodel.cpp │ │ │ └── playbacktoolbarmodel.h │ ├── processing │ │ ├── CMakeLists.txt │ │ ├── dom │ │ │ ├── clip.cpp │ │ │ ├── clip.h │ │ │ ├── processingproject.cpp │ │ │ ├── processingproject.h │ │ │ ├── track.h │ │ │ ├── wave.cpp │ │ │ └── wave.h │ │ ├── iprocessinginteraction.h │ │ ├── processingmodule.cpp │ │ ├── processingmodule.h │ │ └── processingtypes.h │ ├── project │ │ ├── CMakeLists.txt │ │ ├── iaudacityproject.h │ │ ├── imscmetareader.h │ │ ├── internal │ │ │ ├── audacityproject.cpp │ │ │ ├── audacityproject.h │ │ │ ├── iopensaveprojectscenario.h │ │ │ ├── opensaveprojectscenario.cpp │ │ │ ├── opensaveprojectscenario.h │ │ │ ├── platform │ │ │ │ ├── macos │ │ │ │ │ ├── macosrecentfilescontroller.h │ │ │ │ │ └── macosrecentfilescontroller.mm │ │ │ │ └── windows │ │ │ │ │ ├── windowsrecentfilescontroller.cpp │ │ │ │ │ └── windowsrecentfilescontroller.h │ │ │ ├── projectactionscontroller.cpp │ │ │ ├── projectactionscontroller.h │ │ │ ├── projectautosaver.cpp │ │ │ ├── projectautosaver.h │ │ │ ├── projectconfiguration.cpp │ │ │ ├── projectconfiguration.h │ │ │ ├── projectuiactions.cpp │ │ │ ├── projectuiactions.h │ │ │ ├── recentfilescontroller.cpp │ │ │ └── recentfilescontroller.h │ │ ├── iprojectautosaver.h │ │ ├── iprojectconfiguration.h │ │ ├── iprojectcreator.h │ │ ├── iprojectfilescontroller.h │ │ ├── irecentfilescontroller.h │ │ ├── project.qrc │ │ ├── projecterrors.h │ │ ├── projectmodule.cpp │ │ ├── projectmodule.h │ │ ├── qml │ │ │ └── Audacity │ │ │ │ └── Project │ │ │ │ ├── AlsoShareAudioComDialog.qml │ │ │ │ ├── AskSaveLocationTypeDialog.qml │ │ │ │ ├── Message.qml │ │ │ │ ├── NewProjectDialog.qml │ │ │ │ ├── ProjectPropertiesDialog.qml │ │ │ │ ├── ProjectUploadedDialog.qml │ │ │ │ ├── ProjectsGridView.qml │ │ │ │ ├── ProjectsListView.qml │ │ │ │ ├── ProjectsPage.qml │ │ │ │ ├── ProjectsView.qml │ │ │ │ ├── SaveToCloudDialog.qml │ │ │ │ ├── UploadProgressDialog.qml │ │ │ │ ├── internal │ │ │ │ ├── NewProject │ │ │ │ │ ├── GeneralInfoItem.qml │ │ │ │ │ ├── GeneralInfoView.qml │ │ │ │ │ ├── ProjectInfoPage.qml │ │ │ │ │ └── TitleListView.qml │ │ │ │ ├── ProjectsPage │ │ │ │ │ ├── CloudProjectIndicatorButton.qml │ │ │ │ │ ├── ProjectGridItem.qml │ │ │ │ │ ├── ProjectListItem.qml │ │ │ │ │ ├── ProjectThumbnail.qml │ │ │ │ │ └── RecentProjectsView.qml │ │ │ │ ├── Properties │ │ │ │ │ ├── ProjectPropertiesFileInfoPanel.qml │ │ │ │ │ ├── ProjectPropertiesView.qml │ │ │ │ │ └── PropertyItem.qml │ │ │ │ └── SaveToCloud │ │ │ │ │ ├── SaveLocationOption.qml │ │ │ │ │ └── images │ │ │ │ │ ├── Cloud.png │ │ │ │ │ └── Laptop.png │ │ │ │ └── qmldir │ │ ├── resources │ │ │ ├── AudioCom_Waveform.png │ │ │ ├── CloudProject.svg │ │ │ └── PublishProjects.png │ │ ├── types │ │ │ ├── projectmeta.h │ │ │ └── projecttypes.h │ │ └── view │ │ │ ├── abstractprojectsmodel.cpp │ │ │ ├── abstractprojectsmodel.h │ │ │ ├── cloudprojectsmodel.cpp │ │ │ ├── cloudprojectsmodel.h │ │ │ ├── cloudprojectstatuswatcher.cpp │ │ │ ├── cloudprojectstatuswatcher.h │ │ │ ├── newprojectmodel.cpp │ │ │ ├── newprojectmodel.h │ │ │ ├── pixmapprojectthumbnailview.cpp │ │ │ ├── pixmapprojectthumbnailview.h │ │ │ ├── projectspagemodel.cpp │ │ │ ├── projectspagemodel.h │ │ │ ├── projectthumbnailloader.cpp │ │ │ ├── projectthumbnailloader.h │ │ │ ├── recentprojectsmodel.cpp │ │ │ └── recentprojectsmodel.h │ └── projectscene │ │ ├── CMakeLists.txt │ │ ├── projectscene.qrc │ │ ├── projectscenemodule.cpp │ │ ├── projectscenemodule.h │ │ ├── qml │ │ └── Audacity │ │ │ └── ProjectScene │ │ │ ├── ProjectToolBar.qml │ │ │ ├── TracksPanel.qml │ │ │ ├── clipsview │ │ │ ├── ClipItem.qml │ │ │ ├── Timeline.qml │ │ │ ├── TrackClipsItem.qml │ │ │ └── TracksClipsView.qml │ │ │ ├── internal │ │ │ ├── AddNewTrackPopup.qml │ │ │ ├── TrackItem.qml │ │ │ ├── TracksControlPanel.qml │ │ │ └── audio │ │ │ │ ├── KnobControl.qml │ │ │ │ └── VolumePressureMeter.qml │ │ │ └── qmldir │ │ ├── types │ │ └── projectscenetypes.h │ │ └── view │ │ ├── clipsview │ │ ├── clipslistmodel.cpp │ │ ├── clipslistmodel.h │ │ ├── timelinecontext.cpp │ │ ├── timelinecontext.h │ │ ├── trackslistclipsmodel.cpp │ │ ├── trackslistclipsmodel.h │ │ ├── waveview.cpp │ │ └── waveview.h │ │ ├── toolbars │ │ ├── projecttoolbarmodel.cpp │ │ └── projecttoolbarmodel.h │ │ └── trackspanel │ │ ├── trackitem.cpp │ │ ├── trackitem.h │ │ ├── trackslistmodel.cpp │ │ └── trackslistmodel.h └── version.cmake ├── audacity.dox ├── audacity.dox.in ├── cmake-proxies ├── CMakeLists.txt ├── README.txt ├── cmake-modules │ ├── AudacityCodeSigning.cmake │ ├── AudacityDependencies.cmake │ ├── AudacityFunctions.cmake │ ├── AudacityInnoSetup.cmake │ ├── AudacityTesting.cmake │ ├── CopySourceVariables.cmake │ ├── DependenciesList.cmake │ ├── FindCrashpadDebug.cmake │ ├── FindFLAC.cmake │ ├── FindJACK.cmake │ ├── FindOSS.cmake │ ├── FindOgg.cmake │ ├── FindOpus.cmake │ ├── FindPortAudio.cmake │ ├── FindPortMidi.cmake │ ├── FindSndFile.cmake │ ├── FindVorbis.cmake │ ├── FindWavPack.cmake │ ├── Findlibid3tag.cmake │ ├── Findlibmp3lame.cmake │ ├── Findlibuuid.cmake │ ├── Findmpg123.cmake │ ├── Findopusfile.cmake │ ├── Findvst3sdk.cmake │ ├── FindwxWidgets.cmake │ ├── MacOSXBundleInfo.plist.in │ ├── Package.cmake │ ├── PrintProperties.cmake │ ├── Version.cmake │ └── dependencies │ │ ├── curl.cmake │ │ ├── expat.cmake │ │ ├── mpg123.cmake │ │ ├── rapidjson.cmake │ │ ├── wxwidgets.cmake │ │ └── zlib.cmake ├── libsbsms │ ├── CMakeLists.txt │ └── config.h.in ├── libscorealign │ └── CMakeLists.txt ├── libsoxr │ ├── CMakeLists.txt │ └── soxr-config.h.in ├── libvamp │ └── CMakeLists.txt ├── lv2 │ ├── CMakeLists.txt │ ├── lilv_config.h.in │ ├── serd_config.h.in │ ├── sord_config.h.in │ ├── sratom_config.h.in │ └── suil_config.h.in ├── pffft │ └── CMakeLists.txt ├── portburn │ └── CMakeLists.txt ├── portsmf │ └── CMakeLists.txt ├── soundtouch │ ├── CMakeLists.txt │ └── soundtouch_config.h.in ├── sqlite │ └── CMakeLists.txt └── twolame │ ├── CMakeLists.txt │ └── config.h.in ├── conan ├── conan_runner.py ├── conanfile.py ├── helpers │ ├── conan_environment.py │ ├── directories.py │ ├── profiles.py │ ├── remotes.py │ └── version.py ├── profile_overrides_minsizerel.txt ├── profile_overrides_release.txt └── profile_overrides_relwithdebinfo.txt ├── crashreporter ├── CMakeLists.txt ├── CrashReportApp.cpp ├── CrashReportApp.h └── warning.xpm ├── dox2-src ├── CrossPlatform.dox2 ├── Dependencies.dox2 ├── ExceptionSafety.dox2 ├── InsideNyquist.dox2 ├── MainPage.dox2 ├── OtherHeaders.dox2 ├── ShuttleSystem.dox2 ├── Themability.dox2 ├── WidgetMigration.dox2 ├── WxWishlist.dox2 └── examples.hh ├── help ├── CMakeLists.txt ├── DownloadManual.cmake ├── audacity.1 └── audacity.appdata.xml ├── images ├── Arrow.xpm ├── Audacity-splash.xpm ├── AudacityLogo.png ├── AudacityLogo.xpm ├── AudacityLogo48x48.xpm ├── AudacityLogoAlpha.xpm ├── AudacityLogoWithName.xpm ├── Audacity_Logo_large.svg ├── CMakeLists.txt ├── ControlButtons │ └── degimpify ├── Cursors.h ├── Cursors32 │ ├── BandWidthCursor.xpm │ ├── BottomFrequencyCursor.xpm │ ├── ClipStretchLeft.xpm │ ├── ClipStretchRight.xpm │ ├── ClipTrimLeft.xpm │ ├── ClipTrimRight.xpm │ ├── CrosshairCursor.xpm │ ├── DisabledCursor.xpm │ ├── DrawCursor.xpm │ ├── EnvCursor.xpm │ ├── IBeamCursor.xpm │ ├── LabelCursorLeft.xpm │ ├── LabelCursorRight.xpm │ ├── RearrangeCursor.xpm │ ├── RearrangingCursor.xpm │ ├── SelectionLeft.xpm │ ├── SelectionRight.xpm │ ├── StretchCursor.xpm │ ├── StretchLeftCursor.xpm │ ├── StretchRightCursor.xpm │ ├── SubViewsCursor.xpm │ ├── TimeCursor.xpm │ ├── TopFrequencyCursor.xpm │ ├── ZoomInCursor.xpm │ └── ZoomOutCursor.xpm ├── EditButtons │ └── degimpify ├── Effect.h ├── EffectRack │ └── EffectRack.h ├── Empty9x16.xpm ├── Help.xpm ├── MicMenu.xpm ├── MusicalInstruments.h ├── MusicalInstruments │ ├── _default_instrument.xpm │ ├── acoustic_guitar_gtr.xpm │ ├── acoustic_piano_pno.xpm │ ├── back_vocal_bg_vox.xpm │ ├── clap.xpm │ ├── drums_dr.xpm │ ├── electric_bass_guitar_bs_gtr.xpm │ ├── electric_guitar_gtr.xpm │ ├── electric_piano_pno_key.xpm │ ├── kick.xpm │ ├── loop.xpm │ ├── organ_org.xpm │ ├── perc.xpm │ ├── sax.xpm │ ├── snare.xpm │ ├── string_violin_cello.xpm │ ├── synth.xpm │ ├── tambo.xpm │ ├── trumpet_horn.xpm │ ├── turntable.xpm │ ├── vibraphone_vibes.xpm │ └── vocal_vox.xpm ├── SpeakerMenu.xpm ├── TranscriptionImages │ └── degimpify ├── WhatsNewBtn.jpeg.h ├── audacity.svg ├── gnome-mime-application-x-audacity-project.xpm └── icons │ ├── 16x16 │ ├── audacity.png │ └── audacity16.xpm │ ├── 22x22 │ └── audacity.png │ ├── 24x24 │ └── audacity.png │ ├── 32x32 │ ├── audacity.png │ └── audacity32.xpm │ └── 48x48 │ ├── audacity.png │ └── audacity.xpm ├── include └── audacity │ └── Types.h ├── lib-src ├── audacity-patches.txt ├── libnyquist │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.txt │ ├── nyquist │ │ ├── Readme.txt │ │ ├── cmt │ │ │ ├── cext.c │ │ │ ├── cext.h │ │ │ ├── cleanup.c │ │ │ ├── cleanup.h │ │ │ ├── cmdline.c │ │ │ ├── cmdline.h │ │ │ ├── cmtcmd.c │ │ │ ├── cmtcmd.h │ │ │ ├── cmtio.c │ │ │ ├── cmtio.h │ │ │ ├── hash.h │ │ │ ├── hashrout.h │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── mfmidi.h │ │ │ ├── midibuff.h │ │ │ ├── midicode.h │ │ │ ├── midierr.h │ │ │ ├── midifile.c │ │ │ ├── midifile.h │ │ │ ├── midifns.c │ │ │ ├── midifns.h │ │ │ ├── midimgr.c │ │ │ ├── midimgr.h │ │ │ ├── moxc.c │ │ │ ├── moxc.h │ │ │ ├── musiprog.h │ │ │ ├── pitch.h │ │ │ ├── record.c │ │ │ ├── record.h │ │ │ ├── seq.c │ │ │ ├── seq.h │ │ │ ├── seqdecls.h │ │ │ ├── seqmread.c │ │ │ ├── seqmread.h │ │ │ ├── seqmwrite.c │ │ │ ├── seqmwrite.h │ │ │ ├── seqread.c │ │ │ ├── seqread.h │ │ │ ├── seqwrite.c │ │ │ ├── seqwrite.h │ │ │ ├── swlogic.h │ │ │ ├── tempomap.c │ │ │ ├── tempomap.h │ │ │ ├── timebase.c │ │ │ ├── timebase.h │ │ │ ├── userio.c │ │ │ └── userio.h │ │ ├── cmupv │ │ │ └── src │ │ │ │ ├── cmupv.c │ │ │ │ ├── cmupv.h │ │ │ │ ├── cmupvdbg.c │ │ │ │ ├── cmupvdbg.h │ │ │ │ ├── internal.c │ │ │ │ └── internal.h │ │ ├── ffts │ │ │ ├── Matlab-testing │ │ │ │ ├── conv2dTest.c │ │ │ │ ├── conv2dtest.m │ │ │ │ ├── convTest.c │ │ │ │ ├── convtest.m │ │ │ │ ├── rfft2dTestML.c │ │ │ │ └── rfft2dTestML.m │ │ │ ├── Numerical-Recipes-testing │ │ │ │ ├── fftTest.c │ │ │ │ ├── fftTest2d.c │ │ │ │ ├── fftTest3d.c │ │ │ │ ├── rfftTest.c │ │ │ │ └── rfftTest2d.c │ │ │ ├── README.txt │ │ │ ├── Timing-code │ │ │ │ ├── fftTiming.c │ │ │ │ └── rfftTiming.c │ │ │ ├── abstract │ │ │ └── src │ │ │ │ ├── dxpose.c │ │ │ │ ├── dxpose.h │ │ │ │ ├── fft2d.c │ │ │ │ ├── fft2d.h │ │ │ │ ├── fftext.c │ │ │ │ ├── fftext.h │ │ │ │ ├── fftlib.c │ │ │ │ ├── fftlib.h │ │ │ │ ├── files │ │ │ │ ├── matlib.c │ │ │ │ └── matlib.h │ │ ├── license.txt │ │ ├── nyqsrc │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ ├── avg.c │ │ │ ├── avg.h │ │ │ ├── compose.c │ │ │ ├── compose.h │ │ │ ├── convolve.c │ │ │ ├── convolve.h │ │ │ ├── cque.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── downsample.c │ │ │ ├── downsample.h │ │ │ ├── exitpa.h │ │ │ ├── f0.cpp │ │ │ ├── f0.h │ │ │ ├── falloc.c │ │ │ ├── falloc.h │ │ │ ├── ffilterkit.c │ │ │ ├── ffilterkit.h │ │ │ ├── fft-rbd.c │ │ │ ├── fft.c │ │ │ ├── fft.h │ │ │ ├── fftr4.c │ │ │ ├── fftw.h │ │ │ ├── fresample.h │ │ │ ├── fsmallfilter.h │ │ │ ├── handlers.c │ │ │ ├── inverse.c │ │ │ ├── inverse.h │ │ │ ├── local.c │ │ │ ├── localdefs.h │ │ │ ├── localptrs.h │ │ │ ├── lpanal.c │ │ │ ├── lpanal.h │ │ │ ├── multiread.c │ │ │ ├── multiread.h │ │ │ ├── multiseq.c │ │ │ ├── multiseq.h │ │ │ ├── nfilterkit.c │ │ │ ├── nfilterkit.h │ │ │ ├── nyq-osc-server.c │ │ │ ├── nyq-osc-server.h │ │ │ ├── nyx.c │ │ │ ├── nyx.h │ │ │ ├── oldyin.c │ │ │ ├── oldyin.h │ │ │ ├── phasevocoder.c │ │ │ ├── phasevocoder.h │ │ │ ├── probe.c │ │ │ ├── probe.h │ │ │ ├── pvshell.c │ │ │ ├── pvshell.h │ │ │ ├── resamp.c │ │ │ ├── resamp.h │ │ │ ├── resampv.c │ │ │ ├── resampv.h │ │ │ ├── rfftw.h │ │ │ ├── samples.c │ │ │ ├── samples.h │ │ │ ├── seqext.c │ │ │ ├── seqext.h │ │ │ ├── seqfn.cl │ │ │ ├── seqfn.wcl │ │ │ ├── seqfnint.c │ │ │ ├── seqfnint.lsp │ │ │ ├── seqfnintdefs.h │ │ │ ├── seqfnintptrs.h │ │ │ ├── seqinterf.c │ │ │ ├── seqinterf.h │ │ │ ├── sliderdata.c │ │ │ ├── sliderdata.h │ │ │ ├── sndfail.c │ │ │ ├── sndfmt.h │ │ │ ├── sndfn.cl │ │ │ ├── sndfn.wcl │ │ │ ├── sndfnint.c │ │ │ ├── sndfnint.lsp │ │ │ ├── sndfnintdefs.h │ │ │ ├── sndfnintptrs.h │ │ │ ├── sndmax.c │ │ │ ├── sndmax.h │ │ │ ├── sndread.c │ │ │ ├── sndread.h │ │ │ ├── sndseq.c │ │ │ ├── sndseq.h │ │ │ ├── sndsliders.c │ │ │ ├── sndsliders.h │ │ │ ├── sndwrite.c │ │ │ ├── sndwrite.h │ │ │ ├── sndwritepa.c │ │ │ ├── sndwritepa.h │ │ │ ├── sound.c │ │ │ ├── sound.h │ │ │ ├── stats.c │ │ │ ├── stdefs.h │ │ │ ├── stoponzero.alg │ │ │ ├── stoponzero.c │ │ │ ├── stoponzero.h │ │ │ ├── trigger.c │ │ │ ├── trigger.h │ │ │ ├── yin.c │ │ │ └── yin.h │ │ ├── nyqstk │ │ │ ├── globals.h │ │ │ ├── include │ │ │ │ ├── ADSR.h │ │ │ │ ├── BandedWG.h │ │ │ │ ├── BiQuad.h │ │ │ │ ├── BowTable.h │ │ │ │ ├── Bowed.h │ │ │ │ ├── Chorus.h │ │ │ │ ├── Clarinet.h │ │ │ │ ├── Delay.h │ │ │ │ ├── DelayA.h │ │ │ │ ├── DelayL.h │ │ │ │ ├── Effect.h │ │ │ │ ├── Envelope.h │ │ │ │ ├── FileRead.h │ │ │ │ ├── FileWvIn.h │ │ │ │ ├── Filter.h │ │ │ │ ├── Flute.h │ │ │ │ ├── Function.h │ │ │ │ ├── Generator.h │ │ │ │ ├── Instrmnt.h │ │ │ │ ├── JCRev.h │ │ │ │ ├── JetTable.h │ │ │ │ ├── Mandolin.h │ │ │ │ ├── Modal.h │ │ │ │ ├── ModalBar.h │ │ │ │ ├── NRev.h │ │ │ │ ├── Noise.h │ │ │ │ ├── OnePole.h │ │ │ │ ├── OneZero.h │ │ │ │ ├── PRCRev.h │ │ │ │ ├── PitShift.h │ │ │ │ ├── PluckTwo.h │ │ │ │ ├── PoleZero.h │ │ │ │ ├── ReedTabl.h │ │ │ │ ├── ReedTable.h │ │ │ │ ├── SKINI.msg │ │ │ │ ├── Saxofony.h │ │ │ │ ├── SineWave.h │ │ │ │ ├── Sitar.h │ │ │ │ ├── Stk.h │ │ │ │ ├── WaveLoop.h │ │ │ │ └── WvIn.h │ │ │ ├── instr.cpp │ │ │ ├── instr.h │ │ │ ├── src │ │ │ │ ├── ADSR.cpp │ │ │ │ ├── BandedWG.cpp │ │ │ │ ├── BiQuad.cpp │ │ │ │ ├── BowTable.cpp │ │ │ │ ├── Bowed.cpp │ │ │ │ ├── Chorus.cpp │ │ │ │ ├── Clarinet.cpp │ │ │ │ ├── Delay.cpp │ │ │ │ ├── DelayA.cpp │ │ │ │ ├── DelayL.cpp │ │ │ │ ├── Effect.cpp │ │ │ │ ├── Envelope.cpp │ │ │ │ ├── FileRead.cpp │ │ │ │ ├── FileWvIn.cpp │ │ │ │ ├── Filter.cpp │ │ │ │ ├── Flute.cpp │ │ │ │ ├── Function.cpp │ │ │ │ ├── Generator.cpp │ │ │ │ ├── Instrmnt.cpp │ │ │ │ ├── JCRev.cpp │ │ │ │ ├── JetTable.cpp │ │ │ │ ├── Mandolin.cpp │ │ │ │ ├── Modal.cpp │ │ │ │ ├── ModalBar.cpp │ │ │ │ ├── NRev.cpp │ │ │ │ ├── Noise.cpp │ │ │ │ ├── OnePole.cpp │ │ │ │ ├── OneZero.cpp │ │ │ │ ├── PRCRev.cpp │ │ │ │ ├── PitShift.cpp │ │ │ │ ├── PluckTwo.cpp │ │ │ │ ├── PoleZero.cpp │ │ │ │ ├── ReedTabl.cpp │ │ │ │ ├── ReedTable.cpp │ │ │ │ ├── Saxofony.cpp │ │ │ │ ├── SineWave.cpp │ │ │ │ ├── Sitar.cpp │ │ │ │ ├── Stk.cpp │ │ │ │ ├── WaveLoop.cpp │ │ │ │ └── WvIn.cpp │ │ │ ├── stkinit.cpp │ │ │ ├── stkinit.h │ │ │ ├── stkint.cpp │ │ │ └── stkint.h │ │ ├── sys │ │ │ ├── mac │ │ │ │ ├── MacAE.c │ │ │ │ ├── MacCommandWin.c │ │ │ │ ├── MacCommandWin.h │ │ │ │ ├── MacDrag.h │ │ │ │ ├── MacFileUtils.c │ │ │ │ ├── MacFileUtils.h │ │ │ │ ├── MacGlobals.h │ │ │ │ ├── MacHandleEv.c │ │ │ │ ├── MacHandleEv.h │ │ │ │ ├── README.txt │ │ │ │ ├── macaboutbox.c │ │ │ │ ├── macaboutbox.h │ │ │ │ ├── macdrag.c │ │ │ │ ├── macfun.c │ │ │ │ ├── macint.c │ │ │ │ ├── macint.h │ │ │ │ ├── macptrs.h │ │ │ │ ├── macstuff.c │ │ │ │ ├── macstuff.h │ │ │ │ ├── sndsystem.h │ │ │ │ ├── switches.h │ │ │ │ ├── system.lsp │ │ │ │ └── xlextstart.c │ │ │ ├── unix │ │ │ │ ├── README.txt │ │ │ │ ├── alsa │ │ │ │ │ └── system.lsp │ │ │ │ ├── cmu │ │ │ │ │ ├── backup.script │ │ │ │ │ ├── tar.script │ │ │ │ │ └── update.lsp │ │ │ │ ├── io.c │ │ │ │ ├── io.h │ │ │ │ ├── next │ │ │ │ │ └── system.lsp │ │ │ │ ├── nonalsa │ │ │ │ │ └── system.lsp │ │ │ │ ├── osstuff.c │ │ │ │ ├── osx │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── run │ │ │ │ │ ├── sndfnint.cmdline │ │ │ │ │ └── system.lsp │ │ │ │ ├── pl │ │ │ │ ├── pmax │ │ │ │ │ └── system.lsp │ │ │ │ ├── rs6k │ │ │ │ │ ├── plotscript │ │ │ │ │ └── system.lsp │ │ │ │ ├── setup │ │ │ │ ├── sgi │ │ │ │ │ └── system.lsp │ │ │ │ ├── sndsystem.h │ │ │ │ ├── sparc │ │ │ │ │ └── system.lsp │ │ │ │ ├── switches.h │ │ │ │ ├── term.c │ │ │ │ ├── term.h │ │ │ │ └── termtest.c │ │ │ └── win │ │ │ │ ├── README.txt │ │ │ │ ├── msvc │ │ │ │ ├── mapinls.h │ │ │ │ ├── mapiwin.h │ │ │ │ ├── nywininttypes.h │ │ │ │ ├── sndsystem.h │ │ │ │ ├── stdint-old.h │ │ │ │ ├── switches.h │ │ │ │ ├── system.lsp │ │ │ │ ├── winfun.c │ │ │ │ ├── winfun.h │ │ │ │ └── winstuff.c │ │ │ │ ├── nyqrelide.iss │ │ │ │ ├── vc2010 │ │ │ │ └── nyquist.vcxproj │ │ │ │ └── wingui │ │ │ │ ├── button.h │ │ │ │ ├── cppext.h │ │ │ │ ├── longque.cpp │ │ │ │ ├── longque.h │ │ │ │ ├── nycon.ico │ │ │ │ ├── resource.h │ │ │ │ ├── slider.h │ │ │ │ ├── textio.cpp │ │ │ │ ├── textio.h │ │ │ │ ├── typein.h │ │ │ │ ├── winguistuff.c │ │ │ │ ├── winmain.aps │ │ │ │ ├── winmain.cpp │ │ │ │ ├── winmain.h │ │ │ │ ├── winmain.rc │ │ │ │ ├── winmain2.h │ │ │ │ ├── xlextstart.c │ │ │ │ ├── xlispfns.c │ │ │ │ └── xlispfns.h │ │ ├── tran │ │ │ ├── README.txt │ │ │ ├── abs.alg │ │ │ ├── abs.c │ │ │ ├── abs.h │ │ │ ├── allpoles.alg │ │ │ ├── allpoles.c │ │ │ ├── allpoles.h │ │ │ ├── alpass.alg │ │ │ ├── alpass.c │ │ │ ├── alpass.h │ │ │ ├── alpasscv.alg │ │ │ ├── alpasscv.c │ │ │ ├── alpasscv.h │ │ │ ├── alpassvc.alg │ │ │ ├── alpassvc.c │ │ │ ├── alpassvc.h │ │ │ ├── alpassvv.alg │ │ │ ├── alpassvv.c │ │ │ ├── alpassvv.h │ │ │ ├── amosc.alg │ │ │ ├── amosc.c │ │ │ ├── amosc.h │ │ │ ├── areson.alg │ │ │ ├── areson.c │ │ │ ├── areson.h │ │ │ ├── aresoncv.alg │ │ │ ├── aresoncv.c │ │ │ ├── aresoncv.h │ │ │ ├── aresonvc.alg │ │ │ ├── aresonvc.c │ │ │ ├── aresonvc.h │ │ │ ├── aresonvv.alg │ │ │ ├── aresonvv.c │ │ │ ├── aresonvv.h │ │ │ ├── atone.alg │ │ │ ├── atone.c │ │ │ ├── atone.h │ │ │ ├── atonev.alg │ │ │ ├── atonev.c │ │ │ ├── atonev.h │ │ │ ├── biquadfilt.alg │ │ │ ├── biquadfilt.c │ │ │ ├── biquadfilt.h │ │ │ ├── buzz.alg │ │ │ ├── buzz.c │ │ │ ├── buzz.h │ │ │ ├── chase.alg │ │ │ ├── chase.c │ │ │ ├── chase.h │ │ │ ├── clip.alg │ │ │ ├── clip.c │ │ │ ├── clip.h │ │ │ ├── congen.alg │ │ │ ├── congen.c │ │ │ ├── congen.h │ │ │ ├── const.alg │ │ │ ├── const.c │ │ │ ├── const.h │ │ │ ├── convolve.alg │ │ │ ├── coterm.alg │ │ │ ├── coterm.c │ │ │ ├── coterm.h │ │ │ ├── delay.alg │ │ │ ├── delaycc.alg │ │ │ ├── delaycc.c │ │ │ ├── delaycc.h │ │ │ ├── delaycv.alg │ │ │ ├── delaycv.c │ │ │ ├── delaycv.h │ │ │ ├── downproto.alg │ │ │ ├── downproto.c │ │ │ ├── downproto.h │ │ │ ├── eqbandv.alg │ │ │ ├── eqbandvvv.alg │ │ │ ├── eqbandvvv.c │ │ │ ├── eqbandvvv.h │ │ │ ├── exp.alg │ │ │ ├── exp.c │ │ │ ├── exp.h │ │ │ ├── exprel.alg │ │ │ ├── fmfb.alg │ │ │ ├── fmfb.c │ │ │ ├── fmfb.h │ │ │ ├── fmfbv.alg │ │ │ ├── fmfbv.c │ │ │ ├── fmfbv.h │ │ │ ├── fmosc.alg │ │ │ ├── fmosc.c │ │ │ ├── fmosc.h │ │ │ ├── follow.alg │ │ │ ├── follow.c │ │ │ ├── follow.h │ │ │ ├── fromarraystream.alg │ │ │ ├── fromarraystream.c │ │ │ ├── fromarraystream.h │ │ │ ├── fromobject.alg │ │ │ ├── fromobject.c │ │ │ ├── fromobject.h │ │ │ ├── gate.alg │ │ │ ├── gate.c │ │ │ ├── gate.h │ │ │ ├── generate-defines.lsp │ │ │ ├── ifft-old.alg │ │ │ ├── ifft.alg │ │ │ ├── ifft.c │ │ │ ├── ifft.h │ │ │ ├── init.lsp │ │ │ ├── innerloop.lsp │ │ │ ├── instrbanded.alg │ │ │ ├── instrbanded.c │ │ │ ├── instrbanded.h │ │ │ ├── instrbow.alg │ │ │ ├── instrbow.c │ │ │ ├── instrbow.h │ │ │ ├── instrbowedfreq.alg │ │ │ ├── instrbowedfreq.c │ │ │ ├── instrbowedfreq.h │ │ │ ├── instrclar.alg │ │ │ ├── instrclar.c │ │ │ ├── instrclar.h │ │ │ ├── instrclarall.alg │ │ │ ├── instrclarall.c │ │ │ ├── instrclarall.h │ │ │ ├── instrclarfreq.alg │ │ │ ├── instrclarfreq.c │ │ │ ├── instrclarfreq.h │ │ │ ├── instrflute.alg │ │ │ ├── instrflute.c │ │ │ ├── instrflute.h │ │ │ ├── instrfluteall.alg │ │ │ ├── instrfluteall.c │ │ │ ├── instrfluteall.h │ │ │ ├── instrflutefreq.alg │ │ │ ├── instrflutefreq.c │ │ │ ├── instrflutefreq.h │ │ │ ├── instrmandolin.alg │ │ │ ├── instrmandolin.c │ │ │ ├── instrmandolin.h │ │ │ ├── instrmodalbar.alg │ │ │ ├── instrmodalbar.c │ │ │ ├── instrmodalbar.h │ │ │ ├── instrsax.alg │ │ │ ├── instrsax.c │ │ │ ├── instrsax.h │ │ │ ├── instrsaxall.alg │ │ │ ├── instrsaxall.c │ │ │ ├── instrsaxall.h │ │ │ ├── instrsaxfreq.alg │ │ │ ├── instrsaxfreq.c │ │ │ ├── instrsaxfreq.h │ │ │ ├── instrsitar.alg │ │ │ ├── instrsitar.c │ │ │ ├── instrsitar.h │ │ │ ├── integrate.alg │ │ │ ├── integrate.c │ │ │ ├── integrate.h │ │ │ ├── log.alg │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── lpreson.alg │ │ │ ├── lpreson.c │ │ │ ├── lpreson.h │ │ │ ├── maxv.alg │ │ │ ├── maxv.c │ │ │ ├── maxv.h │ │ │ ├── offset.alg │ │ │ ├── offset.c │ │ │ ├── offset.h │ │ │ ├── oneshot.alg │ │ │ ├── oneshot.c │ │ │ ├── oneshot.h │ │ │ ├── osc.alg │ │ │ ├── osc.c │ │ │ ├── osc.h │ │ │ ├── partial.alg │ │ │ ├── partial.c │ │ │ ├── partial.h │ │ │ ├── pluck.alg │ │ │ ├── pluck.c │ │ │ ├── pluck.h │ │ │ ├── prod.alg │ │ │ ├── prod.c │ │ │ ├── prod.h │ │ │ ├── pwl.alg │ │ │ ├── pwl.c │ │ │ ├── pwl.h │ │ │ ├── quantize.alg │ │ │ ├── quantize.c │ │ │ ├── quantize.h │ │ │ ├── recip.alg │ │ │ ├── recip.c │ │ │ ├── recip.h │ │ │ ├── reson.alg │ │ │ ├── reson.c │ │ │ ├── reson.h │ │ │ ├── resoncv.alg │ │ │ ├── resoncv.c │ │ │ ├── resoncv.h │ │ │ ├── resonvc.alg │ │ │ ├── resonvc.c │ │ │ ├── resonvc.h │ │ │ ├── resonvv.alg │ │ │ ├── resonvv.c │ │ │ ├── resonvv.h │ │ │ ├── sampler.alg │ │ │ ├── sampler.c │ │ │ ├── sampler.h │ │ │ ├── scale.alg │ │ │ ├── scale.c │ │ │ ├── scale.h │ │ │ ├── shape.alg │ │ │ ├── shape.c │ │ │ ├── shape.h │ │ │ ├── sine.alg │ │ │ ├── sine.c │ │ │ ├── sine.h │ │ │ ├── siosc.alg │ │ │ ├── siosc.c │ │ │ ├── siosc.h │ │ │ ├── slope.alg │ │ │ ├── slope.c │ │ │ ├── slope.h │ │ │ ├── sqrt.alg │ │ │ ├── sqrt.c │ │ │ ├── sqrt.h │ │ │ ├── stkchorus.alg │ │ │ ├── stkchorus.c │ │ │ ├── stkchorus.h │ │ │ ├── stkpitshift.alg │ │ │ ├── stkpitshift.c │ │ │ ├── stkpitshift.h │ │ │ ├── stkrev.alg │ │ │ ├── stkrev.c │ │ │ ├── stkrev.h │ │ │ ├── tapf.alg │ │ │ ├── tapf.c │ │ │ ├── tapf.h │ │ │ ├── tapv.alg │ │ │ ├── tapv.c │ │ │ ├── tapv.h │ │ │ ├── tone.alg │ │ │ ├── tone.c │ │ │ ├── tone.h │ │ │ ├── tonev.alg │ │ │ ├── tonev.c │ │ │ ├── tonev.h │ │ │ ├── translate-stk.lsp │ │ │ ├── translate.lsp │ │ │ ├── upsample.alg │ │ │ ├── upsample.c │ │ │ ├── upsample.h │ │ │ ├── white.alg │ │ │ ├── white.c │ │ │ ├── white.h │ │ │ ├── writemake.lsp │ │ │ ├── writesusp.lsp │ │ │ └── writetoss.lsp │ │ └── xlisp │ │ │ ├── extern.c │ │ │ ├── extern.h │ │ │ ├── osdefs.h │ │ │ ├── osptrs.h │ │ │ ├── path.c │ │ │ ├── security.c │ │ │ ├── xlbfun.c │ │ │ ├── xlcont.c │ │ │ ├── xldbug.c │ │ │ ├── xldmem.c │ │ │ ├── xldmem.h │ │ │ ├── xleval.c │ │ │ ├── xlfio.c │ │ │ ├── xlftab.c │ │ │ ├── xlglob.c │ │ │ ├── xlimage.c │ │ │ ├── xlinit.c │ │ │ ├── xlio.c │ │ │ ├── xlisp.c │ │ │ ├── xlisp.h │ │ │ ├── xljump.c │ │ │ ├── xllist.c │ │ │ ├── xlmath.c │ │ │ ├── xlobj.c │ │ │ ├── xlpp.c │ │ │ ├── xlprin.c │ │ │ ├── xlread.c │ │ │ ├── xlstr.c │ │ │ ├── xlsubr.c │ │ │ ├── xlsym.c │ │ │ └── xlsys.c │ ├── nyx.c │ ├── nyx.h │ └── xlextstart.c ├── libsbsms │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README.md │ ├── TODO │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── include │ │ └── sbsms.h │ ├── install-sh │ ├── libsbsms.spec.in │ ├── ltmain.sh │ ├── m4 │ │ ├── ac_c99_func_lrint.m4 │ │ ├── ac_c99_func_lrintf.m4 │ │ ├── ax_check_compiler_flags.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ ├── sbsms.pc.in │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── buffer.cpp │ │ ├── buffer.h │ │ ├── config.h.in │ │ ├── dBTable.cpp │ │ ├── dBTable.h │ │ ├── fft.cpp │ │ ├── fft.h │ │ ├── grain.cpp │ │ ├── grain.h │ │ ├── real.h │ │ ├── resample.cpp │ │ ├── sbsms.cpp │ │ ├── sincCoeffs.h │ │ ├── slide.cpp │ │ ├── sms.cpp │ │ ├── sms.h │ │ ├── sse.h │ │ ├── subband.cpp │ │ ├── subband.h │ │ ├── synthTable.h │ │ ├── track.cpp │ │ ├── track.h │ │ ├── trackpoint.cpp │ │ ├── trackpoint.h │ │ └── utils.h │ └── win │ │ ├── config.h │ │ └── sbsms │ │ ├── sbsms.rc │ │ ├── sbsms.sln │ │ └── sbsms.vcproj ├── libscorealign │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.linux │ ├── Makefile.osx │ ├── README.txt │ ├── alignfiles.cpp │ ├── alignfiles.h │ ├── audiofilereader-snd.cpp │ ├── audiofilereader-snd.h │ ├── audiofilereader.cpp │ ├── audiofilereader.h │ ├── audioreader.cpp │ ├── audioreader.h │ ├── autotools │ │ ├── ar-lib │ │ ├── depcomp │ │ ├── install-sh │ │ ├── m4 │ │ │ ├── ax_cflags_strict_prototypes.m4 │ │ │ ├── ax_cflags_warn_all.m4 │ │ │ ├── ax_cxx_check_flag.m4 │ │ │ ├── ax_cxxcpp_check_flag.m4 │ │ │ └── m4_ax_append_flag.m4 │ │ └── missing │ ├── changelog.txt │ ├── comp_chroma.cpp │ ├── comp_chroma.h │ ├── compare_transcripts.vcproj │ ├── compare_transcripts │ │ ├── compare.cpp │ │ └── compare_transcripts.sln │ ├── configure │ ├── configure.ac │ ├── curvefit.cpp │ ├── curvefit.h │ ├── fft3 │ │ ├── FFT3.cpp │ │ └── FFT3.h │ ├── gen_chroma.cpp │ ├── gen_chroma.h │ ├── hillclimb.cpp │ ├── hillclimb.h │ ├── license.txt │ ├── main.cpp │ ├── main.h │ ├── regression.cpp │ ├── regression.h │ ├── sautils.cpp │ ├── sautils.h │ ├── score-align.sln │ ├── score-align.vcproj │ ├── scorealign-uninstalled.pc.in │ ├── scorealign-vc2010.sln │ ├── scorealign-vc2010.vcproj │ ├── scorealign.cpp │ ├── scorealign.h │ ├── scorealign.pc.in │ ├── scorealign.xcodeproj │ │ └── project.pbxproj │ ├── test │ │ ├── cde-11khz.wav │ │ ├── cde.gro │ │ ├── cde.mid │ │ └── save.sh │ ├── trace.cpp │ └── trace.h ├── libsoxr │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING.LGPL │ ├── INSTALL │ ├── LICENCE │ ├── NEWS │ ├── README │ ├── TODO │ ├── cmake │ │ └── Modules │ │ │ ├── FindCFlags.cmake │ │ │ ├── FindLibAVCodec.cmake │ │ │ ├── FindLibAVUtil.cmake │ │ │ ├── FindSIMD32.cmake │ │ │ ├── FindSIMD64.cmake │ │ │ └── SetSystemProcessor.cmake │ ├── configure │ ├── deinstall.cmake.in │ ├── examples │ │ ├── 1-single-block.c │ │ ├── 1a-lsr.c │ │ ├── 2-stream.C │ │ ├── 3-options-input-fn.c │ │ ├── 4-split-channels.c │ │ ├── 5-variable-rate.c │ │ ├── CMakeLists.txt │ │ ├── README │ │ └── examples-common.h │ ├── go │ ├── go.bat │ ├── inst-check │ ├── inst-check-soxr │ ├── msvc │ │ ├── README │ │ ├── example1.vcproj │ │ ├── libsoxr.sln │ │ ├── libsoxr.vcproj │ │ └── soxr-config.h │ ├── multi-arch │ ├── soxr-config.h.in │ ├── src │ │ ├── CMakeLists.txt │ │ ├── aliases.h │ │ ├── avfft32.c │ │ ├── avfft32s.c │ │ ├── ccrw2.h │ │ ├── cr-core.c │ │ ├── cr.c │ │ ├── cr.h │ │ ├── cr32.c │ │ ├── cr32s.c │ │ ├── cr64.c │ │ ├── cr64s.c │ │ ├── data-io.c │ │ ├── data-io.h │ │ ├── dbesi0.c │ │ ├── dev32s.h │ │ ├── dev64s.h │ │ ├── fft4g.c │ │ ├── fft4g.h │ │ ├── fft4g32.c │ │ ├── fft4g32s.c │ │ ├── fft4g64.c │ │ ├── fft4g_cache.h │ │ ├── fifo.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── half-coefs.h │ │ ├── half-fir.h │ │ ├── internal.h │ │ ├── math-wrap.h │ │ ├── pffft-avx.h │ │ ├── pffft-wrap.c │ │ ├── pffft.c │ │ ├── pffft.h │ │ ├── pffft32.c │ │ ├── pffft32s.c │ │ ├── pffft64s.c │ │ ├── poly-fir.h │ │ ├── poly-fir0.h │ │ ├── rdft.h │ │ ├── rdft_t.h │ │ ├── rint-clip.h │ │ ├── rint.h │ │ ├── samplerate.h │ │ ├── soxr-lsr.c │ │ ├── soxr-lsr.h │ │ ├── soxr-lsr.pc.in │ │ ├── soxr.c │ │ ├── soxr.h │ │ ├── soxr.pc.in │ │ ├── std-types.h │ │ ├── util-simd.c │ │ ├── util32s.c │ │ ├── util32s.h │ │ ├── util64s.c │ │ ├── util64s.h │ │ ├── vr-coefs.c │ │ ├── vr-coefs.h │ │ └── vr32.c │ └── tests │ │ ├── 1-delay-clear.c │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── bandwidth-test │ │ ├── cmp-test.cmake │ │ ├── eg-test │ │ ├── io-test │ │ ├── large-ratio-test │ │ ├── phase-test │ │ ├── q-test │ │ ├── scripts │ │ ├── throughput-test │ │ ├── throughput-test.bat │ │ ├── throughput.c │ │ ├── time-test │ │ ├── vector-cmp.c │ │ └── vector-gen.c ├── libvamp │ ├── CHANGELOG │ ├── COPYING │ ├── INSTALL │ ├── Makefile.in │ ├── README │ ├── README.compat │ ├── build │ │ ├── Doxyfile │ │ ├── Makefile.mingw32 │ │ ├── Makefile.osx │ │ ├── Makefile.osx.106 │ │ ├── README.linux │ │ ├── README.msvc │ │ ├── README.osx │ │ ├── VampExamplePlugins.sln │ │ ├── VampExamplePlugins.vcproj │ │ ├── VampExamplePlugins.vcxproj │ │ ├── VampHostSDK.sln │ │ ├── VampHostSDK.vcproj │ │ ├── VampHostSDK.vcxproj │ │ ├── VampPluginSDK.sln │ │ ├── VampPluginSDK.vcproj │ │ ├── VampPluginSDK.vcxproj │ │ ├── libvamp-hostsdk.la.in │ │ ├── libvamp-sdk.la.in │ │ ├── update-version.sh │ │ ├── vamp-plugin.list │ │ └── vamp-plugin.map │ ├── configure │ ├── configure.ac │ ├── examples │ │ ├── AmplitudeFollower.cpp │ │ ├── AmplitudeFollower.h │ │ ├── FixedTempoEstimator.cpp │ │ ├── FixedTempoEstimator.h │ │ ├── PercussionOnsetDetector.cpp │ │ ├── PercussionOnsetDetector.h │ │ ├── PowerSpectrum.cpp │ │ ├── PowerSpectrum.h │ │ ├── SpectralCentroid.cpp │ │ ├── SpectralCentroid.h │ │ ├── ZeroCrossing.cpp │ │ ├── ZeroCrossing.h │ │ ├── plugins.cpp │ │ ├── vamp-example-plugins.cat │ │ └── vamp-example-plugins.n3 │ ├── fix-all-target.patch │ ├── fix-linkage-against-dl.patch │ ├── host │ │ ├── system.h │ │ └── vamp-simple-host.cpp │ ├── libvamp-srcdir.patch │ ├── pkgconfig │ │ ├── vamp-hostsdk.pc.in │ │ ├── vamp-sdk.pc.in │ │ └── vamp.pc.in │ ├── rdf │ │ ├── README │ │ ├── ToDo │ │ ├── doc │ │ │ ├── glance.htm │ │ │ ├── vamp.html │ │ │ └── vamp.pl │ │ ├── generator │ │ │ └── vamp-rdf-template-generator.cpp │ │ ├── vamp.n3 │ │ └── vamp.rdf │ ├── skeleton │ │ ├── Makefile.skeleton │ │ ├── MyPlugin.cpp │ │ ├── MyPlugin.h │ │ ├── plugins.cpp │ │ ├── vamp-plugin.list │ │ └── vamp-plugin.map │ ├── src │ │ ├── doc-overview │ │ ├── vamp-hostsdk │ │ │ ├── PluginBufferingAdapter.cpp │ │ │ ├── PluginChannelAdapter.cpp │ │ │ ├── PluginHostAdapter.cpp │ │ │ ├── PluginInputDomainAdapter.cpp │ │ │ ├── PluginLoader.cpp │ │ │ ├── PluginSummarisingAdapter.cpp │ │ │ ├── PluginWrapper.cpp │ │ │ ├── RealTime.cpp │ │ │ ├── Window.h │ │ │ └── acsymbols.c │ │ └── vamp-sdk │ │ │ ├── FFT.cpp │ │ │ ├── FFTimpl.cpp │ │ │ ├── PluginAdapter.cpp │ │ │ ├── RealTime.cpp │ │ │ └── acsymbols.c │ ├── vamp-hostsdk │ │ ├── Plugin.h │ │ ├── PluginBase.h │ │ ├── PluginBufferingAdapter.h │ │ ├── PluginChannelAdapter.h │ │ ├── PluginHostAdapter.h │ │ ├── PluginInputDomainAdapter.h │ │ ├── PluginLoader.h │ │ ├── PluginSummarisingAdapter.h │ │ ├── PluginWrapper.h │ │ ├── RealTime.h │ │ ├── hostguard.h │ │ └── vamp-hostsdk.h │ ├── vamp-sdk │ │ ├── FFT.h │ │ ├── Plugin.h │ │ ├── PluginAdapter.h │ │ ├── PluginBase.h │ │ ├── RealTime.h │ │ ├── plugguard.h │ │ └── vamp-sdk.h │ └── vamp │ │ └── vamp.h ├── lv2 │ ├── Makefile │ ├── configure │ ├── lilv │ │ ├── .gitmodules │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README.md │ │ ├── bindings │ │ │ ├── python │ │ │ │ ├── conf.py │ │ │ │ ├── index.rst │ │ │ │ ├── lilv.py │ │ │ │ ├── lv2_apply.py │ │ │ │ ├── lv2_list.py │ │ │ │ └── lv2_list_presets.py │ │ │ └── test │ │ │ │ ├── bindings_test_plugin.c │ │ │ │ ├── bindings_test_plugin.ttl.in │ │ │ │ ├── manifest.ttl.in │ │ │ │ └── python │ │ │ │ └── test_api.py │ │ ├── doc │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── layout.xml │ │ │ ├── lv2apply.1 │ │ │ ├── lv2info.1 │ │ │ ├── lv2ls.1 │ │ │ ├── mainpage.md │ │ │ ├── reference.doxygen.in │ │ │ └── style.css │ │ ├── lilv.pc.in │ │ ├── lilv.ttl │ │ ├── lilv │ │ │ ├── lilv.h │ │ │ └── lilvmm.hpp │ │ ├── src │ │ │ ├── collections.c │ │ │ ├── instance.c │ │ │ ├── lib.c │ │ │ ├── lilv_internal.h │ │ │ ├── node.c │ │ │ ├── plugin.c │ │ │ ├── pluginclass.c │ │ │ ├── port.c │ │ │ ├── query.c │ │ │ ├── scalepoint.c │ │ │ ├── state.c │ │ │ ├── ui.c │ │ │ ├── util.c │ │ │ ├── world.c │ │ │ └── zix │ │ │ │ ├── common.h │ │ │ │ ├── tree.c │ │ │ │ └── tree.h │ │ ├── test │ │ │ ├── bad_syntax.lv2 │ │ │ │ ├── bad_syntax.c │ │ │ │ ├── bad_syntax.ttl.in │ │ │ │ ├── manifest.ttl.in │ │ │ │ └── test_bad_syntax.c │ │ │ ├── core.lv2 │ │ │ │ ├── lv2core.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── failed_instantiation.lv2 │ │ │ │ ├── failed_instantiation.c │ │ │ │ ├── failed_instantiation.ttl.in │ │ │ │ ├── manifest.ttl.in │ │ │ │ └── test_failed_instantiation.c │ │ │ ├── failed_lib_descriptor.lv2 │ │ │ │ ├── failed_lib_descriptor.c │ │ │ │ ├── failed_lib_descriptor.ttl.in │ │ │ │ ├── manifest.ttl.in │ │ │ │ └── test_failed_lib_descriptor.c │ │ │ ├── lib_descriptor.lv2 │ │ │ │ ├── lib_descriptor.c │ │ │ │ ├── lib_descriptor.ttl.in │ │ │ │ ├── manifest.ttl.in │ │ │ │ └── test_lib_descriptor.c │ │ │ ├── lilv_cxx_test.cpp │ │ │ ├── lilv_test.c │ │ │ ├── missing_descriptor.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── missing_descriptor.c │ │ │ │ ├── missing_descriptor.ttl.in │ │ │ │ └── test_missing_descriptor.c │ │ │ ├── missing_name.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── missing_name.c │ │ │ │ ├── missing_name.ttl.in │ │ │ │ └── test_missing_name.c │ │ │ ├── missing_plugin.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── missing_plugin.c │ │ │ │ ├── missing_plugin.ttl.in │ │ │ │ └── test_missing_plugin.c │ │ │ ├── missing_port.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── missing_port.c │ │ │ │ ├── missing_port.ttl.in │ │ │ │ └── test_missing_port.c │ │ │ ├── missing_port_name.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── missing_port_name.c │ │ │ │ ├── missing_port_name.ttl.in │ │ │ │ └── test_missing_port_name.c │ │ │ ├── new_version.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── new_version.c │ │ │ │ └── new_version.ttl.in │ │ │ ├── old_version.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── old_version.c │ │ │ │ └── old_version.ttl.in │ │ │ └── test.lv2 │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── test.c │ │ │ │ └── test.ttl.in │ │ ├── utils │ │ │ ├── bench.h │ │ │ ├── lilv-bench.c │ │ │ ├── lilv.bash_completion │ │ │ ├── lv2apply.c │ │ │ ├── lv2bench.c │ │ │ ├── lv2info.c │ │ │ ├── lv2ls.c │ │ │ └── uri_table.h │ │ ├── waf │ │ ├── waflib │ │ │ ├── Build.py │ │ │ ├── COPYING │ │ │ ├── ConfigSet.py │ │ │ ├── Configure.py │ │ │ ├── Context.py │ │ │ ├── Errors.py │ │ │ ├── Logs.py │ │ │ ├── Node.py │ │ │ ├── Options.py │ │ │ ├── README.md │ │ │ ├── Runner.py │ │ │ ├── Scripting.py │ │ │ ├── Task.py │ │ │ ├── TaskGen.py │ │ │ ├── Tools │ │ │ │ ├── __init__.py │ │ │ │ ├── ar.py │ │ │ │ ├── asm.py │ │ │ │ ├── bison.py │ │ │ │ ├── c.py │ │ │ │ ├── c_aliases.py │ │ │ │ ├── c_config.py │ │ │ │ ├── c_osx.py │ │ │ │ ├── c_preproc.py │ │ │ │ ├── c_tests.py │ │ │ │ ├── ccroot.py │ │ │ │ ├── clang.py │ │ │ │ ├── clangxx.py │ │ │ │ ├── compiler_c.py │ │ │ │ ├── compiler_cxx.py │ │ │ │ ├── compiler_d.py │ │ │ │ ├── compiler_fc.py │ │ │ │ ├── cs.py │ │ │ │ ├── cxx.py │ │ │ │ ├── d.py │ │ │ │ ├── d_config.py │ │ │ │ ├── d_scan.py │ │ │ │ ├── dbus.py │ │ │ │ ├── dmd.py │ │ │ │ ├── errcheck.py │ │ │ │ ├── fc.py │ │ │ │ ├── fc_config.py │ │ │ │ ├── fc_scan.py │ │ │ │ ├── flex.py │ │ │ │ ├── g95.py │ │ │ │ ├── gas.py │ │ │ │ ├── gcc.py │ │ │ │ ├── gdc.py │ │ │ │ ├── gfortran.py │ │ │ │ ├── glib2.py │ │ │ │ ├── gnu_dirs.py │ │ │ │ ├── gxx.py │ │ │ │ ├── icc.py │ │ │ │ ├── icpc.py │ │ │ │ ├── ifort.py │ │ │ │ ├── intltool.py │ │ │ │ ├── irixcc.py │ │ │ │ ├── javaw.py │ │ │ │ ├── ldc2.py │ │ │ │ ├── lua.py │ │ │ │ ├── md5_tstamp.py │ │ │ │ ├── msvc.py │ │ │ │ ├── nasm.py │ │ │ │ ├── nobuild.py │ │ │ │ ├── perl.py │ │ │ │ ├── python.py │ │ │ │ ├── qt5.py │ │ │ │ ├── ruby.py │ │ │ │ ├── suncc.py │ │ │ │ ├── suncxx.py │ │ │ │ ├── tex.py │ │ │ │ ├── vala.py │ │ │ │ ├── waf_unit_test.py │ │ │ │ ├── winres.py │ │ │ │ ├── xlc.py │ │ │ │ └── xlcxx.py │ │ │ ├── Utils.py │ │ │ ├── __init__.py │ │ │ ├── ansiterm.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── autoship.py │ │ │ │ ├── autowaf.py │ │ │ │ ├── batched_cc.py │ │ │ │ ├── biber.py │ │ │ │ ├── bjam.py │ │ │ │ ├── blender.py │ │ │ │ ├── boo.py │ │ │ │ ├── boost.py │ │ │ │ ├── build_file_tracker.py │ │ │ │ ├── build_logs.py │ │ │ │ ├── buildcopy.py │ │ │ │ ├── c_bgxlc.py │ │ │ │ ├── c_dumbpreproc.py │ │ │ │ ├── c_emscripten.py │ │ │ │ ├── c_nec.py │ │ │ │ ├── cabal.py │ │ │ │ ├── cfg_altoptions.py │ │ │ │ ├── clang_compilation_database.py │ │ │ │ ├── clang_cross.py │ │ │ │ ├── clang_cross_common.py │ │ │ │ ├── clangxx_cross.py │ │ │ │ ├── codelite.py │ │ │ │ ├── color_gcc.py │ │ │ │ ├── color_msvc.py │ │ │ │ ├── color_rvct.py │ │ │ │ ├── compat15.py │ │ │ │ ├── cppcheck.py │ │ │ │ ├── cpplint.py │ │ │ │ ├── cross_gnu.py │ │ │ │ ├── cython.py │ │ │ │ ├── dcc.py │ │ │ │ ├── distnet.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── dpapi.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── erlang.py │ │ │ │ ├── fast_partial.py │ │ │ │ ├── fc_bgxlf.py │ │ │ │ ├── fc_cray.py │ │ │ │ ├── fc_nag.py │ │ │ │ ├── fc_nec.py │ │ │ │ ├── fc_nfort.py │ │ │ │ ├── fc_open64.py │ │ │ │ ├── fc_pgfortran.py │ │ │ │ ├── fc_solstudio.py │ │ │ │ ├── fc_xlf.py │ │ │ │ ├── file_to_object.py │ │ │ │ ├── fluid.py │ │ │ │ ├── freeimage.py │ │ │ │ ├── fsb.py │ │ │ │ ├── fsc.py │ │ │ │ ├── gccdeps.py │ │ │ │ ├── gdbus.py │ │ │ │ ├── genpybind.py │ │ │ │ ├── gob2.py │ │ │ │ ├── halide.py │ │ │ │ ├── javatest.py │ │ │ │ ├── kde4.py │ │ │ │ ├── local_rpath.py │ │ │ │ ├── lv2.py │ │ │ │ ├── make.py │ │ │ │ ├── midl.py │ │ │ │ ├── msvcdeps.py │ │ │ │ ├── msvs.py │ │ │ │ ├── netcache_client.py │ │ │ │ ├── objcopy.py │ │ │ │ ├── ocaml.py │ │ │ │ ├── package.py │ │ │ │ ├── parallel_debug.py │ │ │ │ ├── pch.py │ │ │ │ ├── pep8.py │ │ │ │ ├── pgicc.py │ │ │ │ ├── pgicxx.py │ │ │ │ ├── proc.py │ │ │ │ ├── protoc.py │ │ │ │ ├── pyqt5.py │ │ │ │ ├── pytest.py │ │ │ │ ├── qnxnto.py │ │ │ │ ├── qt4.py │ │ │ │ ├── relocation.py │ │ │ │ ├── remote.py │ │ │ │ ├── resx.py │ │ │ │ ├── review.py │ │ │ │ ├── rst.py │ │ │ │ ├── run_do_script.py │ │ │ │ ├── run_m_script.py │ │ │ │ ├── run_py_script.py │ │ │ │ ├── run_r_script.py │ │ │ │ ├── sas.py │ │ │ │ ├── satellite_assembly.py │ │ │ │ ├── scala.py │ │ │ │ ├── slow_qt4.py │ │ │ │ ├── softlink_libs.py │ │ │ │ ├── sphinx.py │ │ │ │ ├── stale.py │ │ │ │ ├── stracedeps.py │ │ │ │ ├── swig.py │ │ │ │ ├── syms.py │ │ │ │ ├── ticgt.py │ │ │ │ ├── unity.py │ │ │ │ ├── use_config.py │ │ │ │ ├── valadoc.py │ │ │ │ ├── waf_xattr.py │ │ │ │ ├── why.py │ │ │ │ ├── win32_opts.py │ │ │ │ ├── wix.py │ │ │ │ └── xcode6.py │ │ │ ├── fixpy2.py │ │ │ ├── processor.py │ │ │ └── waf │ │ └── wscript │ ├── lv2 │ │ ├── .gitlab-ci.yml │ │ ├── COPYING │ │ ├── NEWS │ │ ├── README.md │ │ ├── doc │ │ │ ├── DoxygenLayout.xml │ │ │ ├── asciidoc.css │ │ │ ├── doxy-style.css │ │ │ ├── header.html │ │ │ ├── htaccess.in │ │ │ ├── index.html.in │ │ │ ├── mainpage.dox │ │ │ ├── pygments.css │ │ │ ├── reference.doxygen.in │ │ │ └── style.css │ │ ├── lv2.pc.in │ │ ├── lv2 │ │ │ ├── atom │ │ │ │ ├── NEWS │ │ │ │ ├── atom-test.c │ │ │ │ ├── atom.h │ │ │ │ ├── atom.ttl │ │ │ │ ├── forge.h │ │ │ │ ├── lv2-atom.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ └── util.h │ │ │ ├── buf-size │ │ │ │ ├── NEWS │ │ │ │ ├── buf-size.h │ │ │ │ ├── buf-size.ttl │ │ │ │ ├── lv2-buf-size.doap.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── core │ │ │ │ ├── NEWS │ │ │ │ ├── attributes.h │ │ │ │ ├── lv2.h │ │ │ │ ├── lv2_util.h │ │ │ │ ├── lv2core.doap.ttl │ │ │ │ ├── lv2core.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ └── meta.ttl │ │ │ ├── data-access │ │ │ │ ├── NEWS │ │ │ │ ├── data-access.h │ │ │ │ ├── data-access.ttl │ │ │ │ ├── lv2-data-access.doap.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── dynmanifest │ │ │ │ ├── NEWS │ │ │ │ ├── dynmanifest.h │ │ │ │ ├── dynmanifest.ttl │ │ │ │ ├── lv2-dynmanifest.doap.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── event │ │ │ │ ├── NEWS │ │ │ │ ├── event-helpers.h │ │ │ │ ├── event.h │ │ │ │ ├── event.ttl │ │ │ │ ├── lv2-event.doap.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── instance-access │ │ │ │ ├── NEWS │ │ │ │ ├── instance-access.h │ │ │ │ ├── instance-access.ttl │ │ │ │ ├── lv2-instance-access.doap.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── log │ │ │ │ ├── NEWS │ │ │ │ ├── log.h │ │ │ │ ├── log.ttl │ │ │ │ ├── logger.h │ │ │ │ ├── lv2-log.doap.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── midi │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-midi.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── midi.h │ │ │ │ └── midi.ttl │ │ │ ├── morph │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-morph.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── morph.h │ │ │ │ └── morph.ttl │ │ │ ├── options │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-options.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── options.h │ │ │ │ └── options.ttl │ │ │ ├── parameters │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-parameters.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── parameters.h │ │ │ │ └── parameters.ttl │ │ │ ├── patch │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-patch.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── patch.h │ │ │ │ └── patch.ttl │ │ │ ├── port-groups │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-port-groups.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── port-groups.h │ │ │ │ └── port-groups.ttl │ │ │ ├── port-props │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-port-props.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── port-props.h │ │ │ │ └── port-props.ttl │ │ │ ├── presets │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-presets.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── presets.h │ │ │ │ └── presets.ttl │ │ │ ├── resize-port │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-resize-port.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── resize-port.h │ │ │ │ └── resize-port.ttl │ │ │ ├── state │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-state.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── state.h │ │ │ │ └── state.ttl │ │ │ ├── time │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-time.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── time.h │ │ │ │ └── time.ttl │ │ │ ├── ui │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-ui.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── ui.h │ │ │ │ └── ui.ttl │ │ │ ├── units │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-units.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── units.h │ │ │ │ └── units.ttl │ │ │ ├── uri-map │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-uri-map.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── uri-map.h │ │ │ │ └── uri-map.ttl │ │ │ ├── urid │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-urid.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── urid.h │ │ │ │ └── urid.ttl │ │ │ └── worker │ │ │ │ ├── NEWS │ │ │ │ ├── lv2-worker.doap.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── worker.h │ │ │ │ └── worker.ttl │ │ ├── lv2specgen │ │ │ ├── DTD │ │ │ │ ├── xhtml-attribs-1.mod │ │ │ │ ├── xhtml-base-1.mod │ │ │ │ ├── xhtml-basic-table-1.mod │ │ │ │ ├── xhtml-basic11-model-1.mod │ │ │ │ ├── xhtml-basic11.dtd │ │ │ │ ├── xhtml-bdo-1.mod │ │ │ │ ├── xhtml-blkphras-1.mod │ │ │ │ ├── xhtml-blkpres-1.mod │ │ │ │ ├── xhtml-blkstruct-1.mod │ │ │ │ ├── xhtml-charent-1.mod │ │ │ │ ├── xhtml-csismap-1.mod │ │ │ │ ├── xhtml-datatypes-1.mod │ │ │ │ ├── xhtml-edit-1.mod │ │ │ │ ├── xhtml-events-1.mod │ │ │ │ ├── xhtml-form-1.mod │ │ │ │ ├── xhtml-framework-1.mod │ │ │ │ ├── xhtml-hypertext-1.mod │ │ │ │ ├── xhtml-image-1.mod │ │ │ │ ├── xhtml-inlphras-1.mod │ │ │ │ ├── xhtml-inlpres-1.mod │ │ │ │ ├── xhtml-inlstruct-1.mod │ │ │ │ ├── xhtml-inlstyle-1.mod │ │ │ │ ├── xhtml-inputmode-1.mod │ │ │ │ ├── xhtml-lat1.ent │ │ │ │ ├── xhtml-legacy-1.mod │ │ │ │ ├── xhtml-link-1.mod │ │ │ │ ├── xhtml-list-1.mod │ │ │ │ ├── xhtml-meta-1.mod │ │ │ │ ├── xhtml-object-1.mod │ │ │ │ ├── xhtml-param-1.mod │ │ │ │ ├── xhtml-pres-1.mod │ │ │ │ ├── xhtml-qname-1.mod │ │ │ │ ├── xhtml-script-1.mod │ │ │ │ ├── xhtml-special.ent │ │ │ │ ├── xhtml-ssismap-1.mod │ │ │ │ ├── xhtml-struct-1.mod │ │ │ │ ├── xhtml-style-1.mod │ │ │ │ ├── xhtml-symbol.ent │ │ │ │ ├── xhtml-table-1.mod │ │ │ │ ├── xhtml-target-1.mod │ │ │ │ └── xhtml-text-1.mod │ │ │ ├── lv2docgen.py │ │ │ ├── lv2specgen.py │ │ │ ├── style.css │ │ │ └── template.html │ │ ├── plugins │ │ │ ├── README.txt │ │ │ ├── eg-amp.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── amp.c │ │ │ │ ├── amp.ttl │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── waf │ │ │ │ └── wscript │ │ │ ├── eg-fifths.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── fifths.c │ │ │ │ ├── fifths.ttl │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── uris.h │ │ │ │ ├── waf │ │ │ │ └── wscript │ │ │ ├── eg-metro.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── metro.c │ │ │ │ ├── metro.ttl │ │ │ │ ├── waf │ │ │ │ └── wscript │ │ │ ├── eg-midigate.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── midigate.c │ │ │ │ ├── midigate.ttl │ │ │ │ ├── waf │ │ │ │ └── wscript │ │ │ ├── eg-params.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── params.c │ │ │ │ ├── params.ttl │ │ │ │ ├── state_map.h │ │ │ │ └── wscript │ │ │ ├── eg-sampler.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── atom_sink.h │ │ │ │ ├── click.wav │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── peaks.h │ │ │ │ ├── sampler.c │ │ │ │ ├── sampler.ttl │ │ │ │ ├── sampler_ui.c │ │ │ │ ├── uris.h │ │ │ │ ├── waf │ │ │ │ └── wscript │ │ │ ├── eg-scope.lv2 │ │ │ │ ├── README.txt │ │ │ │ ├── examploscope.c │ │ │ │ ├── examploscope.ttl.in │ │ │ │ ├── examploscope_ui.c │ │ │ │ ├── manifest.ttl.in │ │ │ │ ├── uris.h │ │ │ │ └── wscript │ │ │ ├── literasc.py │ │ │ └── wscript │ │ ├── schemas.lv2 │ │ │ ├── README │ │ │ ├── dcs.ttl │ │ │ ├── dct.ttl │ │ │ ├── doap.ttl │ │ │ ├── foaf.ttl │ │ │ ├── manifest.ttl │ │ │ ├── owl.ttl │ │ │ ├── rdf.ttl │ │ │ ├── rdfs.ttl │ │ │ └── xsd.ttl │ │ ├── util │ │ │ └── lv2_validate.in │ │ ├── waf │ │ ├── waflib │ │ │ ├── Build.py │ │ │ ├── COPYING │ │ │ ├── ConfigSet.py │ │ │ ├── Configure.py │ │ │ ├── Context.py │ │ │ ├── Errors.py │ │ │ ├── Logs.py │ │ │ ├── Node.py │ │ │ ├── Options.py │ │ │ ├── README.md │ │ │ ├── Runner.py │ │ │ ├── Scripting.py │ │ │ ├── Task.py │ │ │ ├── TaskGen.py │ │ │ ├── Tools │ │ │ │ ├── __init__.py │ │ │ │ ├── ar.py │ │ │ │ ├── asm.py │ │ │ │ ├── bison.py │ │ │ │ ├── c.py │ │ │ │ ├── c_aliases.py │ │ │ │ ├── c_config.py │ │ │ │ ├── c_osx.py │ │ │ │ ├── c_preproc.py │ │ │ │ ├── c_tests.py │ │ │ │ ├── ccroot.py │ │ │ │ ├── clang.py │ │ │ │ ├── clangxx.py │ │ │ │ ├── compiler_c.py │ │ │ │ ├── compiler_cxx.py │ │ │ │ ├── compiler_d.py │ │ │ │ ├── compiler_fc.py │ │ │ │ ├── cs.py │ │ │ │ ├── cxx.py │ │ │ │ ├── d.py │ │ │ │ ├── d_config.py │ │ │ │ ├── d_scan.py │ │ │ │ ├── dbus.py │ │ │ │ ├── dmd.py │ │ │ │ ├── errcheck.py │ │ │ │ ├── fc.py │ │ │ │ ├── fc_config.py │ │ │ │ ├── fc_scan.py │ │ │ │ ├── flex.py │ │ │ │ ├── g95.py │ │ │ │ ├── gas.py │ │ │ │ ├── gcc.py │ │ │ │ ├── gdc.py │ │ │ │ ├── gfortran.py │ │ │ │ ├── glib2.py │ │ │ │ ├── gnu_dirs.py │ │ │ │ ├── gxx.py │ │ │ │ ├── icc.py │ │ │ │ ├── icpc.py │ │ │ │ ├── ifort.py │ │ │ │ ├── intltool.py │ │ │ │ ├── irixcc.py │ │ │ │ ├── javaw.py │ │ │ │ ├── ldc2.py │ │ │ │ ├── lua.py │ │ │ │ ├── md5_tstamp.py │ │ │ │ ├── msvc.py │ │ │ │ ├── nasm.py │ │ │ │ ├── nobuild.py │ │ │ │ ├── perl.py │ │ │ │ ├── python.py │ │ │ │ ├── qt5.py │ │ │ │ ├── ruby.py │ │ │ │ ├── suncc.py │ │ │ │ ├── suncxx.py │ │ │ │ ├── tex.py │ │ │ │ ├── vala.py │ │ │ │ ├── waf_unit_test.py │ │ │ │ ├── winres.py │ │ │ │ ├── xlc.py │ │ │ │ └── xlcxx.py │ │ │ ├── Utils.py │ │ │ ├── __init__.py │ │ │ ├── ansiterm.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── autowaf.py │ │ │ │ ├── batched_cc.py │ │ │ │ ├── biber.py │ │ │ │ ├── bjam.py │ │ │ │ ├── blender.py │ │ │ │ ├── boo.py │ │ │ │ ├── boost.py │ │ │ │ ├── build_file_tracker.py │ │ │ │ ├── build_logs.py │ │ │ │ ├── buildcopy.py │ │ │ │ ├── c_bgxlc.py │ │ │ │ ├── c_dumbpreproc.py │ │ │ │ ├── c_emscripten.py │ │ │ │ ├── c_nec.py │ │ │ │ ├── cabal.py │ │ │ │ ├── cfg_altoptions.py │ │ │ │ ├── clang_compilation_database.py │ │ │ │ ├── codelite.py │ │ │ │ ├── color_gcc.py │ │ │ │ ├── color_rvct.py │ │ │ │ ├── compat15.py │ │ │ │ ├── cppcheck.py │ │ │ │ ├── cpplint.py │ │ │ │ ├── cross_gnu.py │ │ │ │ ├── cython.py │ │ │ │ ├── dcc.py │ │ │ │ ├── distnet.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── dpapi.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── erlang.py │ │ │ │ ├── fast_partial.py │ │ │ │ ├── fc_bgxlf.py │ │ │ │ ├── fc_cray.py │ │ │ │ ├── fc_nag.py │ │ │ │ ├── fc_nec.py │ │ │ │ ├── fc_open64.py │ │ │ │ ├── fc_pgfortran.py │ │ │ │ ├── fc_solstudio.py │ │ │ │ ├── fc_xlf.py │ │ │ │ ├── file_to_object.py │ │ │ │ ├── fluid.py │ │ │ │ ├── freeimage.py │ │ │ │ ├── fsb.py │ │ │ │ ├── fsc.py │ │ │ │ ├── gccdeps.py │ │ │ │ ├── gdbus.py │ │ │ │ ├── gob2.py │ │ │ │ ├── halide.py │ │ │ │ ├── javatest.py │ │ │ │ ├── kde4.py │ │ │ │ ├── local_rpath.py │ │ │ │ ├── lv2.py │ │ │ │ ├── make.py │ │ │ │ ├── midl.py │ │ │ │ ├── msvcdeps.py │ │ │ │ ├── msvs.py │ │ │ │ ├── netcache_client.py │ │ │ │ ├── objcopy.py │ │ │ │ ├── ocaml.py │ │ │ │ ├── package.py │ │ │ │ ├── parallel_debug.py │ │ │ │ ├── pch.py │ │ │ │ ├── pep8.py │ │ │ │ ├── pgicc.py │ │ │ │ ├── pgicxx.py │ │ │ │ ├── proc.py │ │ │ │ ├── protoc.py │ │ │ │ ├── pyqt5.py │ │ │ │ ├── pytest.py │ │ │ │ ├── qnxnto.py │ │ │ │ ├── qt4.py │ │ │ │ ├── relocation.py │ │ │ │ ├── remote.py │ │ │ │ ├── resx.py │ │ │ │ ├── review.py │ │ │ │ ├── rst.py │ │ │ │ ├── run_do_script.py │ │ │ │ ├── run_m_script.py │ │ │ │ ├── run_py_script.py │ │ │ │ ├── run_r_script.py │ │ │ │ ├── sas.py │ │ │ │ ├── satellite_assembly.py │ │ │ │ ├── scala.py │ │ │ │ ├── slow_qt4.py │ │ │ │ ├── softlink_libs.py │ │ │ │ ├── stale.py │ │ │ │ ├── stracedeps.py │ │ │ │ ├── swig.py │ │ │ │ ├── syms.py │ │ │ │ ├── ticgt.py │ │ │ │ ├── unity.py │ │ │ │ ├── use_config.py │ │ │ │ ├── valadoc.py │ │ │ │ ├── waf_xattr.py │ │ │ │ ├── why.py │ │ │ │ ├── win32_opts.py │ │ │ │ ├── wix.py │ │ │ │ └── xcode6.py │ │ │ ├── fixpy2.py │ │ │ ├── processor.py │ │ │ └── waf │ │ └── wscript │ ├── serd │ │ ├── .gitlab-ci.yml │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README.md │ │ ├── doc │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── index.html.in │ │ │ ├── layout.xml │ │ │ ├── mainpage.md │ │ │ ├── reference.doxygen.in │ │ │ ├── serdi-memory.svg │ │ │ ├── serdi-throughput.svg │ │ │ ├── serdi-time.svg │ │ │ ├── serdi.1 │ │ │ └── style.css │ │ ├── serd.pc.in │ │ ├── serd.ttl │ │ ├── serd │ │ │ └── serd.h │ │ ├── serd_bench.py │ │ ├── src │ │ │ ├── byte_source.c │ │ │ ├── env.c │ │ │ ├── n3.c │ │ │ ├── node.c │ │ │ ├── reader.c │ │ │ ├── reader.h │ │ │ ├── serd_internal.h │ │ │ ├── serdi.c │ │ │ ├── string.c │ │ │ ├── uri.c │ │ │ └── writer.c │ │ ├── tests │ │ │ ├── NQuadsTests │ │ │ │ ├── README │ │ │ │ ├── comment_following_triple.nq │ │ │ │ ├── langtagged_string.nq │ │ │ │ ├── lantag_with_subtag.nq │ │ │ │ ├── literal.nq │ │ │ │ ├── literal_all_controls.nq │ │ │ │ ├── literal_all_punctuation.nq │ │ │ │ ├── literal_ascii_boundaries.nq │ │ │ │ ├── literal_false.nq │ │ │ │ ├── literal_true.nq │ │ │ │ ├── literal_with_2_dquotes.nq │ │ │ │ ├── literal_with_2_squotes.nq │ │ │ │ ├── literal_with_BACKSPACE.nq │ │ │ │ ├── literal_with_CARRIAGE_RETURN.nq │ │ │ │ ├── literal_with_CHARACTER_TABULATION.nq │ │ │ │ ├── literal_with_FORM_FEED.nq │ │ │ │ ├── literal_with_LINE_FEED.nq │ │ │ │ ├── literal_with_REVERSE_SOLIDUS.nq │ │ │ │ ├── literal_with_REVERSE_SOLIDUS2.nq │ │ │ │ ├── literal_with_UTF8_boundaries.nq │ │ │ │ ├── literal_with_dquote.nq │ │ │ │ ├── literal_with_numeric_escape4.nq │ │ │ │ ├── literal_with_numeric_escape8.nq │ │ │ │ ├── literal_with_squote.nq │ │ │ │ ├── manifest.ttl │ │ │ │ ├── minimal_whitespace.nq │ │ │ │ ├── nq-syntax-bad-literal-01.nq │ │ │ │ ├── nq-syntax-bad-literal-02.nq │ │ │ │ ├── nq-syntax-bad-literal-03.nq │ │ │ │ ├── nq-syntax-bad-quint-01.nq │ │ │ │ ├── nq-syntax-bad-uri-01.nq │ │ │ │ ├── nq-syntax-bnode-01.nq │ │ │ │ ├── nq-syntax-bnode-02.nq │ │ │ │ ├── nq-syntax-bnode-03.nq │ │ │ │ ├── nq-syntax-bnode-04.nq │ │ │ │ ├── nq-syntax-bnode-05.nq │ │ │ │ ├── nq-syntax-bnode-06.nq │ │ │ │ ├── nq-syntax-uri-01.nq │ │ │ │ ├── nq-syntax-uri-02.nq │ │ │ │ ├── nq-syntax-uri-03.nq │ │ │ │ ├── nq-syntax-uri-04.nq │ │ │ │ ├── nq-syntax-uri-05.nq │ │ │ │ ├── nq-syntax-uri-06.nq │ │ │ │ ├── nt-syntax-bad-base-01.nq │ │ │ │ ├── nt-syntax-bad-esc-01.nq │ │ │ │ ├── nt-syntax-bad-esc-02.nq │ │ │ │ ├── nt-syntax-bad-esc-03.nq │ │ │ │ ├── nt-syntax-bad-lang-01.nq │ │ │ │ ├── nt-syntax-bad-num-01.nq │ │ │ │ ├── nt-syntax-bad-num-02.nq │ │ │ │ ├── nt-syntax-bad-num-03.nq │ │ │ │ ├── nt-syntax-bad-prefix-01.nq │ │ │ │ ├── nt-syntax-bad-string-01.nq │ │ │ │ ├── nt-syntax-bad-string-02.nq │ │ │ │ ├── nt-syntax-bad-string-03.nq │ │ │ │ ├── nt-syntax-bad-string-04.nq │ │ │ │ ├── nt-syntax-bad-string-05.nq │ │ │ │ ├── nt-syntax-bad-string-06.nq │ │ │ │ ├── nt-syntax-bad-string-07.nq │ │ │ │ ├── nt-syntax-bad-struct-01.nq │ │ │ │ ├── nt-syntax-bad-struct-02.nq │ │ │ │ ├── nt-syntax-bad-uri-01.nq │ │ │ │ ├── nt-syntax-bad-uri-02.nq │ │ │ │ ├── nt-syntax-bad-uri-03.nq │ │ │ │ ├── nt-syntax-bad-uri-04.nq │ │ │ │ ├── nt-syntax-bad-uri-05.nq │ │ │ │ ├── nt-syntax-bad-uri-06.nq │ │ │ │ ├── nt-syntax-bad-uri-07.nq │ │ │ │ ├── nt-syntax-bad-uri-08.nq │ │ │ │ ├── nt-syntax-bad-uri-09.nq │ │ │ │ ├── nt-syntax-bnode-01.nq │ │ │ │ ├── nt-syntax-bnode-02.nq │ │ │ │ ├── nt-syntax-bnode-03.nq │ │ │ │ ├── nt-syntax-datatypes-01.nq │ │ │ │ ├── nt-syntax-datatypes-02.nq │ │ │ │ ├── nt-syntax-file-01.nq │ │ │ │ ├── nt-syntax-file-02.nq │ │ │ │ ├── nt-syntax-file-03.nq │ │ │ │ ├── nt-syntax-str-esc-01.nq │ │ │ │ ├── nt-syntax-str-esc-02.nq │ │ │ │ ├── nt-syntax-str-esc-03.nq │ │ │ │ ├── nt-syntax-string-01.nq │ │ │ │ ├── nt-syntax-string-02.nq │ │ │ │ ├── nt-syntax-string-03.nq │ │ │ │ ├── nt-syntax-subm-01.nq │ │ │ │ ├── nt-syntax-uri-01.nq │ │ │ │ ├── nt-syntax-uri-02.nq │ │ │ │ ├── nt-syntax-uri-03.nq │ │ │ │ └── nt-syntax-uri-04.nq │ │ │ ├── NTriplesTests │ │ │ │ ├── README │ │ │ │ ├── comment_following_triple.nt │ │ │ │ ├── langtagged_string.nt │ │ │ │ ├── lantag_with_subtag.nt │ │ │ │ ├── literal.nt │ │ │ │ ├── literal_all_controls.nt │ │ │ │ ├── literal_all_punctuation.nt │ │ │ │ ├── literal_ascii_boundaries.nt │ │ │ │ ├── literal_false.nt │ │ │ │ ├── literal_true.nt │ │ │ │ ├── literal_with_2_dquotes.nt │ │ │ │ ├── literal_with_2_squotes.nt │ │ │ │ ├── literal_with_BACKSPACE.nt │ │ │ │ ├── literal_with_CARRIAGE_RETURN.nt │ │ │ │ ├── literal_with_CHARACTER_TABULATION.nt │ │ │ │ ├── literal_with_FORM_FEED.nt │ │ │ │ ├── literal_with_LINE_FEED.nt │ │ │ │ ├── literal_with_REVERSE_SOLIDUS.nt │ │ │ │ ├── literal_with_REVERSE_SOLIDUS2.nt │ │ │ │ ├── literal_with_UTF8_boundaries.nt │ │ │ │ ├── literal_with_dquote.nt │ │ │ │ ├── literal_with_numeric_escape4.nt │ │ │ │ ├── literal_with_numeric_escape8.nt │ │ │ │ ├── literal_with_squote.nt │ │ │ │ ├── manifest.ttl │ │ │ │ ├── minimal_whitespace.nt │ │ │ │ ├── nt-syntax-bad-base-01.nt │ │ │ │ ├── nt-syntax-bad-esc-01.nt │ │ │ │ ├── nt-syntax-bad-esc-02.nt │ │ │ │ ├── nt-syntax-bad-esc-03.nt │ │ │ │ ├── nt-syntax-bad-lang-01.nt │ │ │ │ ├── nt-syntax-bad-num-01.nt │ │ │ │ ├── nt-syntax-bad-num-02.nt │ │ │ │ ├── nt-syntax-bad-num-03.nt │ │ │ │ ├── nt-syntax-bad-prefix-01.nt │ │ │ │ ├── nt-syntax-bad-string-01.nt │ │ │ │ ├── nt-syntax-bad-string-02.nt │ │ │ │ ├── nt-syntax-bad-string-03.nt │ │ │ │ ├── nt-syntax-bad-string-04.nt │ │ │ │ ├── nt-syntax-bad-string-05.nt │ │ │ │ ├── nt-syntax-bad-string-06.nt │ │ │ │ ├── nt-syntax-bad-string-07.nt │ │ │ │ ├── nt-syntax-bad-struct-01.nt │ │ │ │ ├── nt-syntax-bad-struct-02.nt │ │ │ │ ├── nt-syntax-bad-uri-01.nt │ │ │ │ ├── nt-syntax-bad-uri-02.nt │ │ │ │ ├── nt-syntax-bad-uri-03.nt │ │ │ │ ├── nt-syntax-bad-uri-04.nt │ │ │ │ ├── nt-syntax-bad-uri-05.nt │ │ │ │ ├── nt-syntax-bad-uri-06.nt │ │ │ │ ├── nt-syntax-bad-uri-07.nt │ │ │ │ ├── nt-syntax-bad-uri-08.nt │ │ │ │ ├── nt-syntax-bad-uri-09.nt │ │ │ │ ├── nt-syntax-bnode-01.nt │ │ │ │ ├── nt-syntax-bnode-02.nt │ │ │ │ ├── nt-syntax-bnode-03.nt │ │ │ │ ├── nt-syntax-datatypes-01.nt │ │ │ │ ├── nt-syntax-datatypes-02.nt │ │ │ │ ├── nt-syntax-file-01.nt │ │ │ │ ├── nt-syntax-file-02.nt │ │ │ │ ├── nt-syntax-file-03.nt │ │ │ │ ├── nt-syntax-str-esc-01.nt │ │ │ │ ├── nt-syntax-str-esc-02.nt │ │ │ │ ├── nt-syntax-str-esc-03.nt │ │ │ │ ├── nt-syntax-string-01.nt │ │ │ │ ├── nt-syntax-string-02.nt │ │ │ │ ├── nt-syntax-string-03.nt │ │ │ │ ├── nt-syntax-subm-01.nt │ │ │ │ ├── nt-syntax-uri-01.nt │ │ │ │ ├── nt-syntax-uri-02.nt │ │ │ │ ├── nt-syntax-uri-03.nt │ │ │ │ └── nt-syntax-uri-04.nt │ │ │ ├── TriGTests │ │ │ │ ├── HYPHEN_MINUS_in_localName.nq │ │ │ │ ├── HYPHEN_MINUS_in_localName.trig │ │ │ │ ├── IRIREF_datatype.nq │ │ │ │ ├── IRIREF_datatype.trig │ │ │ │ ├── IRI_spo.nq │ │ │ │ ├── IRI_subject.trig │ │ │ │ ├── IRI_with_all_punctuation.nq │ │ │ │ ├── IRI_with_all_punctuation.trig │ │ │ │ ├── IRI_with_eight_digit_numeric_escape.trig │ │ │ │ ├── IRI_with_four_digit_numeric_escape.trig │ │ │ │ ├── LICENSE │ │ │ │ ├── LITERAL1.nq │ │ │ │ ├── LITERAL1.trig │ │ │ │ ├── LITERAL1_all_controls.nq │ │ │ │ ├── LITERAL1_all_controls.trig │ │ │ │ ├── LITERAL1_all_punctuation.nq │ │ │ │ ├── LITERAL1_all_punctuation.trig │ │ │ │ ├── LITERAL1_ascii_boundaries.nq │ │ │ │ ├── LITERAL1_ascii_boundaries.trig │ │ │ │ ├── LITERAL1_with_UTF8_boundaries.trig │ │ │ │ ├── LITERAL2.trig │ │ │ │ ├── LITERAL2_ascii_boundaries.nq │ │ │ │ ├── LITERAL2_ascii_boundaries.trig │ │ │ │ ├── LITERAL2_with_UTF8_boundaries.trig │ │ │ │ ├── LITERAL_LONG1.trig │ │ │ │ ├── LITERAL_LONG1_ascii_boundaries.nq │ │ │ │ ├── LITERAL_LONG1_ascii_boundaries.trig │ │ │ │ ├── LITERAL_LONG1_with_1_squote.nq │ │ │ │ ├── LITERAL_LONG1_with_1_squote.trig │ │ │ │ ├── LITERAL_LONG1_with_2_squotes.nq │ │ │ │ ├── LITERAL_LONG1_with_2_squotes.trig │ │ │ │ ├── LITERAL_LONG1_with_UTF8_boundaries.trig │ │ │ │ ├── LITERAL_LONG2.trig │ │ │ │ ├── LITERAL_LONG2_ascii_boundaries.nq │ │ │ │ ├── LITERAL_LONG2_ascii_boundaries.trig │ │ │ │ ├── LITERAL_LONG2_with_1_squote.nq │ │ │ │ ├── LITERAL_LONG2_with_1_squote.trig │ │ │ │ ├── LITERAL_LONG2_with_2_squotes.nq │ │ │ │ ├── LITERAL_LONG2_with_2_squotes.trig │ │ │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.nq │ │ │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.trig │ │ │ │ ├── LITERAL_LONG2_with_UTF8_boundaries.trig │ │ │ │ ├── LITERAL_with_UTF8_boundaries.nq │ │ │ │ ├── README │ │ │ │ ├── SPARQL_style_base.trig │ │ │ │ ├── SPARQL_style_prefix.trig │ │ │ │ ├── alternating_bnode_graphs.nq │ │ │ │ ├── alternating_bnode_graphs.trig │ │ │ │ ├── alternating_iri_graphs.nq │ │ │ │ ├── alternating_iri_graphs.trig │ │ │ │ ├── anonymous_blank_node_graph.nq │ │ │ │ ├── anonymous_blank_node_graph.trig │ │ │ │ ├── anonymous_blank_node_object.nq │ │ │ │ ├── anonymous_blank_node_object.trig │ │ │ │ ├── anonymous_blank_node_subject.nq │ │ │ │ ├── anonymous_blank_node_subject.trig │ │ │ │ ├── bareword_a_predicate.nq │ │ │ │ ├── bareword_a_predicate.trig │ │ │ │ ├── bareword_decimal.nq │ │ │ │ ├── bareword_decimal.trig │ │ │ │ ├── bareword_double.nq │ │ │ │ ├── bareword_double.trig │ │ │ │ ├── bareword_integer.trig │ │ │ │ ├── blankNodePropertyList_as_object.nq │ │ │ │ ├── blankNodePropertyList_as_object.trig │ │ │ │ ├── blankNodePropertyList_as_subject.nq │ │ │ │ ├── blankNodePropertyList_as_subject.trig │ │ │ │ ├── blankNodePropertyList_containing_collection.nq │ │ │ │ ├── blankNodePropertyList_containing_collection.trig │ │ │ │ ├── blankNodePropertyList_with_multiple_triples.nq │ │ │ │ ├── blankNodePropertyList_with_multiple_triples.trig │ │ │ │ ├── collection_object.nq │ │ │ │ ├── collection_object.trig │ │ │ │ ├── collection_subject.nq │ │ │ │ ├── collection_subject.trig │ │ │ │ ├── comment_following_PNAME_NS.nq │ │ │ │ ├── comment_following_PNAME_NS.trig │ │ │ │ ├── comment_following_localName.trig │ │ │ │ ├── default_namespace_IRI.trig │ │ │ │ ├── double_lower_case_e.nq │ │ │ │ ├── double_lower_case_e.trig │ │ │ │ ├── empty_collection.nq │ │ │ │ ├── empty_collection.trig │ │ │ │ ├── first.nq │ │ │ │ ├── first.trig │ │ │ │ ├── labeled_blank_node_graph.nq │ │ │ │ ├── labeled_blank_node_graph.trig │ │ │ │ ├── labeled_blank_node_object.nq │ │ │ │ ├── labeled_blank_node_object.trig │ │ │ │ ├── labeled_blank_node_subject.nq │ │ │ │ ├── labeled_blank_node_subject.trig │ │ │ │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.nq │ │ │ │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.trig │ │ │ │ ├── labeled_blank_node_with_leading_digit.nq │ │ │ │ ├── labeled_blank_node_with_leading_digit.trig │ │ │ │ ├── labeled_blank_node_with_leading_underscore.nq │ │ │ │ ├── labeled_blank_node_with_leading_underscore.trig │ │ │ │ ├── labeled_blank_node_with_non_leading_extras.nq │ │ │ │ ├── labeled_blank_node_with_non_leading_extras.trig │ │ │ │ ├── langtagged_LONG.trig │ │ │ │ ├── langtagged_LONG_with_subtag.nq │ │ │ │ ├── langtagged_LONG_with_subtag.trig │ │ │ │ ├── langtagged_non_LONG.nq │ │ │ │ ├── langtagged_non_LONG.trig │ │ │ │ ├── lantag_with_subtag.nq │ │ │ │ ├── lantag_with_subtag.trig │ │ │ │ ├── last.nq │ │ │ │ ├── last.trig │ │ │ │ ├── literal_false.nq │ │ │ │ ├── literal_false.trig │ │ │ │ ├── literal_true.nq │ │ │ │ ├── literal_true.trig │ │ │ │ ├── literal_with_BACKSPACE.nq │ │ │ │ ├── literal_with_BACKSPACE.trig │ │ │ │ ├── literal_with_CARRIAGE_RETURN.nq │ │ │ │ ├── literal_with_CARRIAGE_RETURN.trig │ │ │ │ ├── literal_with_CHARACTER_TABULATION.nq │ │ │ │ ├── literal_with_CHARACTER_TABULATION.trig │ │ │ │ ├── literal_with_FORM_FEED.nq │ │ │ │ ├── literal_with_FORM_FEED.trig │ │ │ │ ├── literal_with_LINE_FEED.nq │ │ │ │ ├── literal_with_LINE_FEED.trig │ │ │ │ ├── literal_with_REVERSE_SOLIDUS.nq │ │ │ │ ├── literal_with_REVERSE_SOLIDUS.trig │ │ │ │ ├── literal_with_escaped_BACKSPACE.trig │ │ │ │ ├── literal_with_escaped_CARRIAGE_RETURN.trig │ │ │ │ ├── literal_with_escaped_CHARACTER_TABULATION.trig │ │ │ │ ├── literal_with_escaped_FORM_FEED.trig │ │ │ │ ├── literal_with_escaped_LINE_FEED.trig │ │ │ │ ├── literal_with_numeric_escape4.nq │ │ │ │ ├── literal_with_numeric_escape4.trig │ │ │ │ ├── literal_with_numeric_escape8.trig │ │ │ │ ├── localName_with_PN_CHARS_BASE_character_boundaries.nq │ │ │ │ ├── localName_with_PN_CHARS_BASE_character_boundaries.trig │ │ │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.nq │ │ │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.trig │ │ │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.nq │ │ │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.trig │ │ │ │ ├── localName_with_leading_digit.nq │ │ │ │ ├── localName_with_leading_digit.trig │ │ │ │ ├── localName_with_leading_underscore.nq │ │ │ │ ├── localName_with_leading_underscore.trig │ │ │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.nq │ │ │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.trig │ │ │ │ ├── localName_with_non_leading_extras.nq │ │ │ │ ├── localName_with_non_leading_extras.trig │ │ │ │ ├── localname_with_COLON.nq │ │ │ │ ├── localname_with_COLON.trig │ │ │ │ ├── manifest.ttl │ │ │ │ ├── negative_numeric.nq │ │ │ │ ├── negative_numeric.trig │ │ │ │ ├── nested_blankNodePropertyLists.nq │ │ │ │ ├── nested_blankNodePropertyLists.trig │ │ │ │ ├── nested_collection.nq │ │ │ │ ├── nested_collection.trig │ │ │ │ ├── number_sign_following_PNAME_NS.nq │ │ │ │ ├── number_sign_following_PNAME_NS.trig │ │ │ │ ├── number_sign_following_localName.nq │ │ │ │ ├── number_sign_following_localName.trig │ │ │ │ ├── numeric_with_leading_0.nq │ │ │ │ ├── numeric_with_leading_0.trig │ │ │ │ ├── objectList_with_two_objects.nq │ │ │ │ ├── objectList_with_two_objects.trig │ │ │ │ ├── old_style_base.trig │ │ │ │ ├── old_style_prefix.trig │ │ │ │ ├── percent_escaped_localName.nq │ │ │ │ ├── percent_escaped_localName.trig │ │ │ │ ├── positive_numeric.nq │ │ │ │ ├── positive_numeric.trig │ │ │ │ ├── predicateObjectList_with_two_objectLists.nq │ │ │ │ ├── predicateObjectList_with_two_objectLists.trig │ │ │ │ ├── prefix_only_IRI.trig │ │ │ │ ├── prefix_reassigned_and_used.nq │ │ │ │ ├── prefix_reassigned_and_used.trig │ │ │ │ ├── prefix_with_PN_CHARS_BASE_character_boundaries.trig │ │ │ │ ├── prefix_with_non_leading_extras.trig │ │ │ │ ├── prefixed_IRI_object.trig │ │ │ │ ├── prefixed_IRI_predicate.trig │ │ │ │ ├── prefixed_name_datatype.trig │ │ │ │ ├── repeated_semis_at_end.trig │ │ │ │ ├── repeated_semis_not_at_end.nq │ │ │ │ ├── repeated_semis_not_at_end.trig │ │ │ │ ├── reserved_escaped_localName.nq │ │ │ │ ├── reserved_escaped_localName.trig │ │ │ │ ├── sole_blankNodePropertyList.nq │ │ │ │ ├── sole_blankNodePropertyList.trig │ │ │ │ ├── trig-bnodeplist-graph-bad-01.trig │ │ │ │ ├── trig-collection-graph-bad-01.trig │ │ │ │ ├── trig-collection-graph-bad-02.trig │ │ │ │ ├── trig-eval-bad-01.trig │ │ │ │ ├── trig-eval-bad-02.trig │ │ │ │ ├── trig-eval-bad-03.trig │ │ │ │ ├── trig-eval-bad-04.trig │ │ │ │ ├── trig-eval-struct-01.nq │ │ │ │ ├── trig-eval-struct-01.trig │ │ │ │ ├── trig-eval-struct-02.nq │ │ │ │ ├── trig-eval-struct-02.trig │ │ │ │ ├── trig-graph-bad-01.trig │ │ │ │ ├── trig-graph-bad-02.trig │ │ │ │ ├── trig-graph-bad-03.trig │ │ │ │ ├── trig-graph-bad-04.trig │ │ │ │ ├── trig-graph-bad-05.trig │ │ │ │ ├── trig-graph-bad-06.trig │ │ │ │ ├── trig-graph-bad-07.trig │ │ │ │ ├── trig-graph-bad-08.trig │ │ │ │ ├── trig-graph-bad-09.trig │ │ │ │ ├── trig-graph-bad-10.trig │ │ │ │ ├── trig-graph-bad-11.trig │ │ │ │ ├── trig-kw-graph-01.trig │ │ │ │ ├── trig-kw-graph-02.trig │ │ │ │ ├── trig-kw-graph-03.trig │ │ │ │ ├── trig-kw-graph-04.trig │ │ │ │ ├── trig-kw-graph-05.trig │ │ │ │ ├── trig-kw-graph-06.trig │ │ │ │ ├── trig-kw-graph-07.trig │ │ │ │ ├── trig-kw-graph-08.trig │ │ │ │ ├── trig-kw-graph-09.trig │ │ │ │ ├── trig-kw-graph-10.trig │ │ │ │ ├── trig-subm-01.nq │ │ │ │ ├── trig-subm-01.trig │ │ │ │ ├── trig-subm-02.nq │ │ │ │ ├── trig-subm-02.trig │ │ │ │ ├── trig-subm-03.nq │ │ │ │ ├── trig-subm-03.trig │ │ │ │ ├── trig-subm-04.nq │ │ │ │ ├── trig-subm-04.trig │ │ │ │ ├── trig-subm-05.nq │ │ │ │ ├── trig-subm-05.trig │ │ │ │ ├── trig-subm-06.nq │ │ │ │ ├── trig-subm-06.trig │ │ │ │ ├── trig-subm-07.nq │ │ │ │ ├── trig-subm-07.trig │ │ │ │ ├── trig-subm-08.nq │ │ │ │ ├── trig-subm-08.trig │ │ │ │ ├── trig-subm-09.nq │ │ │ │ ├── trig-subm-09.trig │ │ │ │ ├── trig-subm-10.nq │ │ │ │ ├── trig-subm-10.trig │ │ │ │ ├── trig-subm-11.nq │ │ │ │ ├── trig-subm-11.trig │ │ │ │ ├── trig-subm-12.nq │ │ │ │ ├── trig-subm-12.trig │ │ │ │ ├── trig-subm-13.nq │ │ │ │ ├── trig-subm-13.trig │ │ │ │ ├── trig-subm-14.nq │ │ │ │ ├── trig-subm-14.trig │ │ │ │ ├── trig-subm-15.nq │ │ │ │ ├── trig-subm-15.trig │ │ │ │ ├── trig-subm-16.nq │ │ │ │ ├── trig-subm-16.trig │ │ │ │ ├── trig-subm-17.nq │ │ │ │ ├── trig-subm-17.trig │ │ │ │ ├── trig-subm-18.nq │ │ │ │ ├── trig-subm-18.trig │ │ │ │ ├── trig-subm-19.nq │ │ │ │ ├── trig-subm-19.trig │ │ │ │ ├── trig-subm-20.nq │ │ │ │ ├── trig-subm-20.trig │ │ │ │ ├── trig-subm-21.nq │ │ │ │ ├── trig-subm-21.trig │ │ │ │ ├── trig-subm-22.nq │ │ │ │ ├── trig-subm-22.trig │ │ │ │ ├── trig-subm-23.nq │ │ │ │ ├── trig-subm-23.trig │ │ │ │ ├── trig-subm-24.nq │ │ │ │ ├── trig-subm-24.trig │ │ │ │ ├── trig-subm-25.nq │ │ │ │ ├── trig-subm-25.trig │ │ │ │ ├── trig-subm-26.nq │ │ │ │ ├── trig-subm-26.trig │ │ │ │ ├── trig-subm-27.nq │ │ │ │ ├── trig-subm-27.trig │ │ │ │ ├── trig-syntax-bad-LITERAL2_with_langtag_and_datatype.trig │ │ │ │ ├── trig-syntax-bad-base-01.trig │ │ │ │ ├── trig-syntax-bad-base-02.trig │ │ │ │ ├── trig-syntax-bad-base-03.trig │ │ │ │ ├── trig-syntax-bad-base-04.trig │ │ │ │ ├── trig-syntax-bad-base-05.trig │ │ │ │ ├── trig-syntax-bad-blank-label-dot-end.trig │ │ │ │ ├── trig-syntax-bad-esc-01.trig │ │ │ │ ├── trig-syntax-bad-esc-02.trig │ │ │ │ ├── trig-syntax-bad-esc-03.trig │ │ │ │ ├── trig-syntax-bad-esc-04.trig │ │ │ │ ├── trig-syntax-bad-kw-01.trig │ │ │ │ ├── trig-syntax-bad-kw-02.trig │ │ │ │ ├── trig-syntax-bad-kw-03.trig │ │ │ │ ├── trig-syntax-bad-kw-04.trig │ │ │ │ ├── trig-syntax-bad-kw-05.trig │ │ │ │ ├── trig-syntax-bad-lang-01.trig │ │ │ │ ├── trig-syntax-bad-list-01.trig │ │ │ │ ├── trig-syntax-bad-list-02.trig │ │ │ │ ├── trig-syntax-bad-list-03.trig │ │ │ │ ├── trig-syntax-bad-list-04.trig │ │ │ │ ├── trig-syntax-bad-ln-dash-start.trig │ │ │ │ ├── trig-syntax-bad-ln-escape-start.trig │ │ │ │ ├── trig-syntax-bad-ln-escape.trig │ │ │ │ ├── trig-syntax-bad-missing-ns-dot-end.trig │ │ │ │ ├── trig-syntax-bad-missing-ns-dot-start.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-01.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-02.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-03.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-04.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-05.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-06.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-07.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-08.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-09.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-10.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-11.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-12.trig │ │ │ │ ├── trig-syntax-bad-n3-extras-13.trig │ │ │ │ ├── trig-syntax-bad-ns-dot-end.trig │ │ │ │ ├── trig-syntax-bad-ns-dot-start.trig │ │ │ │ ├── trig-syntax-bad-num-01.trig │ │ │ │ ├── trig-syntax-bad-num-02.trig │ │ │ │ ├── trig-syntax-bad-num-03.trig │ │ │ │ ├── trig-syntax-bad-num-04.trig │ │ │ │ ├── trig-syntax-bad-num-05.trig │ │ │ │ ├── trig-syntax-bad-number-dot-in-anon.trig │ │ │ │ ├── trig-syntax-bad-pname-01.trig │ │ │ │ ├── trig-syntax-bad-pname-02.trig │ │ │ │ ├── trig-syntax-bad-pname-03.trig │ │ │ │ ├── trig-syntax-bad-prefix-01.trig │ │ │ │ ├── trig-syntax-bad-prefix-02.trig │ │ │ │ ├── trig-syntax-bad-prefix-03.trig │ │ │ │ ├── trig-syntax-bad-prefix-04.trig │ │ │ │ ├── trig-syntax-bad-prefix-05.trig │ │ │ │ ├── trig-syntax-bad-prefix-06.trig │ │ │ │ ├── trig-syntax-bad-prefix-07.trig │ │ │ │ ├── trig-syntax-bad-string-01.trig │ │ │ │ ├── trig-syntax-bad-string-02.trig │ │ │ │ ├── trig-syntax-bad-string-03.trig │ │ │ │ ├── trig-syntax-bad-string-04.trig │ │ │ │ ├── trig-syntax-bad-string-05.trig │ │ │ │ ├── trig-syntax-bad-string-06.trig │ │ │ │ ├── trig-syntax-bad-string-07.trig │ │ │ │ ├── trig-syntax-bad-struct-02.trig │ │ │ │ ├── trig-syntax-bad-struct-03.trig │ │ │ │ ├── trig-syntax-bad-struct-04.trig │ │ │ │ ├── trig-syntax-bad-struct-05.trig │ │ │ │ ├── trig-syntax-bad-struct-06.trig │ │ │ │ ├── trig-syntax-bad-struct-07.trig │ │ │ │ ├── trig-syntax-bad-struct-09.trig │ │ │ │ ├── trig-syntax-bad-struct-10.trig │ │ │ │ ├── trig-syntax-bad-struct-12.trig │ │ │ │ ├── trig-syntax-bad-struct-13.trig │ │ │ │ ├── trig-syntax-bad-struct-14.trig │ │ │ │ ├── trig-syntax-bad-struct-15.trig │ │ │ │ ├── trig-syntax-bad-struct-16.trig │ │ │ │ ├── trig-syntax-bad-struct-17.trig │ │ │ │ ├── trig-syntax-bad-uri-01.trig │ │ │ │ ├── trig-syntax-bad-uri-02.trig │ │ │ │ ├── trig-syntax-bad-uri-03.trig │ │ │ │ ├── trig-syntax-bad-uri-04.trig │ │ │ │ ├── trig-syntax-bad-uri-05.trig │ │ │ │ ├── trig-syntax-base-01.trig │ │ │ │ ├── trig-syntax-base-02.trig │ │ │ │ ├── trig-syntax-base-03.trig │ │ │ │ ├── trig-syntax-base-04.trig │ │ │ │ ├── trig-syntax-blank-label.trig │ │ │ │ ├── trig-syntax-bnode-01.trig │ │ │ │ ├── trig-syntax-bnode-02.trig │ │ │ │ ├── trig-syntax-bnode-03.trig │ │ │ │ ├── trig-syntax-bnode-04.trig │ │ │ │ ├── trig-syntax-bnode-05.trig │ │ │ │ ├── trig-syntax-bnode-06.trig │ │ │ │ ├── trig-syntax-bnode-07.trig │ │ │ │ ├── trig-syntax-bnode-08.trig │ │ │ │ ├── trig-syntax-bnode-09.trig │ │ │ │ ├── trig-syntax-bnode-10.trig │ │ │ │ ├── trig-syntax-datatypes-01.trig │ │ │ │ ├── trig-syntax-datatypes-02.trig │ │ │ │ ├── trig-syntax-file-01.trig │ │ │ │ ├── trig-syntax-file-02.trig │ │ │ │ ├── trig-syntax-file-03.trig │ │ │ │ ├── trig-syntax-kw-01.trig │ │ │ │ ├── trig-syntax-kw-02.trig │ │ │ │ ├── trig-syntax-kw-03.trig │ │ │ │ ├── trig-syntax-lists-01.trig │ │ │ │ ├── trig-syntax-lists-02.trig │ │ │ │ ├── trig-syntax-lists-03.trig │ │ │ │ ├── trig-syntax-lists-04.trig │ │ │ │ ├── trig-syntax-lists-05.trig │ │ │ │ ├── trig-syntax-ln-colons.trig │ │ │ │ ├── trig-syntax-ln-dots.trig │ │ │ │ ├── trig-syntax-minimal-whitespace-01.trig │ │ │ │ ├── trig-syntax-ns-dots.trig │ │ │ │ ├── trig-syntax-number-01.trig │ │ │ │ ├── trig-syntax-number-02.trig │ │ │ │ ├── trig-syntax-number-03.trig │ │ │ │ ├── trig-syntax-number-04.trig │ │ │ │ ├── trig-syntax-number-05.trig │ │ │ │ ├── trig-syntax-number-06.trig │ │ │ │ ├── trig-syntax-number-07.trig │ │ │ │ ├── trig-syntax-number-08.trig │ │ │ │ ├── trig-syntax-number-09.trig │ │ │ │ ├── trig-syntax-number-10.trig │ │ │ │ ├── trig-syntax-number-11.trig │ │ │ │ ├── trig-syntax-pname-esc-01.trig │ │ │ │ ├── trig-syntax-pname-esc-02.trig │ │ │ │ ├── trig-syntax-pname-esc-03.trig │ │ │ │ ├── trig-syntax-prefix-01.trig │ │ │ │ ├── trig-syntax-prefix-02.trig │ │ │ │ ├── trig-syntax-prefix-03.trig │ │ │ │ ├── trig-syntax-prefix-04.trig │ │ │ │ ├── trig-syntax-prefix-05.trig │ │ │ │ ├── trig-syntax-prefix-06.trig │ │ │ │ ├── trig-syntax-prefix-07.trig │ │ │ │ ├── trig-syntax-prefix-08.trig │ │ │ │ ├── trig-syntax-prefix-09.trig │ │ │ │ ├── trig-syntax-str-esc-01.trig │ │ │ │ ├── trig-syntax-str-esc-02.trig │ │ │ │ ├── trig-syntax-str-esc-03.trig │ │ │ │ ├── trig-syntax-string-01.trig │ │ │ │ ├── trig-syntax-string-02.trig │ │ │ │ ├── trig-syntax-string-03.trig │ │ │ │ ├── trig-syntax-string-04.trig │ │ │ │ ├── trig-syntax-string-05.trig │ │ │ │ ├── trig-syntax-string-06.trig │ │ │ │ ├── trig-syntax-string-07.trig │ │ │ │ ├── trig-syntax-string-08.trig │ │ │ │ ├── trig-syntax-string-09.trig │ │ │ │ ├── trig-syntax-string-10.trig │ │ │ │ ├── trig-syntax-string-11.trig │ │ │ │ ├── trig-syntax-struct-01.trig │ │ │ │ ├── trig-syntax-struct-02.trig │ │ │ │ ├── trig-syntax-struct-03.trig │ │ │ │ ├── trig-syntax-struct-04.trig │ │ │ │ ├── trig-syntax-struct-05.trig │ │ │ │ ├── trig-syntax-struct-06.trig │ │ │ │ ├── trig-syntax-struct-07.trig │ │ │ │ ├── trig-syntax-uri-01.trig │ │ │ │ ├── trig-syntax-uri-02.trig │ │ │ │ ├── trig-syntax-uri-03.trig │ │ │ │ ├── trig-syntax-uri-04.trig │ │ │ │ ├── trig-turtle-01.trig │ │ │ │ ├── trig-turtle-02.trig │ │ │ │ ├── trig-turtle-03.trig │ │ │ │ ├── trig-turtle-04.trig │ │ │ │ ├── trig-turtle-05.trig │ │ │ │ ├── trig-turtle-06.trig │ │ │ │ ├── trig-turtle-bad-01.trig │ │ │ │ ├── trig-turtle-bad-02.trig │ │ │ │ ├── two_LITERAL_LONG2s.nq │ │ │ │ ├── two_LITERAL_LONG2s.trig │ │ │ │ ├── underscore_in_localName.nq │ │ │ │ └── underscore_in_localName.trig │ │ │ ├── TurtleTests │ │ │ │ ├── HYPHEN_MINUS_in_localName.nt │ │ │ │ ├── HYPHEN_MINUS_in_localName.ttl │ │ │ │ ├── IRIREF_datatype.nt │ │ │ │ ├── IRIREF_datatype.ttl │ │ │ │ ├── IRI_spo.nt │ │ │ │ ├── IRI_subject.ttl │ │ │ │ ├── IRI_with_all_punctuation.nt │ │ │ │ ├── IRI_with_all_punctuation.ttl │ │ │ │ ├── IRI_with_eight_digit_numeric_escape.ttl │ │ │ │ ├── IRI_with_four_digit_numeric_escape.ttl │ │ │ │ ├── LICENSE │ │ │ │ ├── LITERAL1.nt │ │ │ │ ├── LITERAL1.ttl │ │ │ │ ├── LITERAL1_all_controls.nt │ │ │ │ ├── LITERAL1_all_controls.ttl │ │ │ │ ├── LITERAL1_all_punctuation.nt │ │ │ │ ├── LITERAL1_all_punctuation.ttl │ │ │ │ ├── LITERAL1_ascii_boundaries.nt │ │ │ │ ├── LITERAL1_ascii_boundaries.ttl │ │ │ │ ├── LITERAL1_with_UTF8_boundaries.ttl │ │ │ │ ├── LITERAL2.ttl │ │ │ │ ├── LITERAL2_ascii_boundaries.nt │ │ │ │ ├── LITERAL2_ascii_boundaries.ttl │ │ │ │ ├── LITERAL2_with_UTF8_boundaries.ttl │ │ │ │ ├── LITERAL_LONG1.ttl │ │ │ │ ├── LITERAL_LONG1_ascii_boundaries.nt │ │ │ │ ├── LITERAL_LONG1_ascii_boundaries.ttl │ │ │ │ ├── LITERAL_LONG1_with_1_squote.nt │ │ │ │ ├── LITERAL_LONG1_with_1_squote.ttl │ │ │ │ ├── LITERAL_LONG1_with_2_squotes.nt │ │ │ │ ├── LITERAL_LONG1_with_2_squotes.ttl │ │ │ │ ├── LITERAL_LONG1_with_UTF8_boundaries.ttl │ │ │ │ ├── LITERAL_LONG2.ttl │ │ │ │ ├── LITERAL_LONG2_ascii_boundaries.nt │ │ │ │ ├── LITERAL_LONG2_ascii_boundaries.ttl │ │ │ │ ├── LITERAL_LONG2_with_1_squote.nt │ │ │ │ ├── LITERAL_LONG2_with_1_squote.ttl │ │ │ │ ├── LITERAL_LONG2_with_2_squotes.nt │ │ │ │ ├── LITERAL_LONG2_with_2_squotes.ttl │ │ │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.nt │ │ │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.ttl │ │ │ │ ├── LITERAL_LONG2_with_UTF8_boundaries.ttl │ │ │ │ ├── LITERAL_with_UTF8_boundaries.nt │ │ │ │ ├── README │ │ │ │ ├── SPARQL_style_base.ttl │ │ │ │ ├── SPARQL_style_prefix.ttl │ │ │ │ ├── anonymous_blank_node_object.nt │ │ │ │ ├── anonymous_blank_node_object.ttl │ │ │ │ ├── anonymous_blank_node_subject.nt │ │ │ │ ├── anonymous_blank_node_subject.ttl │ │ │ │ ├── bareword_a_predicate.nt │ │ │ │ ├── bareword_a_predicate.ttl │ │ │ │ ├── bareword_decimal.nt │ │ │ │ ├── bareword_decimal.ttl │ │ │ │ ├── bareword_double.nt │ │ │ │ ├── bareword_double.ttl │ │ │ │ ├── bareword_integer.ttl │ │ │ │ ├── blankNodePropertyList_as_object.nt │ │ │ │ ├── blankNodePropertyList_as_object.ttl │ │ │ │ ├── blankNodePropertyList_as_subject.nt │ │ │ │ ├── blankNodePropertyList_as_subject.ttl │ │ │ │ ├── blankNodePropertyList_containing_collection.nt │ │ │ │ ├── blankNodePropertyList_containing_collection.ttl │ │ │ │ ├── blankNodePropertyList_with_multiple_triples.nt │ │ │ │ ├── blankNodePropertyList_with_multiple_triples.ttl │ │ │ │ ├── collection_object.nt │ │ │ │ ├── collection_object.ttl │ │ │ │ ├── collection_subject.nt │ │ │ │ ├── collection_subject.ttl │ │ │ │ ├── comment_following_PNAME_NS.nt │ │ │ │ ├── comment_following_PNAME_NS.ttl │ │ │ │ ├── comment_following_localName.ttl │ │ │ │ ├── default_namespace_IRI.ttl │ │ │ │ ├── double_lower_case_e.nt │ │ │ │ ├── double_lower_case_e.ttl │ │ │ │ ├── empty_collection.nt │ │ │ │ ├── empty_collection.ttl │ │ │ │ ├── first.nt │ │ │ │ ├── first.ttl │ │ │ │ ├── labeled_blank_node_object.nt │ │ │ │ ├── labeled_blank_node_object.ttl │ │ │ │ ├── labeled_blank_node_subject.nt │ │ │ │ ├── labeled_blank_node_subject.ttl │ │ │ │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.nt │ │ │ │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.ttl │ │ │ │ ├── labeled_blank_node_with_leading_digit.nt │ │ │ │ ├── labeled_blank_node_with_leading_digit.ttl │ │ │ │ ├── labeled_blank_node_with_leading_underscore.nt │ │ │ │ ├── labeled_blank_node_with_leading_underscore.ttl │ │ │ │ ├── labeled_blank_node_with_non_leading_extras.nt │ │ │ │ ├── labeled_blank_node_with_non_leading_extras.ttl │ │ │ │ ├── langtagged_LONG.ttl │ │ │ │ ├── langtagged_LONG_with_subtag.nt │ │ │ │ ├── langtagged_LONG_with_subtag.ttl │ │ │ │ ├── langtagged_non_LONG.nt │ │ │ │ ├── langtagged_non_LONG.ttl │ │ │ │ ├── lantag_with_subtag.nt │ │ │ │ ├── lantag_with_subtag.ttl │ │ │ │ ├── last.nt │ │ │ │ ├── last.ttl │ │ │ │ ├── literal_false.nt │ │ │ │ ├── literal_false.ttl │ │ │ │ ├── literal_true.nt │ │ │ │ ├── literal_true.ttl │ │ │ │ ├── literal_with_BACKSPACE.nt │ │ │ │ ├── literal_with_BACKSPACE.ttl │ │ │ │ ├── literal_with_CARRIAGE_RETURN.nt │ │ │ │ ├── literal_with_CARRIAGE_RETURN.ttl │ │ │ │ ├── literal_with_CHARACTER_TABULATION.nt │ │ │ │ ├── literal_with_CHARACTER_TABULATION.ttl │ │ │ │ ├── literal_with_FORM_FEED.nt │ │ │ │ ├── literal_with_FORM_FEED.ttl │ │ │ │ ├── literal_with_LINE_FEED.nt │ │ │ │ ├── literal_with_LINE_FEED.ttl │ │ │ │ ├── literal_with_REVERSE_SOLIDUS.nt │ │ │ │ ├── literal_with_REVERSE_SOLIDUS.ttl │ │ │ │ ├── literal_with_escaped_BACKSPACE.ttl │ │ │ │ ├── literal_with_escaped_CARRIAGE_RETURN.ttl │ │ │ │ ├── literal_with_escaped_CHARACTER_TABULATION.ttl │ │ │ │ ├── literal_with_escaped_FORM_FEED.ttl │ │ │ │ ├── literal_with_escaped_LINE_FEED.ttl │ │ │ │ ├── literal_with_numeric_escape4.nt │ │ │ │ ├── literal_with_numeric_escape4.ttl │ │ │ │ ├── literal_with_numeric_escape8.ttl │ │ │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.nt │ │ │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.ttl │ │ │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.nt │ │ │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.ttl │ │ │ │ ├── localName_with_leading_digit.nt │ │ │ │ ├── localName_with_leading_digit.ttl │ │ │ │ ├── localName_with_leading_underscore.nt │ │ │ │ ├── localName_with_leading_underscore.ttl │ │ │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.nt │ │ │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.ttl │ │ │ │ ├── localName_with_non_leading_extras.nt │ │ │ │ ├── localName_with_non_leading_extras.ttl │ │ │ │ ├── localname_with_COLON.nt │ │ │ │ ├── localname_with_COLON.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── negative_numeric.nt │ │ │ │ ├── negative_numeric.ttl │ │ │ │ ├── nested_blankNodePropertyLists.nt │ │ │ │ ├── nested_blankNodePropertyLists.ttl │ │ │ │ ├── nested_collection.nt │ │ │ │ ├── nested_collection.ttl │ │ │ │ ├── number_sign_following_PNAME_NS.nt │ │ │ │ ├── number_sign_following_PNAME_NS.ttl │ │ │ │ ├── number_sign_following_localName.nt │ │ │ │ ├── number_sign_following_localName.ttl │ │ │ │ ├── numeric_with_leading_0.nt │ │ │ │ ├── numeric_with_leading_0.ttl │ │ │ │ ├── objectList_with_two_objects.nt │ │ │ │ ├── objectList_with_two_objects.ttl │ │ │ │ ├── old_style_base.ttl │ │ │ │ ├── old_style_prefix.ttl │ │ │ │ ├── percent_escaped_localName.nt │ │ │ │ ├── percent_escaped_localName.ttl │ │ │ │ ├── positive_numeric.nt │ │ │ │ ├── positive_numeric.ttl │ │ │ │ ├── predicateObjectList_with_two_objectLists.nt │ │ │ │ ├── predicateObjectList_with_two_objectLists.ttl │ │ │ │ ├── prefix_only_IRI.ttl │ │ │ │ ├── prefix_reassigned_and_used.nt │ │ │ │ ├── prefix_reassigned_and_used.ttl │ │ │ │ ├── prefix_with_PN_CHARS_BASE_character_boundaries.ttl │ │ │ │ ├── prefix_with_non_leading_extras.ttl │ │ │ │ ├── prefixed_IRI_object.ttl │ │ │ │ ├── prefixed_IRI_predicate.ttl │ │ │ │ ├── prefixed_name_datatype.ttl │ │ │ │ ├── repeated_semis_at_end.ttl │ │ │ │ ├── repeated_semis_not_at_end.nt │ │ │ │ ├── repeated_semis_not_at_end.ttl │ │ │ │ ├── reserved_escaped_localName.nt │ │ │ │ ├── reserved_escaped_localName.ttl │ │ │ │ ├── sole_blankNodePropertyList.nt │ │ │ │ ├── sole_blankNodePropertyList.ttl │ │ │ │ ├── turtle-eval-bad-01.ttl │ │ │ │ ├── turtle-eval-bad-02.ttl │ │ │ │ ├── turtle-eval-bad-03.ttl │ │ │ │ ├── turtle-eval-bad-04.ttl │ │ │ │ ├── turtle-eval-struct-01.nt │ │ │ │ ├── turtle-eval-struct-01.ttl │ │ │ │ ├── turtle-eval-struct-02.nt │ │ │ │ ├── turtle-eval-struct-02.ttl │ │ │ │ ├── turtle-subm-01.nt │ │ │ │ ├── turtle-subm-01.ttl │ │ │ │ ├── turtle-subm-02.nt │ │ │ │ ├── turtle-subm-02.ttl │ │ │ │ ├── turtle-subm-03.nt │ │ │ │ ├── turtle-subm-03.ttl │ │ │ │ ├── turtle-subm-04.nt │ │ │ │ ├── turtle-subm-04.ttl │ │ │ │ ├── turtle-subm-05.nt │ │ │ │ ├── turtle-subm-05.ttl │ │ │ │ ├── turtle-subm-06.nt │ │ │ │ ├── turtle-subm-06.ttl │ │ │ │ ├── turtle-subm-07.nt │ │ │ │ ├── turtle-subm-07.ttl │ │ │ │ ├── turtle-subm-08.nt │ │ │ │ ├── turtle-subm-08.ttl │ │ │ │ ├── turtle-subm-09.nt │ │ │ │ ├── turtle-subm-09.ttl │ │ │ │ ├── turtle-subm-10.nt │ │ │ │ ├── turtle-subm-10.ttl │ │ │ │ ├── turtle-subm-11.nt │ │ │ │ ├── turtle-subm-11.ttl │ │ │ │ ├── turtle-subm-12.nt │ │ │ │ ├── turtle-subm-12.ttl │ │ │ │ ├── turtle-subm-13.nt │ │ │ │ ├── turtle-subm-13.ttl │ │ │ │ ├── turtle-subm-14.nt │ │ │ │ ├── turtle-subm-14.ttl │ │ │ │ ├── turtle-subm-15.nt │ │ │ │ ├── turtle-subm-15.ttl │ │ │ │ ├── turtle-subm-16.nt │ │ │ │ ├── turtle-subm-16.ttl │ │ │ │ ├── turtle-subm-17.nt │ │ │ │ ├── turtle-subm-17.ttl │ │ │ │ ├── turtle-subm-18.nt │ │ │ │ ├── turtle-subm-18.ttl │ │ │ │ ├── turtle-subm-19.nt │ │ │ │ ├── turtle-subm-19.ttl │ │ │ │ ├── turtle-subm-20.nt │ │ │ │ ├── turtle-subm-20.ttl │ │ │ │ ├── turtle-subm-21.nt │ │ │ │ ├── turtle-subm-21.ttl │ │ │ │ ├── turtle-subm-22.nt │ │ │ │ ├── turtle-subm-22.ttl │ │ │ │ ├── turtle-subm-23.nt │ │ │ │ ├── turtle-subm-23.ttl │ │ │ │ ├── turtle-subm-24.nt │ │ │ │ ├── turtle-subm-24.ttl │ │ │ │ ├── turtle-subm-25.nt │ │ │ │ ├── turtle-subm-25.ttl │ │ │ │ ├── turtle-subm-26.nt │ │ │ │ ├── turtle-subm-26.ttl │ │ │ │ ├── turtle-subm-27.nt │ │ │ │ ├── turtle-subm-27.ttl │ │ │ │ ├── turtle-syntax-bad-LITERAL2_with_langtag_and_datatype.ttl │ │ │ │ ├── turtle-syntax-bad-base-01.ttl │ │ │ │ ├── turtle-syntax-bad-base-02.ttl │ │ │ │ ├── turtle-syntax-bad-base-03.ttl │ │ │ │ ├── turtle-syntax-bad-blank-label-dot-end.ttl │ │ │ │ ├── turtle-syntax-bad-esc-01.ttl │ │ │ │ ├── turtle-syntax-bad-esc-02.ttl │ │ │ │ ├── turtle-syntax-bad-esc-03.ttl │ │ │ │ ├── turtle-syntax-bad-esc-04.ttl │ │ │ │ ├── turtle-syntax-bad-kw-01.ttl │ │ │ │ ├── turtle-syntax-bad-kw-02.ttl │ │ │ │ ├── turtle-syntax-bad-kw-03.ttl │ │ │ │ ├── turtle-syntax-bad-kw-04.ttl │ │ │ │ ├── turtle-syntax-bad-kw-05.ttl │ │ │ │ ├── turtle-syntax-bad-lang-01.ttl │ │ │ │ ├── turtle-syntax-bad-ln-dash-start.ttl │ │ │ │ ├── turtle-syntax-bad-ln-escape-start.ttl │ │ │ │ ├── turtle-syntax-bad-ln-escape.ttl │ │ │ │ ├── turtle-syntax-bad-missing-ns-dot-end.ttl │ │ │ │ ├── turtle-syntax-bad-missing-ns-dot-start.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-01.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-02.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-03.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-04.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-05.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-06.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-07.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-08.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-09.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-10.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-11.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-12.ttl │ │ │ │ ├── turtle-syntax-bad-n3-extras-13.ttl │ │ │ │ ├── turtle-syntax-bad-ns-dot-end.ttl │ │ │ │ ├── turtle-syntax-bad-ns-dot-start.ttl │ │ │ │ ├── turtle-syntax-bad-num-01.ttl │ │ │ │ ├── turtle-syntax-bad-num-02.ttl │ │ │ │ ├── turtle-syntax-bad-num-03.ttl │ │ │ │ ├── turtle-syntax-bad-num-04.ttl │ │ │ │ ├── turtle-syntax-bad-num-05.ttl │ │ │ │ ├── turtle-syntax-bad-number-dot-in-anon.ttl │ │ │ │ ├── turtle-syntax-bad-pname-01.ttl │ │ │ │ ├── turtle-syntax-bad-pname-02.ttl │ │ │ │ ├── turtle-syntax-bad-pname-03.ttl │ │ │ │ ├── turtle-syntax-bad-prefix-01.ttl │ │ │ │ ├── turtle-syntax-bad-prefix-02.ttl │ │ │ │ ├── turtle-syntax-bad-prefix-03.ttl │ │ │ │ ├── turtle-syntax-bad-prefix-04.ttl │ │ │ │ ├── turtle-syntax-bad-prefix-05.ttl │ │ │ │ ├── turtle-syntax-bad-string-01.ttl │ │ │ │ ├── turtle-syntax-bad-string-02.ttl │ │ │ │ ├── turtle-syntax-bad-string-03.ttl │ │ │ │ ├── turtle-syntax-bad-string-04.ttl │ │ │ │ ├── turtle-syntax-bad-string-05.ttl │ │ │ │ ├── turtle-syntax-bad-string-06.ttl │ │ │ │ ├── turtle-syntax-bad-string-07.ttl │ │ │ │ ├── turtle-syntax-bad-struct-01.ttl │ │ │ │ ├── turtle-syntax-bad-struct-02.ttl │ │ │ │ ├── turtle-syntax-bad-struct-03.ttl │ │ │ │ ├── turtle-syntax-bad-struct-04.ttl │ │ │ │ ├── turtle-syntax-bad-struct-05.ttl │ │ │ │ ├── turtle-syntax-bad-struct-06.ttl │ │ │ │ ├── turtle-syntax-bad-struct-07.ttl │ │ │ │ ├── turtle-syntax-bad-struct-08.ttl │ │ │ │ ├── turtle-syntax-bad-struct-09.ttl │ │ │ │ ├── turtle-syntax-bad-struct-10.ttl │ │ │ │ ├── turtle-syntax-bad-struct-11.ttl │ │ │ │ ├── turtle-syntax-bad-struct-12.ttl │ │ │ │ ├── turtle-syntax-bad-struct-13.ttl │ │ │ │ ├── turtle-syntax-bad-struct-14.ttl │ │ │ │ ├── turtle-syntax-bad-struct-15.ttl │ │ │ │ ├── turtle-syntax-bad-struct-16.ttl │ │ │ │ ├── turtle-syntax-bad-struct-17.ttl │ │ │ │ ├── turtle-syntax-bad-uri-01.ttl │ │ │ │ ├── turtle-syntax-bad-uri-02.ttl │ │ │ │ ├── turtle-syntax-bad-uri-03.ttl │ │ │ │ ├── turtle-syntax-bad-uri-04.ttl │ │ │ │ ├── turtle-syntax-bad-uri-05.ttl │ │ │ │ ├── turtle-syntax-base-01.ttl │ │ │ │ ├── turtle-syntax-base-02.ttl │ │ │ │ ├── turtle-syntax-base-03.ttl │ │ │ │ ├── turtle-syntax-base-04.ttl │ │ │ │ ├── turtle-syntax-blank-label.ttl │ │ │ │ ├── turtle-syntax-bnode-01.ttl │ │ │ │ ├── turtle-syntax-bnode-02.ttl │ │ │ │ ├── turtle-syntax-bnode-03.ttl │ │ │ │ ├── turtle-syntax-bnode-04.ttl │ │ │ │ ├── turtle-syntax-bnode-05.ttl │ │ │ │ ├── turtle-syntax-bnode-06.ttl │ │ │ │ ├── turtle-syntax-bnode-07.ttl │ │ │ │ ├── turtle-syntax-bnode-08.ttl │ │ │ │ ├── turtle-syntax-bnode-09.ttl │ │ │ │ ├── turtle-syntax-bnode-10.ttl │ │ │ │ ├── turtle-syntax-datatypes-01.ttl │ │ │ │ ├── turtle-syntax-datatypes-02.ttl │ │ │ │ ├── turtle-syntax-file-01.ttl │ │ │ │ ├── turtle-syntax-file-02.ttl │ │ │ │ ├── turtle-syntax-file-03.ttl │ │ │ │ ├── turtle-syntax-kw-01.ttl │ │ │ │ ├── turtle-syntax-kw-02.ttl │ │ │ │ ├── turtle-syntax-kw-03.ttl │ │ │ │ ├── turtle-syntax-lists-01.ttl │ │ │ │ ├── turtle-syntax-lists-02.ttl │ │ │ │ ├── turtle-syntax-lists-03.ttl │ │ │ │ ├── turtle-syntax-lists-04.ttl │ │ │ │ ├── turtle-syntax-lists-05.ttl │ │ │ │ ├── turtle-syntax-ln-colons.ttl │ │ │ │ ├── turtle-syntax-ln-dots.ttl │ │ │ │ ├── turtle-syntax-ns-dots.ttl │ │ │ │ ├── turtle-syntax-number-01.ttl │ │ │ │ ├── turtle-syntax-number-02.ttl │ │ │ │ ├── turtle-syntax-number-03.ttl │ │ │ │ ├── turtle-syntax-number-04.ttl │ │ │ │ ├── turtle-syntax-number-05.ttl │ │ │ │ ├── turtle-syntax-number-06.ttl │ │ │ │ ├── turtle-syntax-number-07.ttl │ │ │ │ ├── turtle-syntax-number-08.ttl │ │ │ │ ├── turtle-syntax-number-09.ttl │ │ │ │ ├── turtle-syntax-number-10.ttl │ │ │ │ ├── turtle-syntax-number-11.ttl │ │ │ │ ├── turtle-syntax-pname-esc-01.ttl │ │ │ │ ├── turtle-syntax-pname-esc-02.ttl │ │ │ │ ├── turtle-syntax-pname-esc-03.ttl │ │ │ │ ├── turtle-syntax-prefix-01.ttl │ │ │ │ ├── turtle-syntax-prefix-02.ttl │ │ │ │ ├── turtle-syntax-prefix-03.ttl │ │ │ │ ├── turtle-syntax-prefix-04.ttl │ │ │ │ ├── turtle-syntax-prefix-05.ttl │ │ │ │ ├── turtle-syntax-prefix-06.ttl │ │ │ │ ├── turtle-syntax-prefix-07.ttl │ │ │ │ ├── turtle-syntax-prefix-08.ttl │ │ │ │ ├── turtle-syntax-prefix-09.ttl │ │ │ │ ├── turtle-syntax-str-esc-01.ttl │ │ │ │ ├── turtle-syntax-str-esc-02.ttl │ │ │ │ ├── turtle-syntax-str-esc-03.ttl │ │ │ │ ├── turtle-syntax-string-01.ttl │ │ │ │ ├── turtle-syntax-string-02.ttl │ │ │ │ ├── turtle-syntax-string-03.ttl │ │ │ │ ├── turtle-syntax-string-04.ttl │ │ │ │ ├── turtle-syntax-string-05.ttl │ │ │ │ ├── turtle-syntax-string-06.ttl │ │ │ │ ├── turtle-syntax-string-07.ttl │ │ │ │ ├── turtle-syntax-string-08.ttl │ │ │ │ ├── turtle-syntax-string-09.ttl │ │ │ │ ├── turtle-syntax-string-10.ttl │ │ │ │ ├── turtle-syntax-string-11.ttl │ │ │ │ ├── turtle-syntax-struct-01.ttl │ │ │ │ ├── turtle-syntax-struct-02.ttl │ │ │ │ ├── turtle-syntax-struct-03.ttl │ │ │ │ ├── turtle-syntax-struct-04.ttl │ │ │ │ ├── turtle-syntax-struct-05.ttl │ │ │ │ ├── turtle-syntax-uri-01.ttl │ │ │ │ ├── turtle-syntax-uri-02.ttl │ │ │ │ ├── turtle-syntax-uri-03.ttl │ │ │ │ ├── turtle-syntax-uri-04.ttl │ │ │ │ ├── two_LITERAL_LONG2s.nt │ │ │ │ ├── two_LITERAL_LONG2s.ttl │ │ │ │ ├── underscore_in_localName.nt │ │ │ │ └── underscore_in_localName.ttl │ │ │ ├── bad │ │ │ │ ├── bad-00.ttl │ │ │ │ ├── bad-01.ttl │ │ │ │ ├── bad-02.ttl │ │ │ │ ├── bad-03.ttl │ │ │ │ ├── bad-04.ttl │ │ │ │ ├── bad-05.ttl │ │ │ │ ├── bad-06.ttl │ │ │ │ ├── bad-07.ttl │ │ │ │ ├── bad-08.ttl │ │ │ │ ├── bad-09.ttl │ │ │ │ ├── bad-10.ttl │ │ │ │ ├── bad-11.ttl │ │ │ │ ├── bad-12.ttl │ │ │ │ ├── bad-13.ttl │ │ │ │ ├── bad-14.ttl │ │ │ │ ├── bad-base.ttl │ │ │ │ ├── bad-blank.ttl │ │ │ │ ├── bad-bom.ttl │ │ │ │ ├── bad-char-in-local.ttl │ │ │ │ ├── bad-char-in-prefix.ttl │ │ │ │ ├── bad-char-in-uri.ttl │ │ │ │ ├── bad-datatype.ttl │ │ │ │ ├── bad-dot-after-subject.ttl │ │ │ │ ├── bad-eof-in-blank.ttl │ │ │ │ ├── bad-eof-in-escape.ttl │ │ │ │ ├── bad-eof-in-lang-suffix.ttl │ │ │ │ ├── bad-eof-in-lang.ttl │ │ │ │ ├── bad-eof-in-list.ttl │ │ │ │ ├── bad-eof-in-object-list.ttl │ │ │ │ ├── bad-eof-in-object-list2.ttl │ │ │ │ ├── bad-eof-in-predicate-list.ttl │ │ │ │ ├── bad-eof-in-string.ttl │ │ │ │ ├── bad-eof-in-triple-quote.ttl │ │ │ │ ├── bad-eof-in-uri.ttl │ │ │ │ ├── bad-escape.ttl │ │ │ │ ├── bad-ext-namedblank-op.ttl │ │ │ │ ├── bad-hex-digit.ttl │ │ │ │ ├── bad-id-clash.ttl │ │ │ │ ├── bad-lang.ttl │ │ │ │ ├── bad-list.ttl │ │ │ │ ├── bad-list2.ttl │ │ │ │ ├── bad-long-literal-in-list.ttl │ │ │ │ ├── bad-missing-semi.ttl │ │ │ │ ├── bad-missing-uri-scheme.nt │ │ │ │ ├── bad-misspelled-base.ttl │ │ │ │ ├── bad-misspelled-prefix.ttl │ │ │ │ ├── bad-namespace.ttl │ │ │ │ ├── bad-ns.ttl │ │ │ │ ├── bad-num.ttl │ │ │ │ ├── bad-object.ttl │ │ │ │ ├── bad-object2.ttl │ │ │ │ ├── bad-prefix.ttl │ │ │ │ ├── bad-semicolon-after-subject.ttl │ │ │ │ ├── bad-string.ttl │ │ │ │ ├── bad-subject.ttl │ │ │ │ ├── bad-uri-escape.ttl │ │ │ │ ├── bad-uri-scheme-start.nt │ │ │ │ ├── bad-uri-scheme.nt │ │ │ │ ├── bad-uri-truncated.nt │ │ │ │ ├── bad-verb.ttl │ │ │ │ ├── invalid-char-in-local.ttl │ │ │ │ ├── invalid-char-in-prefix.ttl │ │ │ │ └── manifest.ttl │ │ │ ├── good │ │ │ │ ├── README.txt │ │ │ │ ├── UTF-8.nt │ │ │ │ ├── UTF-8.ttl │ │ │ │ ├── base.nt │ │ │ │ ├── base.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── qualify-in.ttl │ │ │ │ ├── qualify-out.ttl │ │ │ │ ├── test-14.nt │ │ │ │ ├── test-14.ttl │ │ │ │ ├── test-15.nt │ │ │ │ ├── test-15.ttl │ │ │ │ ├── test-16.nt │ │ │ │ ├── test-16.ttl │ │ │ │ ├── test-18.nt │ │ │ │ ├── test-18.ttl │ │ │ │ ├── test-30.nt │ │ │ │ ├── test-30.ttl │ │ │ │ ├── test-a-without-whitespace.nt │ │ │ │ ├── test-a-without-whitespace.ttl │ │ │ │ ├── test-backspace.nt │ │ │ │ ├── test-backspace.ttl │ │ │ │ ├── test-bad-utf8.nt │ │ │ │ ├── test-bad-utf8.ttl │ │ │ │ ├── test-base-query.nt │ │ │ │ ├── test-base-query.ttl │ │ │ │ ├── test-blank-cont.nt │ │ │ │ ├── test-blank-cont.ttl │ │ │ │ ├── test-blank-in-list.nt │ │ │ │ ├── test-blank-in-list.ttl │ │ │ │ ├── test-blank-node-statement.nt │ │ │ │ ├── test-blank-node-statement.ttl │ │ │ │ ├── test-blankdot.nt │ │ │ │ ├── test-blankdot.ttl │ │ │ │ ├── test-bom.nt │ │ │ │ ├── test-bom.ttl │ │ │ │ ├── test-cr.nt │ │ │ │ ├── test-cr.ttl │ │ │ │ ├── test-delete.nt │ │ │ │ ├── test-delete.ttl │ │ │ │ ├── test-digit-start-pname.nt │ │ │ │ ├── test-digit-start-pname.ttl │ │ │ │ ├── test-empty-path-base.nt │ │ │ │ ├── test-empty-path-base.ttl │ │ │ │ ├── test-empty.nt │ │ │ │ ├── test-empty.ttl │ │ │ │ ├── test-eof-at-page-end.nt │ │ │ │ ├── test-eof-at-page-end.ttl │ │ │ │ ├── test-escapes.nt │ │ │ │ ├── test-escapes.ttl │ │ │ │ ├── test-ext-namedblank-iri.nt │ │ │ │ ├── test-ext-namedblank-iri.ttl │ │ │ │ ├── test-ext-namedblank-prefix.nt │ │ │ │ ├── test-ext-namedblank-prefix.ttl │ │ │ │ ├── test-form-feed.nt │ │ │ │ ├── test-form-feed.ttl │ │ │ │ ├── test-id.nt │ │ │ │ ├── test-id.ttl │ │ │ │ ├── test-lang.nt │ │ │ │ ├── test-lang.ttl │ │ │ │ ├── test-list-in-blank.nt │ │ │ │ ├── test-list-in-blank.ttl │ │ │ │ ├── test-list-subject.nt │ │ │ │ ├── test-list-subject.ttl │ │ │ │ ├── test-list.nt │ │ │ │ ├── test-list.ttl │ │ │ │ ├── test-local-name-ends-with-dot.ttl │ │ │ │ ├── test-long-string.nt │ │ │ │ ├── test-long-string.ttl │ │ │ │ ├── test-no-spaces.nt │ │ │ │ ├── test-no-spaces.ttl │ │ │ │ ├── test-non-curie-uri.nt │ │ │ │ ├── test-non-curie-uri.ttl │ │ │ │ ├── test-num.nt │ │ │ │ ├── test-num.ttl │ │ │ │ ├── test-out-of-range-unicode.nt │ │ │ │ ├── test-out-of-range-unicode.ttl │ │ │ │ ├── test-prefix.nt │ │ │ │ ├── test-prefix.ttl │ │ │ │ ├── test-pretty.nt │ │ │ │ ├── test-pretty.ttl │ │ │ │ ├── test-rel.nt │ │ │ │ ├── test-rel.ttl │ │ │ │ ├── test-semi-dot.nt │ │ │ │ ├── test-semi-dot.ttl │ │ │ │ ├── test-several-eaten-dots.nq │ │ │ │ ├── test-several-eaten-dots.trig │ │ │ │ ├── test-uri-escape.nt │ │ │ │ ├── test-uri-escape.ttl │ │ │ │ ├── test-uri.nt │ │ │ │ ├── test-uri.ttl │ │ │ │ ├── test-utf8-uri.nt │ │ │ │ └── test-utf8-uri.ttl │ │ │ └── serd_test.c │ │ ├── waf │ │ ├── waflib │ │ │ ├── Build.py │ │ │ ├── COPYING │ │ │ ├── ConfigSet.py │ │ │ ├── Configure.py │ │ │ ├── Context.py │ │ │ ├── Errors.py │ │ │ ├── Logs.py │ │ │ ├── Node.py │ │ │ ├── Options.py │ │ │ ├── README.md │ │ │ ├── Runner.py │ │ │ ├── Scripting.py │ │ │ ├── Task.py │ │ │ ├── TaskGen.py │ │ │ ├── Tools │ │ │ │ ├── __init__.py │ │ │ │ ├── ar.py │ │ │ │ ├── asm.py │ │ │ │ ├── bison.py │ │ │ │ ├── c.py │ │ │ │ ├── c_aliases.py │ │ │ │ ├── c_config.py │ │ │ │ ├── c_osx.py │ │ │ │ ├── c_preproc.py │ │ │ │ ├── c_tests.py │ │ │ │ ├── ccroot.py │ │ │ │ ├── clang.py │ │ │ │ ├── clangxx.py │ │ │ │ ├── compiler_c.py │ │ │ │ ├── compiler_cxx.py │ │ │ │ ├── compiler_d.py │ │ │ │ ├── compiler_fc.py │ │ │ │ ├── cs.py │ │ │ │ ├── cxx.py │ │ │ │ ├── d.py │ │ │ │ ├── d_config.py │ │ │ │ ├── d_scan.py │ │ │ │ ├── dbus.py │ │ │ │ ├── dmd.py │ │ │ │ ├── errcheck.py │ │ │ │ ├── fc.py │ │ │ │ ├── fc_config.py │ │ │ │ ├── fc_scan.py │ │ │ │ ├── flex.py │ │ │ │ ├── g95.py │ │ │ │ ├── gas.py │ │ │ │ ├── gcc.py │ │ │ │ ├── gdc.py │ │ │ │ ├── gfortran.py │ │ │ │ ├── glib2.py │ │ │ │ ├── gnu_dirs.py │ │ │ │ ├── gxx.py │ │ │ │ ├── icc.py │ │ │ │ ├── icpc.py │ │ │ │ ├── ifort.py │ │ │ │ ├── intltool.py │ │ │ │ ├── irixcc.py │ │ │ │ ├── javaw.py │ │ │ │ ├── ldc2.py │ │ │ │ ├── lua.py │ │ │ │ ├── md5_tstamp.py │ │ │ │ ├── msvc.py │ │ │ │ ├── nasm.py │ │ │ │ ├── nobuild.py │ │ │ │ ├── perl.py │ │ │ │ ├── python.py │ │ │ │ ├── qt5.py │ │ │ │ ├── ruby.py │ │ │ │ ├── suncc.py │ │ │ │ ├── suncxx.py │ │ │ │ ├── tex.py │ │ │ │ ├── vala.py │ │ │ │ ├── waf_unit_test.py │ │ │ │ ├── winres.py │ │ │ │ ├── xlc.py │ │ │ │ └── xlcxx.py │ │ │ ├── Utils.py │ │ │ ├── __init__.py │ │ │ ├── ansiterm.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── autoship.py │ │ │ │ ├── autowaf.py │ │ │ │ ├── batched_cc.py │ │ │ │ ├── biber.py │ │ │ │ ├── bjam.py │ │ │ │ ├── blender.py │ │ │ │ ├── boo.py │ │ │ │ ├── boost.py │ │ │ │ ├── build_file_tracker.py │ │ │ │ ├── build_logs.py │ │ │ │ ├── buildcopy.py │ │ │ │ ├── c_bgxlc.py │ │ │ │ ├── c_dumbpreproc.py │ │ │ │ ├── c_emscripten.py │ │ │ │ ├── c_nec.py │ │ │ │ ├── cabal.py │ │ │ │ ├── cfg_altoptions.py │ │ │ │ ├── clang_compilation_database.py │ │ │ │ ├── clang_cross.py │ │ │ │ ├── clang_cross_common.py │ │ │ │ ├── clangxx_cross.py │ │ │ │ ├── codelite.py │ │ │ │ ├── color_gcc.py │ │ │ │ ├── color_msvc.py │ │ │ │ ├── color_rvct.py │ │ │ │ ├── compat15.py │ │ │ │ ├── cppcheck.py │ │ │ │ ├── cpplint.py │ │ │ │ ├── cross_gnu.py │ │ │ │ ├── cython.py │ │ │ │ ├── dcc.py │ │ │ │ ├── distnet.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── dpapi.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── erlang.py │ │ │ │ ├── fast_partial.py │ │ │ │ ├── fc_bgxlf.py │ │ │ │ ├── fc_cray.py │ │ │ │ ├── fc_nag.py │ │ │ │ ├── fc_nec.py │ │ │ │ ├── fc_nfort.py │ │ │ │ ├── fc_open64.py │ │ │ │ ├── fc_pgfortran.py │ │ │ │ ├── fc_solstudio.py │ │ │ │ ├── fc_xlf.py │ │ │ │ ├── file_to_object.py │ │ │ │ ├── fluid.py │ │ │ │ ├── freeimage.py │ │ │ │ ├── fsb.py │ │ │ │ ├── fsc.py │ │ │ │ ├── gccdeps.py │ │ │ │ ├── gdbus.py │ │ │ │ ├── genpybind.py │ │ │ │ ├── gob2.py │ │ │ │ ├── halide.py │ │ │ │ ├── javatest.py │ │ │ │ ├── kde4.py │ │ │ │ ├── local_rpath.py │ │ │ │ ├── lv2.py │ │ │ │ ├── make.py │ │ │ │ ├── midl.py │ │ │ │ ├── msvcdeps.py │ │ │ │ ├── msvs.py │ │ │ │ ├── netcache_client.py │ │ │ │ ├── objcopy.py │ │ │ │ ├── ocaml.py │ │ │ │ ├── package.py │ │ │ │ ├── parallel_debug.py │ │ │ │ ├── pch.py │ │ │ │ ├── pep8.py │ │ │ │ ├── pgicc.py │ │ │ │ ├── pgicxx.py │ │ │ │ ├── proc.py │ │ │ │ ├── protoc.py │ │ │ │ ├── pyqt5.py │ │ │ │ ├── pytest.py │ │ │ │ ├── qnxnto.py │ │ │ │ ├── qt4.py │ │ │ │ ├── relocation.py │ │ │ │ ├── remote.py │ │ │ │ ├── resx.py │ │ │ │ ├── review.py │ │ │ │ ├── rst.py │ │ │ │ ├── run_do_script.py │ │ │ │ ├── run_m_script.py │ │ │ │ ├── run_py_script.py │ │ │ │ ├── run_r_script.py │ │ │ │ ├── sas.py │ │ │ │ ├── satellite_assembly.py │ │ │ │ ├── scala.py │ │ │ │ ├── slow_qt4.py │ │ │ │ ├── softlink_libs.py │ │ │ │ ├── sphinx.py │ │ │ │ ├── stale.py │ │ │ │ ├── stracedeps.py │ │ │ │ ├── swig.py │ │ │ │ ├── syms.py │ │ │ │ ├── ticgt.py │ │ │ │ ├── unity.py │ │ │ │ ├── use_config.py │ │ │ │ ├── valadoc.py │ │ │ │ ├── waf_xattr.py │ │ │ │ ├── why.py │ │ │ │ ├── win32_opts.py │ │ │ │ ├── wix.py │ │ │ │ └── xcode6.py │ │ │ ├── fixpy2.py │ │ │ ├── processor.py │ │ │ └── waf │ │ └── wscript │ ├── sord │ │ ├── .gitmodules │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README.md │ │ ├── doc │ │ │ ├── layout.xml │ │ │ ├── reference.doxygen.in │ │ │ ├── sord_validate.1 │ │ │ ├── sordi.1 │ │ │ └── style.css │ │ ├── sord.pc.in │ │ ├── sord │ │ │ ├── sord.h │ │ │ └── sordmm.hpp │ │ ├── src │ │ │ ├── sord.c │ │ │ ├── sord_internal.h │ │ │ ├── sord_test.c │ │ │ ├── sord_validate.c │ │ │ ├── sordi.c │ │ │ ├── sordmm_test.cpp │ │ │ ├── syntax.c │ │ │ └── zix │ │ │ │ ├── btree.c │ │ │ │ ├── btree.h │ │ │ │ ├── common.h │ │ │ │ ├── digest.c │ │ │ │ ├── digest.h │ │ │ │ ├── hash.c │ │ │ │ └── hash.h │ │ ├── tests │ │ │ ├── README.txt │ │ │ ├── UTF-8.ttl │ │ │ ├── manifest.ttl │ │ │ ├── rdf-schema.out │ │ │ ├── rdf-schema.ttl │ │ │ ├── rdfq-results.out │ │ │ ├── rdfq-results.ttl │ │ │ ├── rdfs-namespace.out │ │ │ ├── rdfs-namespace.ttl │ │ │ ├── test-00.out │ │ │ ├── test-00.ttl │ │ │ ├── test-01.out │ │ │ ├── test-01.ttl │ │ │ ├── test-02.out │ │ │ ├── test-02.ttl │ │ │ ├── test-03.out │ │ │ ├── test-03.ttl │ │ │ ├── test-04.out │ │ │ ├── test-04.ttl │ │ │ ├── test-05.out │ │ │ ├── test-05.ttl │ │ │ ├── test-06.out │ │ │ ├── test-06.ttl │ │ │ ├── test-07.out │ │ │ ├── test-07.ttl │ │ │ ├── test-08.out │ │ │ ├── test-08.ttl │ │ │ ├── test-09.out │ │ │ ├── test-09.ttl │ │ │ ├── test-10.out │ │ │ ├── test-10.ttl │ │ │ ├── test-11.out │ │ │ ├── test-11.ttl │ │ │ ├── test-12.out │ │ │ ├── test-12.ttl │ │ │ ├── test-13.out │ │ │ ├── test-13.ttl │ │ │ ├── test-14.out │ │ │ ├── test-14.ttl │ │ │ ├── test-15.out │ │ │ ├── test-15.ttl │ │ │ ├── test-16.out │ │ │ ├── test-16.ttl │ │ │ ├── test-17.out │ │ │ ├── test-17.ttl │ │ │ ├── test-18.out │ │ │ ├── test-18.ttl │ │ │ ├── test-19.out │ │ │ ├── test-19.ttl │ │ │ ├── test-20.out │ │ │ ├── test-20.ttl │ │ │ ├── test-21.out │ │ │ ├── test-21.ttl │ │ │ ├── test-22.out │ │ │ ├── test-22.ttl │ │ │ ├── test-23.out │ │ │ ├── test-23.ttl │ │ │ ├── test-24.out │ │ │ ├── test-24.ttl │ │ │ ├── test-25.out │ │ │ ├── test-25.ttl │ │ │ ├── test-26.out │ │ │ ├── test-26.ttl │ │ │ ├── test-27.out │ │ │ ├── test-27.ttl │ │ │ ├── test-30.out │ │ │ ├── test-30.ttl │ │ │ ├── test-id.out │ │ │ ├── test-id.ttl │ │ │ ├── test-lang.out │ │ │ ├── test-lang.ttl │ │ │ ├── test-num.out │ │ │ └── test-num.ttl │ │ ├── waf │ │ ├── waflib │ │ │ ├── Build.py │ │ │ ├── COPYING │ │ │ ├── ConfigSet.py │ │ │ ├── Configure.py │ │ │ ├── Context.py │ │ │ ├── Errors.py │ │ │ ├── Logs.py │ │ │ ├── Node.py │ │ │ ├── Options.py │ │ │ ├── README.md │ │ │ ├── Runner.py │ │ │ ├── Scripting.py │ │ │ ├── Task.py │ │ │ ├── TaskGen.py │ │ │ ├── Tools │ │ │ │ ├── __init__.py │ │ │ │ ├── ar.py │ │ │ │ ├── asm.py │ │ │ │ ├── bison.py │ │ │ │ ├── c.py │ │ │ │ ├── c_aliases.py │ │ │ │ ├── c_config.py │ │ │ │ ├── c_osx.py │ │ │ │ ├── c_preproc.py │ │ │ │ ├── c_tests.py │ │ │ │ ├── ccroot.py │ │ │ │ ├── clang.py │ │ │ │ ├── clangxx.py │ │ │ │ ├── compiler_c.py │ │ │ │ ├── compiler_cxx.py │ │ │ │ ├── compiler_d.py │ │ │ │ ├── compiler_fc.py │ │ │ │ ├── cs.py │ │ │ │ ├── cxx.py │ │ │ │ ├── d.py │ │ │ │ ├── d_config.py │ │ │ │ ├── d_scan.py │ │ │ │ ├── dbus.py │ │ │ │ ├── dmd.py │ │ │ │ ├── errcheck.py │ │ │ │ ├── fc.py │ │ │ │ ├── fc_config.py │ │ │ │ ├── fc_scan.py │ │ │ │ ├── flex.py │ │ │ │ ├── g95.py │ │ │ │ ├── gas.py │ │ │ │ ├── gcc.py │ │ │ │ ├── gdc.py │ │ │ │ ├── gfortran.py │ │ │ │ ├── glib2.py │ │ │ │ ├── gnu_dirs.py │ │ │ │ ├── gxx.py │ │ │ │ ├── icc.py │ │ │ │ ├── icpc.py │ │ │ │ ├── ifort.py │ │ │ │ ├── intltool.py │ │ │ │ ├── irixcc.py │ │ │ │ ├── javaw.py │ │ │ │ ├── ldc2.py │ │ │ │ ├── lua.py │ │ │ │ ├── md5_tstamp.py │ │ │ │ ├── msvc.py │ │ │ │ ├── nasm.py │ │ │ │ ├── nobuild.py │ │ │ │ ├── perl.py │ │ │ │ ├── python.py │ │ │ │ ├── qt5.py │ │ │ │ ├── ruby.py │ │ │ │ ├── suncc.py │ │ │ │ ├── suncxx.py │ │ │ │ ├── tex.py │ │ │ │ ├── vala.py │ │ │ │ ├── waf_unit_test.py │ │ │ │ ├── winres.py │ │ │ │ ├── xlc.py │ │ │ │ └── xlcxx.py │ │ │ ├── Utils.py │ │ │ ├── __init__.py │ │ │ ├── ansiterm.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── autoship.py │ │ │ │ ├── autowaf.py │ │ │ │ ├── batched_cc.py │ │ │ │ ├── biber.py │ │ │ │ ├── bjam.py │ │ │ │ ├── blender.py │ │ │ │ ├── boo.py │ │ │ │ ├── boost.py │ │ │ │ ├── build_file_tracker.py │ │ │ │ ├── build_logs.py │ │ │ │ ├── buildcopy.py │ │ │ │ ├── c_bgxlc.py │ │ │ │ ├── c_dumbpreproc.py │ │ │ │ ├── c_emscripten.py │ │ │ │ ├── c_nec.py │ │ │ │ ├── cabal.py │ │ │ │ ├── cfg_altoptions.py │ │ │ │ ├── clang_compilation_database.py │ │ │ │ ├── clang_cross.py │ │ │ │ ├── clang_cross_common.py │ │ │ │ ├── clangxx_cross.py │ │ │ │ ├── codelite.py │ │ │ │ ├── color_gcc.py │ │ │ │ ├── color_msvc.py │ │ │ │ ├── color_rvct.py │ │ │ │ ├── compat15.py │ │ │ │ ├── cppcheck.py │ │ │ │ ├── cpplint.py │ │ │ │ ├── cross_gnu.py │ │ │ │ ├── cython.py │ │ │ │ ├── dcc.py │ │ │ │ ├── distnet.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── dpapi.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── erlang.py │ │ │ │ ├── fast_partial.py │ │ │ │ ├── fc_bgxlf.py │ │ │ │ ├── fc_cray.py │ │ │ │ ├── fc_nag.py │ │ │ │ ├── fc_nec.py │ │ │ │ ├── fc_nfort.py │ │ │ │ ├── fc_open64.py │ │ │ │ ├── fc_pgfortran.py │ │ │ │ ├── fc_solstudio.py │ │ │ │ ├── fc_xlf.py │ │ │ │ ├── file_to_object.py │ │ │ │ ├── fluid.py │ │ │ │ ├── freeimage.py │ │ │ │ ├── fsb.py │ │ │ │ ├── fsc.py │ │ │ │ ├── gccdeps.py │ │ │ │ ├── gdbus.py │ │ │ │ ├── genpybind.py │ │ │ │ ├── gob2.py │ │ │ │ ├── halide.py │ │ │ │ ├── javatest.py │ │ │ │ ├── kde4.py │ │ │ │ ├── local_rpath.py │ │ │ │ ├── lv2.py │ │ │ │ ├── make.py │ │ │ │ ├── midl.py │ │ │ │ ├── msvcdeps.py │ │ │ │ ├── msvs.py │ │ │ │ ├── netcache_client.py │ │ │ │ ├── objcopy.py │ │ │ │ ├── ocaml.py │ │ │ │ ├── package.py │ │ │ │ ├── parallel_debug.py │ │ │ │ ├── pch.py │ │ │ │ ├── pep8.py │ │ │ │ ├── pgicc.py │ │ │ │ ├── pgicxx.py │ │ │ │ ├── proc.py │ │ │ │ ├── protoc.py │ │ │ │ ├── pyqt5.py │ │ │ │ ├── pytest.py │ │ │ │ ├── qnxnto.py │ │ │ │ ├── qt4.py │ │ │ │ ├── relocation.py │ │ │ │ ├── remote.py │ │ │ │ ├── resx.py │ │ │ │ ├── review.py │ │ │ │ ├── rst.py │ │ │ │ ├── run_do_script.py │ │ │ │ ├── run_m_script.py │ │ │ │ ├── run_py_script.py │ │ │ │ ├── run_r_script.py │ │ │ │ ├── sas.py │ │ │ │ ├── satellite_assembly.py │ │ │ │ ├── scala.py │ │ │ │ ├── slow_qt4.py │ │ │ │ ├── softlink_libs.py │ │ │ │ ├── sphinx.py │ │ │ │ ├── stale.py │ │ │ │ ├── stracedeps.py │ │ │ │ ├── swig.py │ │ │ │ ├── syms.py │ │ │ │ ├── ticgt.py │ │ │ │ ├── unity.py │ │ │ │ ├── use_config.py │ │ │ │ ├── valadoc.py │ │ │ │ ├── waf_xattr.py │ │ │ │ ├── why.py │ │ │ │ ├── win32_opts.py │ │ │ │ ├── wix.py │ │ │ │ └── xcode6.py │ │ │ ├── fixpy2.py │ │ │ ├── processor.py │ │ │ └── waf │ │ └── wscript │ ├── sratom │ │ ├── .gitmodules │ │ ├── COPYING │ │ ├── NEWS │ │ ├── README.md │ │ ├── doc │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── layout.xml │ │ │ ├── mainpage.md │ │ │ ├── reference.doxygen.in │ │ │ └── style.css │ │ ├── sratom.pc.in │ │ ├── sratom │ │ │ └── sratom.h │ │ ├── src │ │ │ └── sratom.c │ │ ├── tests │ │ │ └── sratom_test.c │ │ ├── waf │ │ ├── waflib │ │ │ ├── Build.py │ │ │ ├── COPYING │ │ │ ├── ConfigSet.py │ │ │ ├── Configure.py │ │ │ ├── Context.py │ │ │ ├── Errors.py │ │ │ ├── Logs.py │ │ │ ├── Node.py │ │ │ ├── Options.py │ │ │ ├── README.md │ │ │ ├── Runner.py │ │ │ ├── Scripting.py │ │ │ ├── Task.py │ │ │ ├── TaskGen.py │ │ │ ├── Tools │ │ │ │ ├── __init__.py │ │ │ │ ├── ar.py │ │ │ │ ├── asm.py │ │ │ │ ├── bison.py │ │ │ │ ├── c.py │ │ │ │ ├── c_aliases.py │ │ │ │ ├── c_config.py │ │ │ │ ├── c_osx.py │ │ │ │ ├── c_preproc.py │ │ │ │ ├── c_tests.py │ │ │ │ ├── ccroot.py │ │ │ │ ├── clang.py │ │ │ │ ├── clangxx.py │ │ │ │ ├── compiler_c.py │ │ │ │ ├── compiler_cxx.py │ │ │ │ ├── compiler_d.py │ │ │ │ ├── compiler_fc.py │ │ │ │ ├── cs.py │ │ │ │ ├── cxx.py │ │ │ │ ├── d.py │ │ │ │ ├── d_config.py │ │ │ │ ├── d_scan.py │ │ │ │ ├── dbus.py │ │ │ │ ├── dmd.py │ │ │ │ ├── errcheck.py │ │ │ │ ├── fc.py │ │ │ │ ├── fc_config.py │ │ │ │ ├── fc_scan.py │ │ │ │ ├── flex.py │ │ │ │ ├── g95.py │ │ │ │ ├── gas.py │ │ │ │ ├── gcc.py │ │ │ │ ├── gdc.py │ │ │ │ ├── gfortran.py │ │ │ │ ├── glib2.py │ │ │ │ ├── gnu_dirs.py │ │ │ │ ├── gxx.py │ │ │ │ ├── icc.py │ │ │ │ ├── icpc.py │ │ │ │ ├── ifort.py │ │ │ │ ├── intltool.py │ │ │ │ ├── irixcc.py │ │ │ │ ├── javaw.py │ │ │ │ ├── ldc2.py │ │ │ │ ├── lua.py │ │ │ │ ├── md5_tstamp.py │ │ │ │ ├── msvc.py │ │ │ │ ├── nasm.py │ │ │ │ ├── nobuild.py │ │ │ │ ├── perl.py │ │ │ │ ├── python.py │ │ │ │ ├── qt5.py │ │ │ │ ├── ruby.py │ │ │ │ ├── suncc.py │ │ │ │ ├── suncxx.py │ │ │ │ ├── tex.py │ │ │ │ ├── vala.py │ │ │ │ ├── waf_unit_test.py │ │ │ │ ├── winres.py │ │ │ │ ├── xlc.py │ │ │ │ └── xlcxx.py │ │ │ ├── Utils.py │ │ │ ├── __init__.py │ │ │ ├── ansiterm.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── autoship.py │ │ │ │ ├── autowaf.py │ │ │ │ ├── batched_cc.py │ │ │ │ ├── biber.py │ │ │ │ ├── bjam.py │ │ │ │ ├── blender.py │ │ │ │ ├── boo.py │ │ │ │ ├── boost.py │ │ │ │ ├── build_file_tracker.py │ │ │ │ ├── build_logs.py │ │ │ │ ├── buildcopy.py │ │ │ │ ├── c_bgxlc.py │ │ │ │ ├── c_dumbpreproc.py │ │ │ │ ├── c_emscripten.py │ │ │ │ ├── c_nec.py │ │ │ │ ├── cabal.py │ │ │ │ ├── cfg_altoptions.py │ │ │ │ ├── clang_compilation_database.py │ │ │ │ ├── clang_cross.py │ │ │ │ ├── clang_cross_common.py │ │ │ │ ├── clangxx_cross.py │ │ │ │ ├── codelite.py │ │ │ │ ├── color_gcc.py │ │ │ │ ├── color_msvc.py │ │ │ │ ├── color_rvct.py │ │ │ │ ├── compat15.py │ │ │ │ ├── cppcheck.py │ │ │ │ ├── cpplint.py │ │ │ │ ├── cross_gnu.py │ │ │ │ ├── cython.py │ │ │ │ ├── dcc.py │ │ │ │ ├── distnet.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── dpapi.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── erlang.py │ │ │ │ ├── fast_partial.py │ │ │ │ ├── fc_bgxlf.py │ │ │ │ ├── fc_cray.py │ │ │ │ ├── fc_nag.py │ │ │ │ ├── fc_nec.py │ │ │ │ ├── fc_nfort.py │ │ │ │ ├── fc_open64.py │ │ │ │ ├── fc_pgfortran.py │ │ │ │ ├── fc_solstudio.py │ │ │ │ ├── fc_xlf.py │ │ │ │ ├── file_to_object.py │ │ │ │ ├── fluid.py │ │ │ │ ├── freeimage.py │ │ │ │ ├── fsb.py │ │ │ │ ├── fsc.py │ │ │ │ ├── gccdeps.py │ │ │ │ ├── gdbus.py │ │ │ │ ├── genpybind.py │ │ │ │ ├── gob2.py │ │ │ │ ├── halide.py │ │ │ │ ├── javatest.py │ │ │ │ ├── kde4.py │ │ │ │ ├── local_rpath.py │ │ │ │ ├── lv2.py │ │ │ │ ├── make.py │ │ │ │ ├── midl.py │ │ │ │ ├── msvcdeps.py │ │ │ │ ├── msvs.py │ │ │ │ ├── netcache_client.py │ │ │ │ ├── objcopy.py │ │ │ │ ├── ocaml.py │ │ │ │ ├── package.py │ │ │ │ ├── parallel_debug.py │ │ │ │ ├── pch.py │ │ │ │ ├── pep8.py │ │ │ │ ├── pgicc.py │ │ │ │ ├── pgicxx.py │ │ │ │ ├── proc.py │ │ │ │ ├── protoc.py │ │ │ │ ├── pyqt5.py │ │ │ │ ├── pytest.py │ │ │ │ ├── qnxnto.py │ │ │ │ ├── qt4.py │ │ │ │ ├── relocation.py │ │ │ │ ├── remote.py │ │ │ │ ├── resx.py │ │ │ │ ├── review.py │ │ │ │ ├── rst.py │ │ │ │ ├── run_do_script.py │ │ │ │ ├── run_m_script.py │ │ │ │ ├── run_py_script.py │ │ │ │ ├── run_r_script.py │ │ │ │ ├── sas.py │ │ │ │ ├── satellite_assembly.py │ │ │ │ ├── scala.py │ │ │ │ ├── slow_qt4.py │ │ │ │ ├── softlink_libs.py │ │ │ │ ├── sphinx.py │ │ │ │ ├── stale.py │ │ │ │ ├── stracedeps.py │ │ │ │ ├── swig.py │ │ │ │ ├── syms.py │ │ │ │ ├── ticgt.py │ │ │ │ ├── unity.py │ │ │ │ ├── use_config.py │ │ │ │ ├── valadoc.py │ │ │ │ ├── waf_xattr.py │ │ │ │ ├── why.py │ │ │ │ ├── win32_opts.py │ │ │ │ ├── wix.py │ │ │ │ └── xcode6.py │ │ │ ├── fixpy2.py │ │ │ ├── processor.py │ │ │ └── waf │ │ └── wscript │ ├── suil │ │ ├── .gitmodules │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── PACKAGING │ │ ├── README.md │ │ ├── doc │ │ │ ├── layout.xml │ │ │ ├── reference.doxygen.in │ │ │ └── style.css │ │ ├── src │ │ │ ├── cocoa_in_gtk2.mm │ │ │ ├── cocoa_in_qt5.mm │ │ │ ├── gtk2_in_qt4.cpp │ │ │ ├── gtk2_in_qt5.cpp │ │ │ ├── host.c │ │ │ ├── instance.c │ │ │ ├── qt4_in_gtk2.cpp │ │ │ ├── qt5_in_gtk.cpp │ │ │ ├── suil_internal.h │ │ │ ├── win_in_gtk2.cpp │ │ │ ├── x11.c │ │ │ ├── x11_in_gtk2.c │ │ │ ├── x11_in_gtk3.c │ │ │ ├── x11_in_qt4.cpp │ │ │ └── x11_in_qt5.cpp │ │ ├── suil.pc.in │ │ ├── suil │ │ │ └── suil.h │ │ ├── waf │ │ ├── waflib │ │ │ ├── Build.py │ │ │ ├── COPYING │ │ │ ├── ConfigSet.py │ │ │ ├── Configure.py │ │ │ ├── Context.py │ │ │ ├── Errors.py │ │ │ ├── Logs.py │ │ │ ├── Node.py │ │ │ ├── Options.py │ │ │ ├── README.md │ │ │ ├── Runner.py │ │ │ ├── Scripting.py │ │ │ ├── Task.py │ │ │ ├── TaskGen.py │ │ │ ├── Tools │ │ │ │ ├── __init__.py │ │ │ │ ├── ar.py │ │ │ │ ├── asm.py │ │ │ │ ├── bison.py │ │ │ │ ├── c.py │ │ │ │ ├── c_aliases.py │ │ │ │ ├── c_config.py │ │ │ │ ├── c_osx.py │ │ │ │ ├── c_preproc.py │ │ │ │ ├── c_tests.py │ │ │ │ ├── ccroot.py │ │ │ │ ├── clang.py │ │ │ │ ├── clangxx.py │ │ │ │ ├── compiler_c.py │ │ │ │ ├── compiler_cxx.py │ │ │ │ ├── compiler_d.py │ │ │ │ ├── compiler_fc.py │ │ │ │ ├── cs.py │ │ │ │ ├── cxx.py │ │ │ │ ├── d.py │ │ │ │ ├── d_config.py │ │ │ │ ├── d_scan.py │ │ │ │ ├── dbus.py │ │ │ │ ├── dmd.py │ │ │ │ ├── errcheck.py │ │ │ │ ├── fc.py │ │ │ │ ├── fc_config.py │ │ │ │ ├── fc_scan.py │ │ │ │ ├── flex.py │ │ │ │ ├── g95.py │ │ │ │ ├── gas.py │ │ │ │ ├── gcc.py │ │ │ │ ├── gdc.py │ │ │ │ ├── gfortran.py │ │ │ │ ├── glib2.py │ │ │ │ ├── gnu_dirs.py │ │ │ │ ├── gxx.py │ │ │ │ ├── icc.py │ │ │ │ ├── icpc.py │ │ │ │ ├── ifort.py │ │ │ │ ├── intltool.py │ │ │ │ ├── irixcc.py │ │ │ │ ├── javaw.py │ │ │ │ ├── ldc2.py │ │ │ │ ├── lua.py │ │ │ │ ├── md5_tstamp.py │ │ │ │ ├── msvc.py │ │ │ │ ├── nasm.py │ │ │ │ ├── nobuild.py │ │ │ │ ├── perl.py │ │ │ │ ├── python.py │ │ │ │ ├── qt5.py │ │ │ │ ├── ruby.py │ │ │ │ ├── suncc.py │ │ │ │ ├── suncxx.py │ │ │ │ ├── tex.py │ │ │ │ ├── vala.py │ │ │ │ ├── waf_unit_test.py │ │ │ │ ├── winres.py │ │ │ │ ├── xlc.py │ │ │ │ └── xlcxx.py │ │ │ ├── Utils.py │ │ │ ├── __init__.py │ │ │ ├── ansiterm.py │ │ │ ├── extras │ │ │ │ ├── __init__.py │ │ │ │ ├── autoship.py │ │ │ │ ├── autowaf.py │ │ │ │ ├── batched_cc.py │ │ │ │ ├── biber.py │ │ │ │ ├── bjam.py │ │ │ │ ├── blender.py │ │ │ │ ├── boo.py │ │ │ │ ├── boost.py │ │ │ │ ├── build_file_tracker.py │ │ │ │ ├── build_logs.py │ │ │ │ ├── buildcopy.py │ │ │ │ ├── c_bgxlc.py │ │ │ │ ├── c_dumbpreproc.py │ │ │ │ ├── c_emscripten.py │ │ │ │ ├── c_nec.py │ │ │ │ ├── cabal.py │ │ │ │ ├── cfg_altoptions.py │ │ │ │ ├── clang_compilation_database.py │ │ │ │ ├── clang_cross.py │ │ │ │ ├── clang_cross_common.py │ │ │ │ ├── clangxx_cross.py │ │ │ │ ├── codelite.py │ │ │ │ ├── color_gcc.py │ │ │ │ ├── color_msvc.py │ │ │ │ ├── color_rvct.py │ │ │ │ ├── compat15.py │ │ │ │ ├── cppcheck.py │ │ │ │ ├── cpplint.py │ │ │ │ ├── cross_gnu.py │ │ │ │ ├── cython.py │ │ │ │ ├── dcc.py │ │ │ │ ├── distnet.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── dpapi.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── erlang.py │ │ │ │ ├── fast_partial.py │ │ │ │ ├── fc_bgxlf.py │ │ │ │ ├── fc_cray.py │ │ │ │ ├── fc_nag.py │ │ │ │ ├── fc_nec.py │ │ │ │ ├── fc_nfort.py │ │ │ │ ├── fc_open64.py │ │ │ │ ├── fc_pgfortran.py │ │ │ │ ├── fc_solstudio.py │ │ │ │ ├── fc_xlf.py │ │ │ │ ├── file_to_object.py │ │ │ │ ├── fluid.py │ │ │ │ ├── freeimage.py │ │ │ │ ├── fsb.py │ │ │ │ ├── fsc.py │ │ │ │ ├── gccdeps.py │ │ │ │ ├── gdbus.py │ │ │ │ ├── genpybind.py │ │ │ │ ├── gob2.py │ │ │ │ ├── halide.py │ │ │ │ ├── javatest.py │ │ │ │ ├── kde4.py │ │ │ │ ├── local_rpath.py │ │ │ │ ├── lv2.py │ │ │ │ ├── make.py │ │ │ │ ├── midl.py │ │ │ │ ├── msvcdeps.py │ │ │ │ ├── msvs.py │ │ │ │ ├── netcache_client.py │ │ │ │ ├── objcopy.py │ │ │ │ ├── ocaml.py │ │ │ │ ├── package.py │ │ │ │ ├── parallel_debug.py │ │ │ │ ├── pch.py │ │ │ │ ├── pep8.py │ │ │ │ ├── pgicc.py │ │ │ │ ├── pgicxx.py │ │ │ │ ├── proc.py │ │ │ │ ├── protoc.py │ │ │ │ ├── pyqt5.py │ │ │ │ ├── pytest.py │ │ │ │ ├── qnxnto.py │ │ │ │ ├── qt4.py │ │ │ │ ├── relocation.py │ │ │ │ ├── remote.py │ │ │ │ ├── resx.py │ │ │ │ ├── review.py │ │ │ │ ├── rst.py │ │ │ │ ├── run_do_script.py │ │ │ │ ├── run_m_script.py │ │ │ │ ├── run_py_script.py │ │ │ │ ├── run_r_script.py │ │ │ │ ├── sas.py │ │ │ │ ├── satellite_assembly.py │ │ │ │ ├── scala.py │ │ │ │ ├── slow_qt4.py │ │ │ │ ├── softlink_libs.py │ │ │ │ ├── sphinx.py │ │ │ │ ├── stale.py │ │ │ │ ├── stracedeps.py │ │ │ │ ├── swig.py │ │ │ │ ├── syms.py │ │ │ │ ├── ticgt.py │ │ │ │ ├── unity.py │ │ │ │ ├── use_config.py │ │ │ │ ├── valadoc.py │ │ │ │ ├── waf_xattr.py │ │ │ │ ├── why.py │ │ │ │ ├── win32_opts.py │ │ │ │ ├── wix.py │ │ │ │ └── xcode6.py │ │ │ ├── fixpy2.py │ │ │ ├── processor.py │ │ │ └── waf │ │ └── wscript │ ├── unpack-waf │ └── windows │ │ ├── lilv_config.h │ │ ├── serd_config.h │ │ ├── sord_config.h │ │ ├── sratom_config.h │ │ └── suil_config.h ├── pffft │ ├── README.txt │ ├── pffft.c │ ├── pffft.h │ └── pfsimd_macros.h ├── portburn │ ├── Makefile.macosx │ ├── clip.wav │ ├── portburn.h │ ├── portburn.sln │ ├── portburn.vcproj │ ├── portburn_macosx.c │ ├── portburn_macosx.cpp │ ├── portburn_staging.c │ ├── portburn_staging.cpp │ ├── portburn_staging.h │ ├── portburn_winxp.cpp │ ├── portburn_winxpv1.cpp │ ├── portburn_winxpv2.cpp │ ├── test_portburn.cpp │ └── test_portburn.vcproj ├── portmixer │ ├── CMakeLists.txt │ ├── README.txt │ ├── cmake │ │ ├── CheckPaWinDS_GetDeviceGUID │ │ │ ├── CMakeLists.txt │ │ │ └── check.c │ │ └── CheckPaWinMME_GetStreamInputHandle │ │ │ ├── CMakeLists.txt │ │ │ └── check.c │ ├── include │ │ └── portmixer.h │ └── src │ │ ├── px_example_api.c │ │ ├── px_linux_alsa.c │ │ ├── px_mac_coreaudio.c │ │ ├── px_mixer.c │ │ ├── px_mixer.h │ │ ├── px_unix_oss.c │ │ ├── px_win_common.c │ │ ├── px_win_common.h │ │ ├── px_win_ds.c │ │ ├── px_win_endpoint.c │ │ ├── px_win_endpoint.h │ │ ├── px_win_wasapi.c │ │ └── px_win_wmme.c ├── portsmf │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── algrd_internal.h │ ├── algsmfrd_internal.h │ ├── allegro.cpp │ ├── allegro.h │ ├── allegro.htm │ ├── allegrord.cpp │ ├── allegroserial.cpp │ ├── allegrosmfrd.cpp │ ├── allegrosmfwr.cpp │ ├── allegrowr.cpp │ ├── apps │ │ ├── allegroconvert.cpp │ │ ├── allegroconvert.vcproj │ │ ├── allegroplay.cpp │ │ ├── midicode.h │ │ ├── seq2midi.cpp │ │ └── seq2midi.h │ ├── autotools-fix-make-dist.patch │ ├── autotools.patch │ ├── autotools │ │ ├── ar-lib │ │ ├── compile │ │ ├── depcomp │ │ ├── install-sh │ │ ├── m4 │ │ │ ├── ax_cflags_strict_prototypes.m4 │ │ │ ├── ax_cflags_warn_all.m4 │ │ │ ├── ax_cxx_check_flag.m4 │ │ │ └── ax_cxxcpp_check_flag.m4 │ │ └── missing │ ├── changelog.txt │ ├── configure │ ├── configure.ac │ ├── license.txt │ ├── mfmidi.cpp │ ├── mfmidi.h │ ├── notes.txt │ ├── portSMF-uninstalled.pc.in │ ├── portSMF.pc.in │ ├── portsmf-VC8.sln │ ├── portsmf-VC8.vcproj │ ├── portsmf.sln │ ├── portsmf.vcproj │ ├── portsmf.xcodeproj │ │ ├── project.pbxproj │ │ └── rbd.mode1 │ ├── portsmf_test │ │ ├── Makefile.osx │ │ ├── portsmf_test-VC8.vcproj │ │ ├── portsmf_test.cpp │ │ ├── portsmf_test.vcproj │ │ ├── scale.gro │ │ ├── test.gro │ │ ├── test2.gro │ │ └── test5.gro │ ├── strparse.cpp │ ├── strparse.h │ ├── todo.txt │ ├── trace.cpp │ └── trace.h ├── soundtouch │ ├── COPYING.TXT │ ├── Makefile.am │ ├── Makefile.in │ ├── README.html │ ├── autotools.patch │ ├── bin │ │ ├── run_test │ │ └── run_test.cmd │ ├── bootstrap │ ├── config │ │ ├── README.TXT │ │ ├── am_include.mk │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ └── missing │ ├── configure │ ├── configure-file-README.txt │ ├── configure.ac │ ├── include │ │ ├── BPMDetect.h │ │ ├── FIFOSampleBuffer.h │ │ ├── FIFOSamplePipe.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── STTypes.h │ │ ├── SoundTouch.h │ │ └── soundtouch_config.h.in │ ├── make-win.bat │ ├── soundtouch-1.4.pc.in │ ├── soundtouch.m4 │ ├── soundtouch.pc.in │ └── source │ │ ├── Android-lib │ │ ├── README-SoundTouch-Android.html │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── soundtouch-jni.cpp │ │ └── src │ │ │ └── net │ │ │ └── surina │ │ │ └── soundtouch │ │ │ └── SoundTouch.java │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── SoundStretch │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── RunParameters.cpp │ │ ├── RunParameters.h │ │ ├── WavFile.cpp │ │ ├── WavFile.h │ │ ├── main.cpp │ │ ├── soundstretch.dsp │ │ ├── soundstretch.dsw │ │ ├── soundstretch.sln │ │ └── soundstretch.vcproj │ │ ├── SoundTouch │ │ ├── AAFilter.cpp │ │ ├── AAFilter.h │ │ ├── BPMDetect.cpp │ │ ├── FIFOSampleBuffer.cpp │ │ ├── FIRFilter.cpp │ │ ├── FIRFilter.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PeakFinder.cpp │ │ ├── PeakFinder.h │ │ ├── RateTransposer.cpp │ │ ├── RateTransposer.h │ │ ├── SoundTouch.cpp │ │ ├── SoundTouch.dsp │ │ ├── SoundTouch.dsw │ │ ├── SoundTouch.sln │ │ ├── SoundTouch.vcproj │ │ ├── TDStretch.cpp │ │ ├── TDStretch.h │ │ ├── cpu_detect.h │ │ ├── cpu_detect_x86.cpp │ │ ├── mmx_optimized.cpp │ │ └── sse_optimized.cpp │ │ └── SoundTouchDLL │ │ ├── SoundTouchDLL.cpp │ │ ├── SoundTouchDLL.h │ │ ├── SoundTouchDLL.pas │ │ ├── SoundTouchDLL.rc │ │ ├── SoundTouchDLL.sln │ │ ├── SoundTouchDLL.vcproj │ │ └── resource.h ├── sqlite │ ├── shell.c │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h └── twolame │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── autogen.sh │ ├── build-scripts │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── libtool.m4 │ ├── ltmain.sh │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── missing │ └── test-driver │ ├── configure │ ├── configure.ac │ ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── api.txt │ ├── dist10-text │ │ ├── common.txt │ │ ├── commonh.txt │ │ ├── encode.txt │ │ ├── encoderh.txt │ │ ├── musicin.txt │ │ ├── psy.txt │ │ └── tonal.txt │ ├── html │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── api.html │ │ ├── authors.html │ │ ├── changelog.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── index.html │ │ ├── nav_f.png │ │ ├── nav_h.png │ │ ├── psycho.html │ │ ├── readme.html │ │ ├── tabs.css │ │ ├── todo.html │ │ ├── twolame-manpage.css │ │ ├── twolame.1.html │ │ ├── twolame.css │ │ ├── twolame_8h.html │ │ ├── twolame_8h_source.html │ │ └── vbr.html │ ├── index.txt │ ├── psycho.txt │ ├── twolame.1 │ ├── twolame.1.txt │ └── vbr.txt │ ├── fix-tests.patch │ ├── frontend │ ├── Makefile.am │ ├── Makefile.in │ ├── audioin_raw.c │ ├── audioin_sndfile.c │ ├── frontend.c │ └── frontend.h │ ├── libtwolame │ ├── Makefile.am │ ├── Makefile.in │ ├── ath.c │ ├── ath.h │ ├── availbits.c │ ├── availbits.h │ ├── bitbuffer.c │ ├── bitbuffer.h │ ├── bitbuffer_inline.h │ ├── common.h │ ├── config.h.in │ ├── crc.c │ ├── crc.h │ ├── dab.c │ ├── dab.h │ ├── encode.c │ ├── encode.h │ ├── energy.c │ ├── energy.h │ ├── enwindow.h │ ├── fft.c │ ├── fft.h │ ├── get_set.c │ ├── mem.c │ ├── mem.h │ ├── psycho_0.c │ ├── psycho_0.h │ ├── psycho_1.c │ ├── psycho_1.h │ ├── psycho_1_critband.h │ ├── psycho_1_freqtable.h │ ├── psycho_2.c │ ├── psycho_2.h │ ├── psycho_2_absthr.h │ ├── psycho_3.c │ ├── psycho_3.h │ ├── psycho_4.c │ ├── psycho_4.h │ ├── psycho_n1.c │ ├── psycho_n1.h │ ├── subband.c │ ├── subband.h │ ├── twolame.c │ ├── twolame.h │ ├── util.c │ └── util.h │ ├── simplefrontend │ ├── Makefile.am │ ├── Makefile.in │ ├── audio_wave.c │ ├── audio_wave.h │ └── simplefrontend.c │ ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── test.pl │ ├── testcase-22050.wav │ └── testcase-44100.wav │ ├── twolame.pc.in │ └── win32 │ ├── configwin.h │ ├── libtwolame_dll.sln │ ├── libtwolame_dll.vcproj │ ├── libtwolame_static.sln │ ├── libtwolame_static.vcproj │ └── winutil.h ├── libraries ├── CMakeLists.txt ├── image-compiler │ ├── CMakeLists.txt │ └── imageCompilerMain.cpp ├── lib-audio-devices │ ├── AudioIOBase.cpp │ ├── AudioIOBase.h │ ├── CMakeLists.txt │ ├── DeviceChange.cpp │ ├── DeviceChange.h │ ├── DeviceManager.cpp │ ├── DeviceManager.h │ ├── Meter.cpp │ └── Meter.h ├── lib-audio-graph │ ├── AudioGraphBuffers.cpp │ ├── AudioGraphBuffers.h │ ├── AudioGraphChannel.cpp │ ├── AudioGraphChannel.h │ ├── AudioGraphSink.cpp │ ├── AudioGraphSink.h │ ├── AudioGraphSource.cpp │ ├── AudioGraphSource.h │ ├── AudioGraphTask.cpp │ ├── AudioGraphTask.h │ └── CMakeLists.txt ├── lib-audio-io │ ├── AudioIO.cpp │ ├── AudioIO.h │ ├── AudioIOExt.cpp │ ├── AudioIOExt.h │ ├── AudioIOListener.cpp │ ├── AudioIOListener.h │ ├── CMakeLists.txt │ ├── PlaybackSchedule.cpp │ ├── PlaybackSchedule.h │ ├── ProjectAudioIO.cpp │ ├── ProjectAudioIO.h │ ├── RingBuffer.cpp │ └── RingBuffer.h ├── lib-audio-unit │ ├── AudioUnitEffectBase.cpp │ ├── AudioUnitEffectBase.h │ ├── AudioUnitEffectsModule.cpp │ ├── AudioUnitEffectsModule.h │ ├── AudioUnitInstance.cpp │ ├── AudioUnitInstance.h │ ├── AudioUnitUtils.cpp │ ├── AudioUnitUtils.h │ ├── AudioUnitWrapper.cpp │ ├── AudioUnitWrapper.h │ └── CMakeLists.txt ├── lib-basic-ui │ ├── BasicUI.cpp │ ├── BasicUI.h │ ├── BasicUIPoint.h │ └── CMakeLists.txt ├── lib-breakpad-configurer │ ├── BreakpadConfigurer.cpp │ ├── BreakpadConfigurer.h │ ├── CMakeLists.txt │ └── internal │ │ ├── unix │ │ ├── CrashReportContext.cpp │ │ └── CrashReportContext.h │ │ └── win32 │ │ ├── CrashReportContext.cpp │ │ └── CrashReportContext.h ├── lib-channel │ ├── CMakeLists.txt │ ├── Channel.cpp │ └── Channel.h ├── lib-cloud-audiocom │ ├── CMakeLists.txt │ ├── CloudLibrarySettings.cpp │ ├── CloudLibrarySettings.h │ ├── CloudSyncService.cpp │ ├── CloudSyncService.h │ ├── NetworkUtils.cpp │ ├── NetworkUtils.h │ ├── OAuthService.cpp │ ├── OAuthService.h │ ├── ServiceConfig.cpp │ ├── ServiceConfig.h │ ├── UploadService.cpp │ ├── UploadService.h │ ├── UserService.cpp │ ├── UserService.h │ └── sync │ │ ├── BlockHasher.cpp │ │ ├── BlockHasher.h │ │ ├── CloudProjectsDatabase.cpp │ │ ├── CloudProjectsDatabase.h │ │ ├── CloudSyncDTO.cpp │ │ ├── CloudSyncDTO.h │ │ ├── CloudSyncError.cpp │ │ ├── CloudSyncError.h │ │ ├── CloudSyncHousekeeper.cpp │ │ ├── DataUploader.cpp │ │ ├── DataUploader.h │ │ ├── LocalProjectSnapshot.cpp │ │ ├── LocalProjectSnapshot.h │ │ ├── MissingBlocksUploader.cpp │ │ ├── MissingBlocksUploader.h │ │ ├── MixdownUploader.cpp │ │ ├── MixdownUploader.h │ │ ├── ProjectCloudExtension.cpp │ │ ├── ProjectCloudExtension.h │ │ ├── ProjectUploadOperation.h │ │ ├── RemoteProjectSnapshot.cpp │ │ ├── RemoteProjectSnapshot.h │ │ ├── ResumedSnaphotUploadOperation.cpp │ │ ├── ResumedSnaphotUploadOperation.h │ │ ├── WavPackCompressor.cpp │ │ └── WavPackCompressor.h ├── lib-command-parameters │ ├── CMakeLists.txt │ ├── ShuttleAutomation.cpp │ ├── ShuttleAutomation.h │ ├── ShuttlePrefs.cpp │ ├── ShuttlePrefs.h │ ├── WrappedType.cpp │ └── WrappedType.h ├── lib-components │ ├── CMakeLists.txt │ ├── ComponentInterface.cpp │ ├── ComponentInterface.h │ ├── ComponentInterfaceSymbol.h │ ├── EffectAutomationParameters.cpp │ ├── EffectAutomationParameters.h │ ├── EffectInterface.cpp │ ├── EffectInterface.h │ ├── PluginProvider.cpp │ ├── PluginProvider.h │ ├── SettingsVisitor.cpp │ └── SettingsVisitor.h ├── lib-concurrency │ ├── CMakeLists.txt │ └── concurrency │ │ ├── CancellationContext.cpp │ │ ├── CancellationContext.h │ │ └── ICancellable.h ├── lib-crashpad-configurer │ ├── CMakeLists.txt │ ├── CrashpadConfigurer.cpp │ ├── CrashpadConfigurer.h │ └── internal │ │ └── Util.h ├── lib-crypto │ ├── CMakeLists.txt │ ├── crypto │ │ ├── SHA256.cpp │ │ └── SHA256.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── CryptoTests.cpp ├── lib-effects │ ├── CMakeLists.txt │ ├── Effect.cpp │ ├── Effect.h │ ├── EffectBase.cpp │ ├── EffectBase.h │ ├── EffectOutputTracks.cpp │ ├── EffectOutputTracks.h │ ├── EffectPlugin.cpp │ ├── EffectPlugin.h │ ├── LoadEffects.cpp │ ├── LoadEffects.h │ ├── MixAndRender.cpp │ ├── MixAndRender.h │ ├── PerTrackEffect.cpp │ ├── PerTrackEffect.h │ ├── StatefulEffectBase.cpp │ └── StatefulEffectBase.h ├── lib-exceptions │ ├── AudacityException.cpp │ ├── AudacityException.h │ ├── CMakeLists.txt │ ├── InconsistencyException.cpp │ ├── InconsistencyException.h │ ├── UserException.cpp │ └── UserException.h ├── lib-export-ui │ ├── CMakeLists.txt │ ├── ExportOptionsUIServices.cpp │ └── ExportOptionsUIServices.h ├── lib-fft │ ├── CMakeLists.txt │ ├── FFT.cpp │ ├── FFT.h │ ├── PowerSpectrumGetter.cpp │ ├── PowerSpectrumGetter.h │ ├── RealFFTf.cpp │ ├── RealFFTf.h │ ├── Spectrum.cpp │ └── Spectrum.h ├── lib-file-formats │ ├── AcidizerTags.h │ ├── CMakeLists.txt │ ├── FileFormats.cpp │ └── FileFormats.h ├── lib-files │ ├── AudacityLogger.cpp │ ├── AudacityLogger.h │ ├── CMakeLists.txt │ ├── FileException.cpp │ ├── FileException.h │ ├── FileIO.cpp │ ├── FileIO.h │ ├── FileNames.cpp │ ├── FileNames.h │ ├── PathList.cpp │ ├── PathList.h │ ├── PlatformCompatibility.cpp │ ├── PlatformCompatibility.h │ ├── TempDirectory.cpp │ ├── TempDirectory.h │ └── wxFileNameWrapper.h ├── lib-graphics │ ├── CMakeLists.txt │ ├── FrameStatistics.cpp │ ├── FrameStatistics.h │ └── graphics │ │ ├── Color.h │ │ ├── Point.h │ │ ├── Rect.h │ │ └── Size.h ├── lib-import-export │ ├── CMakeLists.txt │ ├── Export.cpp │ ├── Export.h │ ├── ExportOptionsEditor.cpp │ ├── ExportOptionsEditor.h │ ├── ExportPlugin.cpp │ ├── ExportPlugin.h │ ├── ExportPluginHelpers.cpp │ ├── ExportPluginHelpers.h │ ├── ExportPluginRegistry.cpp │ ├── ExportPluginRegistry.h │ ├── ExportProgressUI.cpp │ ├── ExportProgressUI.h │ ├── ExportTypes.h │ ├── ExportUtils.cpp │ ├── ExportUtils.h │ ├── GetAcidizerTags.cpp │ ├── GetAcidizerTags.h │ ├── Import.cpp │ ├── Import.h │ ├── ImportExport.cpp │ ├── ImportExport.h │ ├── ImportForwards.h │ ├── ImportPlugin.cpp │ ├── ImportPlugin.h │ ├── ImportProgressListener.cpp │ ├── ImportProgressListener.h │ ├── ImportUtils.cpp │ ├── ImportUtils.h │ ├── LibsndfileTagger.cpp │ ├── LibsndfileTagger.h │ ├── PlainExportOptionsEditor.cpp │ ├── PlainExportOptionsEditor.h │ ├── riff-test-util │ │ ├── CMakeLists.txt │ │ └── RiffTestUtil.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── GetAcidizerTagsTests.cpp ├── lib-ipc │ ├── CMakeLists.txt │ ├── IPCChannel.cpp │ ├── IPCChannel.h │ ├── IPCClient.cpp │ ├── IPCClient.h │ ├── IPCServer.cpp │ ├── IPCServer.h │ └── internal │ │ ├── BufferedIPCChannel.cpp │ │ ├── BufferedIPCChannel.h │ │ ├── ipc-types.h │ │ └── socket_guard.h ├── lib-ladspa │ ├── CMakeLists.txt │ ├── LadspaEffectBase.cpp │ ├── LadspaEffectBase.h │ ├── LadspaEffectsModule.cpp │ ├── LadspaEffectsModule.h │ ├── LadspaInstance.cpp │ ├── LadspaInstance.h │ └── ladspa.h ├── lib-lv2 │ ├── CMakeLists.txt │ ├── LV2EffectBase.cpp │ ├── LV2EffectBase.h │ ├── LV2FeaturesList.cpp │ ├── LV2FeaturesList.h │ ├── LV2Instance.cpp │ ├── LV2Instance.h │ ├── LV2InstanceFeaturesList.cpp │ ├── LV2InstanceFeaturesList.h │ ├── LV2Ports.cpp │ ├── LV2Ports.h │ ├── LV2Preferences.cpp │ ├── LV2Preferences.h │ ├── LV2Symbols.cpp │ ├── LV2Symbols.h │ ├── LV2Utils.h │ ├── LV2Wrapper.cpp │ ├── LV2Wrapper.h │ ├── LoadLV2.cpp │ ├── LoadLV2.h │ ├── lv2_external_ui.h │ └── zix │ │ ├── common.h │ │ ├── ring.cpp │ │ └── ring.h ├── lib-math │ ├── CMakeLists.txt │ ├── Dither.cpp │ ├── Dither.h │ ├── Gain.h │ ├── InterpolateAudio.cpp │ ├── InterpolateAudio.h │ ├── LinearFit.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Resample.cpp │ ├── Resample.h │ ├── RoundUpUnsafe.h │ ├── SampleCount.cpp │ ├── SampleCount.h │ ├── SampleFormat.cpp │ ├── SampleFormat.h │ ├── float_cast.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── MathTests.cpp ├── lib-menus │ ├── CMakeLists.txt │ ├── CommandContext.cpp │ ├── CommandContext.h │ ├── CommandFlag.cpp │ ├── CommandFlag.h │ ├── CommandFunctors.h │ ├── CommandManager.cpp │ ├── CommandManager.h │ ├── CommandTargets.cpp │ ├── CommandTargets.h │ ├── Keyboard.cpp │ ├── Keyboard.h │ ├── MenuRegistry.cpp │ └── MenuRegistry.h ├── lib-mixer │ ├── AudioIOSequences.cpp │ ├── AudioIOSequences.h │ ├── CMakeLists.txt │ ├── EffectStage.cpp │ ├── EffectStage.h │ ├── Envelope.cpp │ ├── Envelope.h │ ├── Mix.cpp │ ├── Mix.h │ ├── MixerOptions.cpp │ ├── MixerOptions.h │ ├── MixerSource.cpp │ ├── MixerSource.h │ ├── WideSampleSequence.cpp │ ├── WideSampleSequence.h │ ├── WideSampleSource.cpp │ └── WideSampleSource.h ├── lib-module-manager │ ├── AsyncPluginValidator.cpp │ ├── AsyncPluginValidator.h │ ├── CMakeLists.txt │ ├── ConfigInterface.cpp │ ├── ConfigInterface.h │ ├── ModuleManager.cpp │ ├── ModuleManager.h │ ├── ModuleSettings.cpp │ ├── ModuleSettings.h │ ├── PluginDescriptor.cpp │ ├── PluginDescriptor.h │ ├── PluginHost.cpp │ ├── PluginHost.h │ ├── PluginIPCUtils.cpp │ ├── PluginIPCUtils.h │ ├── PluginInterface.cpp │ ├── PluginInterface.h │ ├── PluginManager.cpp │ └── PluginManager.h ├── lib-music-information-retrieval │ ├── .clang-format │ ├── CMakeLists.txt │ ├── DecimatingMirAudioReader.cpp │ ├── DecimatingMirAudioReader.h │ ├── GetMeterUsingTatumQuantizationFit.cpp │ ├── GetMeterUsingTatumQuantizationFit.h │ ├── MirDsp.cpp │ ├── MirDsp.h │ ├── MirProjectInterface.h │ ├── MirTypes.h │ ├── MirUtils.cpp │ ├── MirUtils.h │ ├── MusicInformationRetrieval.cpp │ ├── MusicInformationRetrieval.h │ ├── StftFrameProvider.cpp │ ├── StftFrameProvider.h │ └── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── MirFakes.h │ │ ├── MirTestUtils.cpp │ │ ├── MirTestUtils.h │ │ ├── MusicInformationRetrievalTests.cpp │ │ ├── StftFrameProviderTests.cpp │ │ ├── TatumQuantizationFitBenchmarking.cpp │ │ ├── TatumQuantizationFitBenchmarkingOutput │ │ ├── sampleValues.csv │ │ └── summary.txt │ │ ├── TatumQuantizationFitVisualization.cpp │ │ ├── TatumQuantizationFitVisualization │ │ ├── visualize_debug_output.py │ │ └── visualize_post-processed_STFT.py │ │ ├── WavMirAudioReader.cpp │ │ ├── WavMirAudioReader.h │ │ └── download-benchmarking-dataset.html ├── lib-network-manager │ ├── CMakeLists.txt │ ├── CookiesList.cpp │ ├── CookiesList.h │ ├── HeadersList.cpp │ ├── HeadersList.h │ ├── IResponse.cpp │ ├── IResponse.h │ ├── IResponseFactory.h │ ├── MultipartData.cpp │ ├── MultipartData.h │ ├── NetworkManager.cpp │ ├── NetworkManager.h │ ├── NetworkManagerApi.h │ ├── Request.cpp │ ├── Request.h │ ├── RequestPayload.cpp │ ├── RequestPayload.h │ └── curl │ │ ├── CurlHandleManager.cpp │ │ ├── CurlHandleManager.h │ │ ├── CurlResponse.cpp │ │ ├── CurlResponse.h │ │ ├── CurlResponseFactory.cpp │ │ ├── CurlResponseFactory.h │ │ ├── CurlStringList.cpp │ │ └── CurlStringList.h ├── lib-note-track │ ├── CMakeLists.txt │ ├── MIDIPlay.cpp │ ├── MIDIPlay.h │ ├── NoteTrack.cpp │ ├── NoteTrack.h │ └── WrapAllegro.h ├── lib-numeric-formats │ ├── Beats.cpp │ ├── Beats.h │ ├── CMakeLists.txt │ ├── NumericConverter.cpp │ ├── NumericConverter.h │ ├── NumericConverterFormats.cpp │ ├── NumericConverterFormats.h │ ├── NumericConverterFormatter.cpp │ ├── NumericConverterFormatter.h │ ├── NumericConverterFormatterContext.cpp │ ├── NumericConverterFormatterContext.h │ ├── NumericConverterRegistry.cpp │ ├── NumericConverterRegistry.h │ ├── NumericConverterType.cpp │ ├── NumericConverterType.h │ ├── ProjectNumericFormats.cpp │ ├── ProjectNumericFormats.h │ ├── ProjectTimeSignature.cpp │ ├── ProjectTimeSignature.h │ ├── formatters │ │ ├── BeatsNumericConverterFormatter.cpp │ │ ├── BeatsNumericConverterFormatter.h │ │ ├── ParsedNumericConverterFormatter.cpp │ │ └── ParsedNumericConverterFormatter.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── NumericConverterTests.cpp ├── lib-playable-track │ ├── CMakeLists.txt │ ├── PlayableTrack.cpp │ └── PlayableTrack.h ├── lib-preference-pages │ ├── CMakeLists.txt │ ├── LibraryPrefs.cpp │ ├── LibraryPrefs.h │ ├── PrefsPanel.cpp │ └── PrefsPanel.h ├── lib-preferences │ ├── BasicSettings.cpp │ ├── BasicSettings.h │ ├── CMakeLists.txt │ ├── Prefs.cpp │ ├── Prefs.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── SettingsTestsCommon.cpp │ │ ├── SettingsTestsCommon.h │ │ └── SettingsWXTests.cpp ├── lib-project-file-io │ ├── ActiveProjects.cpp │ ├── ActiveProjects.h │ ├── CMakeLists.txt │ ├── DBConnection.cpp │ ├── DBConnection.h │ ├── ProjectFileIO.cpp │ ├── ProjectFileIO.h │ ├── ProjectFileIOExtension.cpp │ ├── ProjectFileIOExtension.h │ ├── ProjectSerializer.cpp │ ├── ProjectSerializer.h │ └── SqliteSampleBlock.cpp ├── lib-project-history │ ├── CMakeLists.txt │ ├── ProjectHistory.cpp │ ├── ProjectHistory.h │ ├── UndoManager.cpp │ └── UndoManager.h ├── lib-project-rate │ ├── CMakeLists.txt │ ├── Decibels.cpp │ ├── Decibels.h │ ├── ProjectRate.cpp │ ├── ProjectRate.h │ ├── QualitySettings.cpp │ └── QualitySettings.h ├── lib-project │ ├── CMakeLists.txt │ ├── Project.cpp │ ├── Project.h │ ├── ProjectFormatExtensionsRegistry.cpp │ ├── ProjectFormatExtensionsRegistry.h │ ├── ProjectFormatVersion.cpp │ ├── ProjectFormatVersion.h │ ├── ProjectStatus.cpp │ └── ProjectStatus.h ├── lib-realtime-effects │ ├── CMakeLists.txt │ ├── RealtimeEffectList.cpp │ ├── RealtimeEffectList.h │ ├── RealtimeEffectManager.cpp │ ├── RealtimeEffectManager.h │ ├── RealtimeEffectState.cpp │ └── RealtimeEffectState.h ├── lib-registries │ ├── AttachedVirtualFunction.h │ ├── CMakeLists.txt │ ├── ClientData.cpp │ ├── ClientData.h │ ├── ClientDataHelpers.h │ ├── Registrar.h │ ├── Registry.cpp │ └── Registry.h ├── lib-sample-track │ ├── CMakeLists.txt │ ├── SampleTrack.cpp │ └── SampleTrack.h ├── lib-screen-geometry │ ├── CMakeLists.txt │ ├── NumberScale.h │ ├── ZoomInfo.cpp │ └── ZoomInfo.h ├── lib-sentry-reporting │ ├── AnonymizedMessage.cpp │ ├── AnonymizedMessage.h │ ├── CMakeLists.txt │ ├── SentryHelper.h │ ├── SentryReport.cpp │ ├── SentryReport.h │ ├── SentryRequestBuilder.cpp │ └── SentryRequestBuilder.h ├── lib-shuttlegui │ ├── CMakeLists.txt │ ├── ReadOnlyText.h │ ├── ShuttleGui.cpp │ ├── ShuttleGui.h │ └── wxTextCtrlWrapper.h ├── lib-snapping │ ├── CMakeLists.txt │ ├── ProjectSnap.cpp │ ├── ProjectSnap.h │ ├── Snap.cpp │ ├── Snap.h │ ├── SnapUtils.cpp │ ├── SnapUtils.h │ ├── details │ │ ├── BeatsSnapFunctions.cpp │ │ ├── FrameSnapFunctions.cpp │ │ └── TimeSnapFunctions.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── SnappingTest.cpp ├── lib-sqlite-helpers │ ├── CMakeLists.txt │ ├── sqlite │ │ ├── Blob.cpp │ │ ├── Blob.h │ │ ├── Connection.cpp │ │ ├── Connection.h │ │ ├── Error.cpp │ │ ├── Error.h │ │ ├── Function.cpp │ │ ├── Function.h │ │ ├── Result.cpp │ │ ├── Result.h │ │ ├── SQLiteUtils.cpp │ │ ├── SQLiteUtils.h │ │ ├── SafeConnection.cpp │ │ ├── SafeConnection.h │ │ ├── Statement.cpp │ │ ├── Statement.h │ │ ├── Transaction.cpp │ │ └── Transaction.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── SQliteHelpersTests.cpp ├── lib-stretching-sequence │ ├── .clang-format │ ├── AudioSegment.cpp │ ├── AudioSegment.h │ ├── AudioSegmentFactory.cpp │ ├── AudioSegmentFactory.h │ ├── AudioSegmentFactoryInterface.cpp │ ├── AudioSegmentFactoryInterface.h │ ├── AudioSegmentSampleView.cpp │ ├── AudioSegmentSampleView.h │ ├── CMakeLists.txt │ ├── ClipInterface.cpp │ ├── ClipInterface.h │ ├── ClipSegment.cpp │ ├── ClipSegment.h │ ├── ClipTimeAndPitchSource.cpp │ ├── ClipTimeAndPitchSource.h │ ├── PlaybackDirection.h │ ├── SilenceSegment.cpp │ ├── SilenceSegment.h │ ├── StretchingSequence.cpp │ ├── StretchingSequence.h │ ├── TempoChange.cpp │ ├── TempoChange.h │ ├── readme.md │ └── tests │ │ ├── AudioContainerHelper.h │ │ ├── AudioSegmentSampleViewTest.cpp │ │ ├── CMakeLists.txt │ │ ├── ClipSegmentTest.cpp │ │ ├── ClipTimeAndPitchSourceTest.cpp │ │ ├── FloatVectorClip.cpp │ │ ├── FloatVectorClip.h │ │ ├── MockAudioSegmentFactory.h │ │ ├── MockPlayableSequence.h │ │ ├── MockSampleBlock.cpp │ │ ├── MockSampleBlock.h │ │ ├── MockSampleBlockFactory.cpp │ │ ├── MockSampleBlockFactory.h │ │ ├── SilenceSegmentTest.cpp │ │ ├── StretchingSequenceIntegrationTest.cpp │ │ ├── StretchingSequenceTest.cpp │ │ ├── TestWaveClipMaker.cpp │ │ ├── TestWaveClipMaker.h │ │ ├── TestWaveTrackMaker.cpp │ │ └── TestWaveTrackMaker.h ├── lib-string-utils │ ├── 3party │ │ └── fast_float.h │ ├── CMakeLists.txt │ ├── CodeConversions.cpp │ ├── CodeConversions.h │ ├── DateTimeConversions.cpp │ ├── DateTimeConversions.h │ ├── FromChars.cpp │ ├── FromChars.h │ ├── HexHelpers.h │ ├── StringUtils.cpp │ ├── StringUtils.h │ ├── ToChars.cpp │ ├── ToChars.h │ ├── UriParser.cpp │ ├── UriParser.h │ ├── UrlDecode.cpp │ ├── UrlDecode.h │ ├── UrlEncode.cpp │ ├── UrlEncode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── FromCharsTests.cpp │ │ ├── StringUtilsTests.cpp │ │ └── UriParserTests.cpp ├── lib-strings │ ├── Base64.cpp │ ├── Base64.h │ ├── CMakeLists.txt │ ├── FutureStrings.h │ ├── Identifier.cpp │ ├── Identifier.h │ ├── Internat.cpp │ ├── Internat.h │ ├── Languages.cpp │ ├── Languages.h │ ├── TranslatableString.cpp │ ├── TranslatableString.h │ ├── wxArrayStringEx.cpp │ └── wxArrayStringEx.h ├── lib-tags │ ├── CMakeLists.txt │ ├── Tags.cpp │ └── Tags.h ├── lib-theme-resources │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ClassicThemeAsCeeCode.cpp │ ├── DarkThemeAsCeeCode.cpp │ ├── HighContrastThemeAsCeeCode.cpp │ ├── LightThemeAsCeeCode.cpp │ ├── LoadThemeResources.cpp │ ├── LoadThemeResources.h │ ├── classic │ │ └── Components │ │ │ ├── AnonymousUser.png │ │ │ ├── AudacityLogo48x48.png │ │ │ ├── BandWidthCursor.png │ │ │ ├── BottomFrequencyCursor.png │ │ │ ├── CloseDisabled.png │ │ │ ├── CloseDown.png │ │ │ ├── CloseHover.png │ │ │ ├── CloseNormal.png │ │ │ ├── Cloud.png │ │ │ ├── CloudProgress.png │ │ │ ├── Cogwheel.png │ │ │ ├── Colors.txt │ │ │ ├── Copy.png │ │ │ ├── CopyDisabled.png │ │ │ ├── CrosshairCursor.png │ │ │ ├── Cut.png │ │ │ ├── CutDisabled.png │ │ │ ├── CutPreview.png │ │ │ ├── CutPreviewDisabled.png │ │ │ ├── Delete.png │ │ │ ├── DeleteDisabled.png │ │ │ ├── DisabledCursor.png │ │ │ ├── DownButtonExpand.png │ │ │ ├── DownButtonExpandSel.png │ │ │ ├── DownButtonLarge.png │ │ │ ├── DownButtonSmall.png │ │ │ ├── DragArea.png │ │ │ ├── Draw.png │ │ │ ├── DrawCursor.png │ │ │ ├── EditEffects.png │ │ │ ├── EffectOff.png │ │ │ ├── EffectOn.png │ │ │ ├── EnvCursor.png │ │ │ ├── Envelope.png │ │ │ ├── FFwd.png │ │ │ ├── FFwdDisabled.png │ │ │ ├── GrabberDropLoc.png │ │ │ ├── HButtonDisabled.png │ │ │ ├── HButtonDown.png │ │ │ ├── HButtonHover.png │ │ │ ├── HButtonNormal.png │ │ │ ├── HelpIcon.png │ │ │ ├── HiliteButtonExpand.png │ │ │ ├── HiliteButtonExpandSel.png │ │ │ ├── HiliteButtonLarge.png │ │ │ ├── HiliteButtonSmall.png │ │ │ ├── HiliteUpButtonExpand.png │ │ │ ├── HiliteUpButtonExpandSel.png │ │ │ ├── HiliteUpButtonLarge.png │ │ │ ├── HiliteUpButtonSmall.png │ │ │ ├── IBeam.png │ │ │ ├── IBeamCursor.png │ │ │ ├── LabelCursorLeft.png │ │ │ ├── LabelCursorRight.png │ │ │ ├── LabelGlyph0.png │ │ │ ├── LabelGlyph1.png │ │ │ ├── LabelGlyph10.png │ │ │ ├── LabelGlyph11.png │ │ │ ├── LabelGlyph2.png │ │ │ ├── LabelGlyph3.png │ │ │ ├── LabelGlyph4.png │ │ │ ├── LabelGlyph5.png │ │ │ ├── LabelGlyph6.png │ │ │ ├── LabelGlyph7.png │ │ │ ├── LabelGlyph8.png │ │ │ ├── LabelGlyph9.png │ │ │ ├── Loop.png │ │ │ ├── LoopDisabled.png │ │ │ ├── MacDownButton.png │ │ │ ├── MacDownButtonSmall.png │ │ │ ├── MacHiliteButton.png │ │ │ ├── MacHiliteButtonSmall.png │ │ │ ├── MacHiliteUpButton.png │ │ │ ├── MacHiliteUpButtonSmall.png │ │ │ ├── MacUpButton.png │ │ │ ├── MacUpButtonSmall.png │ │ │ ├── Mic.png │ │ │ ├── MoreDisabled.png │ │ │ ├── MoreDown.png │ │ │ ├── MoreHover.png │ │ │ ├── MoreNormal.png │ │ │ ├── Multi.png │ │ │ ├── Options.png │ │ │ ├── OptionsDisabled.png │ │ │ ├── Paste.png │ │ │ ├── PasteDisabled.png │ │ │ ├── Pause.png │ │ │ ├── PauseDisabled.png │ │ │ ├── PitchDownIndicator.png │ │ │ ├── PitchUpIndicator.png │ │ │ ├── Play.png │ │ │ ├── PlayDisabled.png │ │ │ ├── PlayPointer.png │ │ │ ├── Record.png │ │ │ ├── RecordBelow.png │ │ │ ├── RecordBelowDisabled.png │ │ │ ├── RecordBeside.png │ │ │ ├── RecordBesideDisabled.png │ │ │ ├── RecordDisabled.png │ │ │ ├── RecordPointer.png │ │ │ ├── Redo.png │ │ │ ├── RedoDisabled.png │ │ │ ├── Rewind.png │ │ │ ├── RewindDisabled.png │ │ │ ├── Scrub.png │ │ │ ├── ScrubDisabled.png │ │ │ ├── Seek.png │ │ │ ├── SeekDisabled.png │ │ │ ├── Setup.png │ │ │ ├── ShareAudio.png │ │ │ ├── Silence.png │ │ │ ├── SilenceDisabled.png │ │ │ ├── SliderThumb.png │ │ │ ├── SliderThumbHilited.png │ │ │ ├── SliderThumbRotated.png │ │ │ ├── SliderThumbRotatedHilited.png │ │ │ ├── Speaker.png │ │ │ ├── SpectralBrush.png │ │ │ ├── SpeedIndicator.png │ │ │ ├── Stop.png │ │ │ ├── StopDisabled.png │ │ │ ├── SubViewsCursor.png │ │ │ ├── SyncLockIcon.png │ │ │ ├── SyncLockSelTile.png │ │ │ ├── SyncLockTracksDisabled.png │ │ │ ├── SyncLockTracksDown.png │ │ │ ├── SyncLockTracksUp.png │ │ │ ├── TimeCursor.png │ │ │ ├── TnAutomateSelection.png │ │ │ ├── TnAutomateSelectionDisabled.png │ │ │ ├── TnCalibrate.png │ │ │ ├── TnCalibrateDisabled.png │ │ │ ├── TnEndOff.png │ │ │ ├── TnEndOffDisabled.png │ │ │ ├── TnEndOn.png │ │ │ ├── TnEndOnDisabled.png │ │ │ ├── TnMakeTag.png │ │ │ ├── TnMakeTagDisabled.png │ │ │ ├── TnSelectSilence.png │ │ │ ├── TnSelectSilenceDisabled.png │ │ │ ├── TnSelectSound.png │ │ │ ├── TnSelectSoundDisabled.png │ │ │ ├── TnStartOff.png │ │ │ ├── TnStartOffDisabled.png │ │ │ ├── TnStartOn.png │ │ │ ├── TnStartOnDisabled.png │ │ │ ├── ToggleScrubRuler.png │ │ │ ├── TopFrequencyCursor.png │ │ │ ├── Trim.png │ │ │ ├── TrimDisabled.png │ │ │ ├── Undo.png │ │ │ ├── UndoDisabled.png │ │ │ ├── UpButtonExpand.png │ │ │ ├── UpButtonExpandSel.png │ │ │ ├── UpButtonLarge.png │ │ │ ├── UpButtonSmall.png │ │ │ ├── ZoomFit.png │ │ │ ├── ZoomFitDisabled.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomInCursor.png │ │ │ ├── ZoomInDisabled.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomOutCursor.png │ │ │ ├── ZoomOutDisabled.png │ │ │ ├── ZoomSel.png │ │ │ ├── ZoomSelDisabled.png │ │ │ ├── ZoomToggle.png │ │ │ └── ZoomToggleDisabled.png │ ├── dark │ │ └── Components │ │ │ ├── AnonymousUser.png │ │ │ ├── AudacityLogo48x48.png │ │ │ ├── BandWidthCursor.png │ │ │ ├── BottomFrequencyCursor.png │ │ │ ├── CloseDisabled.png │ │ │ ├── CloseDown.png │ │ │ ├── CloseHover.png │ │ │ ├── CloseNormal.png │ │ │ ├── Cloud.png │ │ │ ├── CloudProgress.png │ │ │ ├── Cogwheel.png │ │ │ ├── Colors.txt │ │ │ ├── Copy.png │ │ │ ├── CopyDisabled.png │ │ │ ├── CrosshairCursor.png │ │ │ ├── Cut.png │ │ │ ├── CutDisabled.png │ │ │ ├── CutPreview.png │ │ │ ├── CutPreviewDisabled.png │ │ │ ├── Delete.png │ │ │ ├── DeleteDisabled.png │ │ │ ├── DisabledCursor.png │ │ │ ├── DownButtonExpand.png │ │ │ ├── DownButtonExpandSel.png │ │ │ ├── DownButtonLarge.png │ │ │ ├── DownButtonSmall.png │ │ │ ├── DragArea.png │ │ │ ├── Draw.png │ │ │ ├── DrawCursor.png │ │ │ ├── EditEffects.png │ │ │ ├── EffectOff.png │ │ │ ├── EffectOn.png │ │ │ ├── EnvCursor.png │ │ │ ├── Envelope.png │ │ │ ├── FFwd.png │ │ │ ├── FFwdDisabled.png │ │ │ ├── GrabberDropLoc.png │ │ │ ├── HButtonDisabled.png │ │ │ ├── HButtonDown.png │ │ │ ├── HButtonHover.png │ │ │ ├── HButtonNormal.png │ │ │ ├── HelpIcon.png │ │ │ ├── HiliteButtonExpand.png │ │ │ ├── HiliteButtonExpandSel.png │ │ │ ├── HiliteButtonLarge.png │ │ │ ├── HiliteButtonSmall.png │ │ │ ├── HiliteUpButtonExpand.png │ │ │ ├── HiliteUpButtonExpandSel.png │ │ │ ├── HiliteUpButtonLarge.png │ │ │ ├── HiliteUpButtonSmall.png │ │ │ ├── IBeam.png │ │ │ ├── IBeamCursor.png │ │ │ ├── LabelCursorLeft.png │ │ │ ├── LabelCursorRight.png │ │ │ ├── LabelGlyph0.png │ │ │ ├── LabelGlyph1.png │ │ │ ├── LabelGlyph10.png │ │ │ ├── LabelGlyph11.png │ │ │ ├── LabelGlyph2.png │ │ │ ├── LabelGlyph3.png │ │ │ ├── LabelGlyph4.png │ │ │ ├── LabelGlyph5.png │ │ │ ├── LabelGlyph6.png │ │ │ ├── LabelGlyph7.png │ │ │ ├── LabelGlyph8.png │ │ │ ├── LabelGlyph9.png │ │ │ ├── Loop.png │ │ │ ├── LoopDisabled.png │ │ │ ├── MacDownButton.png │ │ │ ├── MacDownButtonSmall.png │ │ │ ├── MacHiliteButton.png │ │ │ ├── MacHiliteButtonSmall.png │ │ │ ├── MacHiliteUpButton.png │ │ │ ├── MacHiliteUpButtonSmall.png │ │ │ ├── MacUpButton.png │ │ │ ├── MacUpButtonSmall.png │ │ │ ├── Mic.png │ │ │ ├── MoreDisabled.png │ │ │ ├── MoreDown.png │ │ │ ├── MoreHover.png │ │ │ ├── MoreNormal.png │ │ │ ├── Multi.png │ │ │ ├── Options.png │ │ │ ├── OptionsDisabled.png │ │ │ ├── Paste.png │ │ │ ├── PasteDisabled.png │ │ │ ├── Pause.png │ │ │ ├── PauseDisabled.png │ │ │ ├── PitchDownIndicator.png │ │ │ ├── PitchUpIndicator.png │ │ │ ├── Play.png │ │ │ ├── PlayDisabled.png │ │ │ ├── PlayPointer.png │ │ │ ├── Record.png │ │ │ ├── RecordBelow.png │ │ │ ├── RecordBelowDisabled.png │ │ │ ├── RecordBeside.png │ │ │ ├── RecordBesideDisabled.png │ │ │ ├── RecordDisabled.png │ │ │ ├── RecordPointer.png │ │ │ ├── Redo.png │ │ │ ├── RedoDisabled.png │ │ │ ├── Rewind.png │ │ │ ├── RewindDisabled.png │ │ │ ├── Scrub.png │ │ │ ├── ScrubDisabled.png │ │ │ ├── Seek.png │ │ │ ├── SeekDisabled.png │ │ │ ├── Setup.png │ │ │ ├── ShareAudio.png │ │ │ ├── Silence.png │ │ │ ├── SilenceDisabled.png │ │ │ ├── SliderThumb.png │ │ │ ├── SliderThumbHilited.png │ │ │ ├── SliderThumbRotated.png │ │ │ ├── SliderThumbRotatedHilited.png │ │ │ ├── Speaker.png │ │ │ ├── SpectralBrush.png │ │ │ ├── SpeedIndicator.png │ │ │ ├── Stop.png │ │ │ ├── StopDisabled.png │ │ │ ├── SubViewsCursor.png │ │ │ ├── SyncLockIcon.png │ │ │ ├── SyncLockSelTile.png │ │ │ ├── SyncLockTracksDisabled.png │ │ │ ├── SyncLockTracksDown.png │ │ │ ├── SyncLockTracksUp.png │ │ │ ├── TimeCursor.png │ │ │ ├── TnAutomateSelection.png │ │ │ ├── TnAutomateSelectionDisabled.png │ │ │ ├── TnCalibrate.png │ │ │ ├── TnCalibrateDisabled.png │ │ │ ├── TnEndOff.png │ │ │ ├── TnEndOffDisabled.png │ │ │ ├── TnEndOn.png │ │ │ ├── TnEndOnDisabled.png │ │ │ ├── TnMakeTag.png │ │ │ ├── TnMakeTagDisabled.png │ │ │ ├── TnSelectSilence.png │ │ │ ├── TnSelectSilenceDisabled.png │ │ │ ├── TnSelectSound.png │ │ │ ├── TnSelectSoundDisabled.png │ │ │ ├── TnStartOff.png │ │ │ ├── TnStartOffDisabled.png │ │ │ ├── TnStartOn.png │ │ │ ├── TnStartOnDisabled.png │ │ │ ├── ToggleScrubRuler.png │ │ │ ├── TopFrequencyCursor.png │ │ │ ├── Trim.png │ │ │ ├── TrimDisabled.png │ │ │ ├── Undo.png │ │ │ ├── UndoDisabled.png │ │ │ ├── UpButtonExpand.png │ │ │ ├── UpButtonExpandSel.png │ │ │ ├── UpButtonLarge.png │ │ │ ├── UpButtonSmall.png │ │ │ ├── ZoomFit.png │ │ │ ├── ZoomFitDisabled.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomInCursor.png │ │ │ ├── ZoomInDisabled.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomOutCursor.png │ │ │ ├── ZoomOutDisabled.png │ │ │ ├── ZoomSel.png │ │ │ ├── ZoomSelDisabled.png │ │ │ ├── ZoomToggle.png │ │ │ └── ZoomToggleDisabled.png │ ├── high-contrast │ │ └── Components │ │ │ ├── AnonymousUser.png │ │ │ ├── AudacityLogo48x48.png │ │ │ ├── BandWidthCursor.png │ │ │ ├── BottomFrequencyCursor.png │ │ │ ├── CloseDisabled.png │ │ │ ├── CloseDown.png │ │ │ ├── CloseHover.png │ │ │ ├── CloseNormal.png │ │ │ ├── Cloud.png │ │ │ ├── CloudProgress.png │ │ │ ├── Cogwheel.png │ │ │ ├── Colors.txt │ │ │ ├── Copy.png │ │ │ ├── CopyDisabled.png │ │ │ ├── CrosshairCursor.png │ │ │ ├── Cut.png │ │ │ ├── CutDisabled.png │ │ │ ├── CutPreview.png │ │ │ ├── CutPreviewDisabled.png │ │ │ ├── Delete.png │ │ │ ├── DeleteDisabled.png │ │ │ ├── DisabledCursor.png │ │ │ ├── DownButtonExpand.png │ │ │ ├── DownButtonExpandSel.png │ │ │ ├── DownButtonLarge.png │ │ │ ├── DownButtonSmall.png │ │ │ ├── DragArea.png │ │ │ ├── Draw.png │ │ │ ├── DrawCursor.png │ │ │ ├── EditEffects.png │ │ │ ├── EffectOff.png │ │ │ ├── EffectOn.png │ │ │ ├── EnvCursor.png │ │ │ ├── Envelope.png │ │ │ ├── FFwd.png │ │ │ ├── FFwdDisabled.png │ │ │ ├── GrabberDropLoc.png │ │ │ ├── HButtonDisabled.png │ │ │ ├── HButtonDown.png │ │ │ ├── HButtonHover.png │ │ │ ├── HButtonNormal.png │ │ │ ├── HelpIcon.png │ │ │ ├── HiliteButtonExpand.png │ │ │ ├── HiliteButtonExpandSel.png │ │ │ ├── HiliteButtonLarge.png │ │ │ ├── HiliteButtonSmall.png │ │ │ ├── HiliteUpButtonExpand.png │ │ │ ├── HiliteUpButtonExpandSel.png │ │ │ ├── HiliteUpButtonLarge.png │ │ │ ├── HiliteUpButtonSmall.png │ │ │ ├── IBeam.png │ │ │ ├── IBeamCursor.png │ │ │ ├── LabelCursorLeft.png │ │ │ ├── LabelCursorRight.png │ │ │ ├── LabelGlyph0.png │ │ │ ├── LabelGlyph1.png │ │ │ ├── LabelGlyph10.png │ │ │ ├── LabelGlyph11.png │ │ │ ├── LabelGlyph2.png │ │ │ ├── LabelGlyph3.png │ │ │ ├── LabelGlyph4.png │ │ │ ├── LabelGlyph5.png │ │ │ ├── LabelGlyph6.png │ │ │ ├── LabelGlyph7.png │ │ │ ├── LabelGlyph8.png │ │ │ ├── LabelGlyph9.png │ │ │ ├── Loop.png │ │ │ ├── LoopDisabled.png │ │ │ ├── MacDownButton.png │ │ │ ├── MacDownButtonSmall.png │ │ │ ├── MacHiliteButton.png │ │ │ ├── MacHiliteButtonSmall.png │ │ │ ├── MacHiliteUpButton.png │ │ │ ├── MacHiliteUpButtonSmall.png │ │ │ ├── MacUpButton.png │ │ │ ├── MacUpButtonSmall.png │ │ │ ├── Mic.png │ │ │ ├── MoreDisabled.png │ │ │ ├── MoreDown.png │ │ │ ├── MoreHover.png │ │ │ ├── MoreNormal.png │ │ │ ├── Multi.png │ │ │ ├── Options.png │ │ │ ├── OptionsDisabled.png │ │ │ ├── Paste.png │ │ │ ├── PasteDisabled.png │ │ │ ├── Pause.png │ │ │ ├── PauseDisabled.png │ │ │ ├── PitchDownIndicator.png │ │ │ ├── PitchUpIndicator.png │ │ │ ├── Play.png │ │ │ ├── PlayDisabled.png │ │ │ ├── PlayPointer.png │ │ │ ├── Record.png │ │ │ ├── RecordBelow.png │ │ │ ├── RecordBelowDisabled.png │ │ │ ├── RecordBeside.png │ │ │ ├── RecordBesideDisabled.png │ │ │ ├── RecordDisabled.png │ │ │ ├── RecordPointer.png │ │ │ ├── Redo.png │ │ │ ├── RedoDisabled.png │ │ │ ├── Rewind.png │ │ │ ├── RewindDisabled.png │ │ │ ├── Scrub.png │ │ │ ├── ScrubDisabled.png │ │ │ ├── Seek.png │ │ │ ├── SeekDisabled.png │ │ │ ├── Setup.png │ │ │ ├── ShareAudio.png │ │ │ ├── Silence.png │ │ │ ├── SilenceDisabled.png │ │ │ ├── SliderThumb.png │ │ │ ├── SliderThumbHilited.png │ │ │ ├── SliderThumbRotated.png │ │ │ ├── SliderThumbRotatedHilited.png │ │ │ ├── Speaker.png │ │ │ ├── SpectralBrush.png │ │ │ ├── SpeedIndicator.png │ │ │ ├── Stop.png │ │ │ ├── StopDisabled.png │ │ │ ├── SubViewsCursor.png │ │ │ ├── SyncLockIcon.png │ │ │ ├── SyncLockSelTile.png │ │ │ ├── SyncLockTracksDisabled.png │ │ │ ├── SyncLockTracksDown.png │ │ │ ├── SyncLockTracksUp.png │ │ │ ├── TimeCursor.png │ │ │ ├── TnAutomateSelection.png │ │ │ ├── TnAutomateSelectionDisabled.png │ │ │ ├── TnCalibrate.png │ │ │ ├── TnCalibrateDisabled.png │ │ │ ├── TnEndOff.png │ │ │ ├── TnEndOffDisabled.png │ │ │ ├── TnEndOn.png │ │ │ ├── TnEndOnDisabled.png │ │ │ ├── TnMakeTag.png │ │ │ ├── TnMakeTagDisabled.png │ │ │ ├── TnSelectSilence.png │ │ │ ├── TnSelectSilenceDisabled.png │ │ │ ├── TnSelectSound.png │ │ │ ├── TnSelectSoundDisabled.png │ │ │ ├── TnStartOff.png │ │ │ ├── TnStartOffDisabled.png │ │ │ ├── TnStartOn.png │ │ │ ├── TnStartOnDisabled.png │ │ │ ├── ToggleScrubRuler.png │ │ │ ├── TopFrequencyCursor.png │ │ │ ├── Trim.png │ │ │ ├── TrimDisabled.png │ │ │ ├── Undo.png │ │ │ ├── UndoDisabled.png │ │ │ ├── UpButtonExpand.png │ │ │ ├── UpButtonExpandSel.png │ │ │ ├── UpButtonLarge.png │ │ │ ├── UpButtonSmall.png │ │ │ ├── ZoomFit.png │ │ │ ├── ZoomFitDisabled.png │ │ │ ├── ZoomIn.png │ │ │ ├── ZoomInCursor.png │ │ │ ├── ZoomInDisabled.png │ │ │ ├── ZoomOut.png │ │ │ ├── ZoomOutCursor.png │ │ │ ├── ZoomOutDisabled.png │ │ │ ├── ZoomSel.png │ │ │ ├── ZoomSelDisabled.png │ │ │ ├── ZoomToggle.png │ │ │ └── ZoomToggleDisabled.png │ └── light │ │ └── Components │ │ ├── AnonymousUser.png │ │ ├── AudacityLogo48x48.png │ │ ├── BandWidthCursor.png │ │ ├── BottomFrequencyCursor.png │ │ ├── CloseDisabled.png │ │ ├── CloseDown.png │ │ ├── CloseHover.png │ │ ├── CloseNormal.png │ │ ├── Cloud.png │ │ ├── CloudProgress.png │ │ ├── Cogwheel.png │ │ ├── Colors.txt │ │ ├── Copy.png │ │ ├── CopyDisabled.png │ │ ├── CrosshairCursor.png │ │ ├── Cut.png │ │ ├── CutDisabled.png │ │ ├── CutPreview.png │ │ ├── CutPreviewDisabled.png │ │ ├── Delete.png │ │ ├── DeleteDisabled.png │ │ ├── DisabledCursor.png │ │ ├── DownButtonExpand.png │ │ ├── DownButtonExpandSel.png │ │ ├── DownButtonLarge.png │ │ ├── DownButtonSmall.png │ │ ├── DragArea.png │ │ ├── Draw.png │ │ ├── DrawCursor.png │ │ ├── EditEffects.png │ │ ├── EffectOff.png │ │ ├── EffectOn.png │ │ ├── EnvCursor.png │ │ ├── Envelope.png │ │ ├── FFwd.png │ │ ├── FFwdDisabled.png │ │ ├── GrabberDropLoc.png │ │ ├── HButtonDisabled.png │ │ ├── HButtonDown.png │ │ ├── HButtonHover.png │ │ ├── HButtonNormal.png │ │ ├── HelpIcon.png │ │ ├── HiliteButtonExpand.png │ │ ├── HiliteButtonExpandSel.png │ │ ├── HiliteButtonLarge.png │ │ ├── HiliteButtonSmall.png │ │ ├── HiliteUpButtonExpand.png │ │ ├── HiliteUpButtonExpandSel.png │ │ ├── HiliteUpButtonLarge.png │ │ ├── HiliteUpButtonSmall.png │ │ ├── IBeam.png │ │ ├── IBeamCursor.png │ │ ├── LabelCursorLeft.png │ │ ├── LabelCursorRight.png │ │ ├── LabelGlyph0.png │ │ ├── LabelGlyph1.png │ │ ├── LabelGlyph10.png │ │ ├── LabelGlyph11.png │ │ ├── LabelGlyph2.png │ │ ├── LabelGlyph3.png │ │ ├── LabelGlyph4.png │ │ ├── LabelGlyph5.png │ │ ├── LabelGlyph6.png │ │ ├── LabelGlyph7.png │ │ ├── LabelGlyph8.png │ │ ├── LabelGlyph9.png │ │ ├── Loop.png │ │ ├── LoopDisabled.png │ │ ├── MacDownButton.png │ │ ├── MacDownButtonSmall.png │ │ ├── MacHiliteButton.png │ │ ├── MacHiliteButtonSmall.png │ │ ├── MacHiliteUpButton.png │ │ ├── MacHiliteUpButtonSmall.png │ │ ├── MacUpButton.png │ │ ├── MacUpButtonSmall.png │ │ ├── Mic.png │ │ ├── MoreDisabled.png │ │ ├── MoreDown.png │ │ ├── MoreHover.png │ │ ├── MoreNormal.png │ │ ├── Multi.png │ │ ├── Options.png │ │ ├── OptionsDisabled.png │ │ ├── Paste.png │ │ ├── PasteDisabled.png │ │ ├── Pause.png │ │ ├── PauseDisabled.png │ │ ├── PitchDownIndicator.png │ │ ├── PitchUpIndicator.png │ │ ├── Play.png │ │ ├── PlayDisabled.png │ │ ├── PlayPointer.png │ │ ├── Record.png │ │ ├── RecordBelow.png │ │ ├── RecordBelowDisabled.png │ │ ├── RecordBeside.png │ │ ├── RecordBesideDisabled.png │ │ ├── RecordDisabled.png │ │ ├── RecordPointer.png │ │ ├── Redo.png │ │ ├── RedoDisabled.png │ │ ├── Rewind.png │ │ ├── RewindDisabled.png │ │ ├── Scrub.png │ │ ├── ScrubDisabled.png │ │ ├── Seek.png │ │ ├── SeekDisabled.png │ │ ├── Setup.png │ │ ├── ShareAudio.png │ │ ├── Silence.png │ │ ├── SilenceDisabled.png │ │ ├── SliderThumb.png │ │ ├── SliderThumbHilited.png │ │ ├── SliderThumbRotated.png │ │ ├── SliderThumbRotatedHilited.png │ │ ├── Speaker.png │ │ ├── SpectralBrush.png │ │ ├── SpeedIndicator.png │ │ ├── Stop.png │ │ ├── StopDisabled.png │ │ ├── SubViewsCursor.png │ │ ├── SyncLockIcon.png │ │ ├── SyncLockSelTile.png │ │ ├── SyncLockTracksDisabled.png │ │ ├── SyncLockTracksDown.png │ │ ├── SyncLockTracksUp.png │ │ ├── TimeCursor.png │ │ ├── TnAutomateSelection.png │ │ ├── TnAutomateSelectionDisabled.png │ │ ├── TnCalibrate.png │ │ ├── TnCalibrateDisabled.png │ │ ├── TnEndOff.png │ │ ├── TnEndOffDisabled.png │ │ ├── TnEndOn.png │ │ ├── TnEndOnDisabled.png │ │ ├── TnMakeTag.png │ │ ├── TnMakeTagDisabled.png │ │ ├── TnSelectSilence.png │ │ ├── TnSelectSilenceDisabled.png │ │ ├── TnSelectSound.png │ │ ├── TnSelectSoundDisabled.png │ │ ├── TnStartOff.png │ │ ├── TnStartOffDisabled.png │ │ ├── TnStartOn.png │ │ ├── TnStartOnDisabled.png │ │ ├── ToggleScrubRuler.png │ │ ├── TopFrequencyCursor.png │ │ ├── Trim.png │ │ ├── TrimDisabled.png │ │ ├── Undo.png │ │ ├── UndoDisabled.png │ │ ├── UpButtonExpand.png │ │ ├── UpButtonExpandSel.png │ │ ├── UpButtonLarge.png │ │ ├── UpButtonSmall.png │ │ ├── ZoomFit.png │ │ ├── ZoomFitDisabled.png │ │ ├── ZoomIn.png │ │ ├── ZoomInCursor.png │ │ ├── ZoomInDisabled.png │ │ ├── ZoomOut.png │ │ ├── ZoomOutCursor.png │ │ ├── ZoomOutDisabled.png │ │ ├── ZoomSel.png │ │ ├── ZoomSelDisabled.png │ │ ├── ZoomToggle.png │ │ └── ZoomToggleDisabled.png ├── lib-theme │ ├── AColor.cpp │ ├── AColor.h │ ├── AColorResources.h │ ├── AllThemeResources.cpp │ ├── AllThemeResources.h │ ├── CMakeLists.txt │ ├── ImageManipulation.cpp │ ├── ImageManipulation.h │ ├── MacroMagic.h │ ├── Theme.cpp │ ├── Theme.h │ ├── ThemeAsCeeCode.h │ └── ThemeImageDefsAsCee.h ├── lib-time-and-pitch │ ├── .clang-format │ ├── AudioContainer.cpp │ ├── AudioContainer.h │ ├── CMakeLists.txt │ ├── DummyFormantShifterLogger.cpp │ ├── DummyFormantShifterLogger.h │ ├── FormantShifter.cpp │ ├── FormantShifter.h │ ├── FormantShifterLogVisualization.py │ ├── FormantShifterLogger.cpp │ ├── FormantShifterLogger.h │ ├── FormantShifterLoggerInterface.h │ ├── StaffPad │ │ ├── CircularSampleBuffer.h │ │ ├── FourierTransform_pffft.cpp │ │ ├── FourierTransform_pffft.h │ │ ├── SamplesFloat.h │ │ ├── SimdComplexConversions_sse2.h │ │ ├── SimdTypes.h │ │ ├── SimdTypes_neon.h │ │ ├── SimdTypes_scalar.h │ │ ├── SimdTypes_sse2.h │ │ ├── TimeAndPitch.cpp │ │ ├── TimeAndPitch.h │ │ ├── VectorOps.h │ │ └── readme.md │ ├── StaffPadTimeAndPitch.cpp │ ├── StaffPadTimeAndPitch.h │ ├── TimeAndPitchExperimentalSettings.cpp │ ├── TimeAndPitchExperimentalSettings.h │ ├── TimeAndPitchInterface.cpp │ ├── TimeAndPitchInterface.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── StaffPadTimeAndPitchTest.cpp │ │ ├── TimeAndPitchFakeSource.h │ │ └── TimeAndPitchRealSource.h ├── lib-time-frequency-selection │ ├── CMakeLists.txt │ ├── ProjectSelectionManager.cpp │ ├── ProjectSelectionManager.h │ ├── SelectedRegion.cpp │ ├── SelectedRegion.h │ ├── ViewInfo.cpp │ └── ViewInfo.h ├── lib-time-track │ ├── CMakeLists.txt │ ├── TimeTrack.cpp │ └── TimeTrack.h ├── lib-track-selection │ ├── CMakeLists.txt │ ├── SelectionState.cpp │ ├── SelectionState.h │ ├── SyncLock.cpp │ ├── SyncLock.h │ ├── TrackFocus.cpp │ └── TrackFocus.h ├── lib-track │ ├── CMakeLists.txt │ ├── ChannelAttachments.cpp │ ├── ChannelAttachments.h │ ├── PendingTracks.cpp │ ├── PendingTracks.h │ ├── TimeWarper.cpp │ ├── TimeWarper.h │ ├── Track.cpp │ ├── Track.h │ ├── TrackAttachment.cpp │ ├── TrackAttachment.h │ ├── UndoTracks.cpp │ └── UndoTracks.h ├── lib-transactions │ ├── CMakeLists.txt │ ├── TransactionScope.cpp │ └── TransactionScope.h ├── lib-url-schemes │ ├── CMakeLists.txt │ ├── URLSchemesRegistry.cpp │ ├── URLSchemesRegistry.h │ ├── macos │ │ └── SchemeRegistrar.cpp │ └── win │ │ └── SchemeRegistrar.cpp ├── lib-utility │ ├── AppEvents.cpp │ ├── AppEvents.h │ ├── BufferedStreamReader.cpp │ ├── BufferedStreamReader.h │ ├── CFResources.cpp │ ├── CFResources.h │ ├── CMakeLists.txt │ ├── CRTPBase.h │ ├── Callable.cpp │ ├── Callable.h │ ├── CommandLineArgs.cpp │ ├── CommandLineArgs.h │ ├── Composite.cpp │ ├── Composite.h │ ├── GlobalVariable.h │ ├── IteratorX.cpp │ ├── IteratorX.h │ ├── MapToPositiveHalfIndex.h │ ├── MathApprox.h │ ├── MemoryStream.cpp │ ├── MemoryStream.h │ ├── MemoryX.cpp │ ├── MemoryX.h │ ├── MessageBuffer.h │ ├── ModuleConstants.cpp │ ├── ModuleConstants.h │ ├── Observer.cpp │ ├── Observer.h │ ├── PackedArray.h │ ├── Tuple.cpp │ ├── Tuple.h │ ├── TypeEnumerator.cpp │ ├── TypeEnumerator.h │ ├── TypeList.cpp │ ├── TypeList.h │ ├── TypeListVisitor.h │ ├── TypeSwitch.cpp │ ├── TypeSwitch.h │ ├── TypedAny.h │ ├── Variant.cpp │ ├── Variant.h │ ├── spinlock.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── CallableTest.cpp │ │ ├── CompositeTest.cpp │ │ ├── MathApproxTest.cpp │ │ ├── TupleTest.cpp │ │ ├── TypeEnumeratorTest.cpp │ │ └── VariantTest.cpp ├── lib-uuid │ ├── CMakeLists.txt │ ├── Uuid.cpp │ └── Uuid.h ├── lib-viewport │ ├── CMakeLists.txt │ ├── Viewport.cpp │ └── Viewport.h ├── lib-vst │ ├── CMakeLists.txt │ ├── VSTEffectBase.cpp │ ├── VSTEffectBase.h │ ├── VSTEffectsModule.cpp │ ├── VSTEffectsModule.h │ ├── VSTInstance.cpp │ ├── VSTInstance.h │ ├── VSTWrapper.cpp │ ├── VSTWrapper.h │ └── aeffectx.h ├── lib-vst3 │ ├── AudacityVst3HostApplication.cpp │ ├── AudacityVst3HostApplication.h │ ├── CMakeLists.txt │ ├── VST3EffectBase.cpp │ ├── VST3EffectBase.h │ ├── VST3EffectsModule.cpp │ ├── VST3EffectsModule.h │ ├── VST3Instance.cpp │ ├── VST3Instance.h │ ├── VST3Utils.cpp │ ├── VST3Utils.h │ ├── VST3Wrapper.cpp │ ├── VST3Wrapper.h │ ├── internal │ │ ├── ConnectionProxy.cpp │ │ └── ConnectionProxy.h │ ├── memorystream.cpp │ ├── memorystream.h │ ├── module_linux.cpp │ ├── module_mac.mm │ └── module_win32.cpp ├── lib-wave-track-paint │ ├── CMakeLists.txt │ ├── GraphicsDataCache.cpp │ ├── GraphicsDataCache.h │ ├── PixelSampleMapper.cpp │ ├── PixelSampleMapper.h │ ├── tests │ │ ├── CMakeLists.txt │ │ └── GraphicsDataCacheTests.cpp │ └── waveform │ │ ├── WaveBitmapCache.cpp │ │ ├── WaveBitmapCache.h │ │ ├── WaveData.cpp │ │ ├── WaveData.h │ │ ├── WaveDataCache.cpp │ │ ├── WaveDataCache.h │ │ ├── WavePaintParameters.cpp │ │ └── WavePaintParameters.h ├── lib-wave-track │ ├── CMakeLists.txt │ ├── SampleBlock.cpp │ ├── SampleBlock.h │ ├── Sequence.cpp │ ├── Sequence.h │ ├── TimeStretching.cpp │ ├── TimeStretching.h │ ├── WaveChannelUtilities.cpp │ ├── WaveChannelUtilities.h │ ├── WaveClip.cpp │ ├── WaveClip.h │ ├── WaveClipUtilities.cpp │ ├── WaveClipUtilities.h │ ├── WaveTrack.cpp │ ├── WaveTrack.h │ ├── WaveTrackSink.cpp │ ├── WaveTrackSink.h │ ├── WaveTrackUtilities.cpp │ └── WaveTrackUtilities.h ├── lib-wx-init │ ├── AccessibleLinksFormatter.cpp │ ├── AccessibleLinksFormatter.h │ ├── AudacityLogoAlpha.xpm │ ├── AudacityMessageBox.cpp │ ├── AudacityMessageBox.h │ ├── CMakeLists.txt │ ├── ErrorDialog.cpp │ ├── ErrorDialog.h │ ├── ErrorReportDialog.cpp │ ├── ErrorReportDialog.h │ ├── HelpSystem.cpp │ ├── HelpSystem.h │ ├── HelpText.cpp │ ├── HelpText.h │ ├── HtmlWindow.cpp │ ├── HtmlWindow.h │ ├── Journal.cpp │ ├── Journal.h │ ├── JournalOutput.cpp │ ├── JournalOutput.h │ ├── JournalRegistry.cpp │ ├── JournalRegistry.h │ ├── LogWindow.cpp │ ├── LogWindow.h │ ├── MultiDialog.cpp │ ├── MultiDialog.h │ ├── ProgressDialog.cpp │ ├── ProgressDialog.h │ ├── SelectFile.cpp │ ├── SelectFile.h │ ├── SettingsWX.cpp │ ├── SettingsWX.h │ ├── wxWidgetsBasicUI.cpp │ ├── wxWidgetsBasicUI.h │ ├── wxWidgetsWindowPlacement.cpp │ └── wxWidgetsWindowPlacement.h ├── lib-wx-wrappers │ ├── AccessibilityUtils.cpp │ ├── AccessibilityUtils.h │ ├── AudacityDontAskAgainMessageDialog.cpp │ ├── AudacityDontAskAgainMessageDialog.h │ ├── AudacityTextEntryDialog.cpp │ ├── AudacityTextEntryDialog.h │ ├── CMakeLists.txt │ ├── FileDialog │ │ ├── FileDialog.cpp │ │ ├── FileDialog.h │ │ ├── gtk │ │ │ ├── FileDialogPrivate.cpp │ │ │ └── FileDialogPrivate.h │ │ ├── mac │ │ │ ├── FileDialogPrivate.h │ │ │ └── FileDialogPrivate.mm │ │ └── win │ │ │ ├── FileDialogPrivate.cpp │ │ │ └── FileDialogPrivate.h │ ├── SpinControl.cpp │ ├── SpinControl.h │ ├── WindowAccessible.cpp │ ├── WindowAccessible.h │ ├── wxPanelWrapper.cpp │ └── wxPanelWrapper.h └── lib-xml │ ├── CMakeLists.txt │ ├── XMLAttributeValueView.cpp │ ├── XMLAttributeValueView.h │ ├── XMLFileReader.cpp │ ├── XMLFileReader.h │ ├── XMLMethodRegistry.cpp │ ├── XMLMethodRegistry.h │ ├── XMLTagHandler.cpp │ ├── XMLTagHandler.h │ ├── XMLWriter.cpp │ ├── XMLWriter.h │ └── audacityproject.dtd ├── linux ├── AppImage │ ├── AppRun.sh │ └── apprun-hooks │ │ └── 00-preserve-environment.sh ├── audacity.sh ├── check_dependencies.sh ├── create_appimage.sh ├── findlib.c ├── ldd_recursive.pl ├── package_appimage.cmake ├── packages │ ├── arch │ │ ├── Dockerfile │ │ ├── PKGBUILD │ │ ├── dependencies.sh │ │ └── entrypoint.sh │ ├── build_package.sh │ ├── build_packages.sh │ ├── fedora34 │ │ ├── Dockerfile │ │ ├── audacity.spec │ │ ├── dependencies.sh │ │ └── entrypoint.sh │ ├── prepare_offline_dependencies.sh │ └── ubuntu-20.04 │ │ ├── Dockerfile │ │ ├── debian │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── source │ │ │ └── format │ │ ├── dependencies.sh │ │ └── entrypoint.sh ├── required_libraries.md └── ubuntu-focal │ ├── Dockerfile │ ├── dependencies.sh │ ├── entrypoint.sh │ └── pkgconfig │ ├── id3tag.pc │ ├── lame.pc │ ├── mad.pc │ └── portmidi.pc ├── locale ├── CMakeLists.txt ├── CeePlusPlusifyLanguageNames.pl ├── LINGUAS ├── LanguageNames.txt ├── af.po ├── ar.po ├── audacity.pot ├── be.po ├── bg.po ├── bn.po ├── bs.po ├── ca.po ├── ca_ES@valencia.po ├── co.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── diagnostics.sh ├── el.po ├── es.po ├── eu.po ├── eu_ES.po ├── fa.po ├── fi.po ├── find-duplicates.pl ├── fr.po ├── ga.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── id.po ├── inactive │ ├── br_Transifex20201031.po │ ├── lv_Transifex20201031.po │ ├── pms_Transifex20201031.po │ └── sq_Transifex20201031.po ├── it.po ├── ja.po ├── ka.po ├── km.po ├── ko.po ├── lt.po ├── mk.po ├── mr.po ├── msgfmt.py ├── my.po ├── nb.po ├── nl.po ├── no_id.sh ├── oc.po ├── pl.po ├── pt_BR.po ├── pt_PT.po ├── resources.its ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sr_RS.po ├── sr_RS@latin.po ├── sv.po ├── ta.po ├── tg.po ├── tr.po ├── uk.po ├── update_po_files.sh ├── vi.po ├── zh_CN.po └── zh_TW.po ├── mac ├── Audacity.entitlements ├── Install.txt ├── Resources │ ├── Audacity-DMG-background.png │ ├── Audacity.icns │ ├── AudacityAIFF.icns │ ├── AudacityAU.icns │ ├── AudacityMP3.icns │ ├── AudacityOGG.icns │ ├── AudacityProject.icns │ └── AudacityWAV.icns ├── Wrapper.c └── signing.txt ├── modules ├── CMakeLists.txt ├── etc │ ├── CMakeLists.txt │ └── mod-null │ │ ├── CMakeLists.txt │ │ ├── ModNullCallback.cpp │ │ └── ModNullCallback.h ├── import-export │ ├── CMakeLists.txt │ ├── mod-aup │ │ ├── AUP.cpp │ │ ├── CMakeLists.txt │ │ └── ImportAUP.cpp │ ├── mod-cl │ │ ├── CL.cpp │ │ ├── CMakeLists.txt │ │ └── ExportCL.cpp │ ├── mod-ffmpeg │ │ ├── CMakeLists.txt │ │ ├── ExportFFmpeg.cpp │ │ ├── ExportFFmpegOptions.cpp │ │ ├── ExportFFmpegOptions.h │ │ ├── FFmpeg.cpp │ │ ├── FFmpeg.h │ │ ├── FFmpegDefines.h │ │ ├── FFmpegPrefs.cpp │ │ ├── FFmpegPresets.cpp │ │ ├── FFmpegPresets.h │ │ ├── ImportFFmpeg.cpp │ │ └── lib-ffmpeg-support │ │ │ ├── AVCodecFunctions.h │ │ │ ├── AVCodecID.h │ │ │ ├── AVFormatFunctions.h │ │ │ ├── AVUtilFunctions.h │ │ │ ├── CMakeLists.txt │ │ │ ├── FFmpegFunctions.cpp │ │ │ ├── FFmpegFunctions.h │ │ │ ├── FFmpegTypes.h │ │ │ ├── FifoBuffer.cpp │ │ │ ├── FifoBuffer.h │ │ │ ├── generator │ │ │ ├── generate_headers.py │ │ │ ├── generate_headers.sh │ │ │ └── generator.cpp │ │ │ ├── impl │ │ │ ├── AVCodecIDLookup.inl │ │ │ ├── DynamicLibraryHelpers.cpp │ │ │ ├── DynamicLibraryHelpers.h │ │ │ ├── FFmpegAPIResolver.cpp │ │ │ ├── FFmpegAPIResolver.h │ │ │ ├── FFmpegLog.h │ │ │ ├── avcodec │ │ │ │ ├── 55 │ │ │ │ │ ├── AVCodecIDLookup.cpp │ │ │ │ │ └── AVCodecImpl.cpp │ │ │ │ ├── 57 │ │ │ │ │ ├── AVCodecIDLookup.cpp │ │ │ │ │ └── AVCodecImpl.cpp │ │ │ │ ├── 58 │ │ │ │ │ ├── AVCodecIDLookup.cpp │ │ │ │ │ └── AVCodecImpl.cpp │ │ │ │ ├── 59 │ │ │ │ │ ├── AVCodecIDLookup.cpp │ │ │ │ │ └── AVCodecImpl.cpp │ │ │ │ ├── 60 │ │ │ │ │ ├── AVCodecIDLookup.cpp │ │ │ │ │ └── AVCodecImpl.cpp │ │ │ │ ├── 61 │ │ │ │ │ ├── AVCodecIDLookup.cpp │ │ │ │ │ └── AVCodecImpl.cpp │ │ │ │ ├── AVCodecContextWrapperImpl.inl │ │ │ │ ├── AVCodecFunctionsLoader.cpp │ │ │ │ ├── AVCodecFunctionsLoader.h │ │ │ │ ├── AVCodecWrapperImpl.inl │ │ │ │ └── AVPacketWrapperImpl.inl │ │ │ ├── avformat │ │ │ │ ├── 55 │ │ │ │ │ └── AVFormatImpl.cpp │ │ │ │ ├── 57 │ │ │ │ │ └── AVFormatImpl.cpp │ │ │ │ ├── 58 │ │ │ │ │ └── AVFormatImpl.cpp │ │ │ │ ├── 59 │ │ │ │ │ └── AVFormatImpl.cpp │ │ │ │ ├── 60 │ │ │ │ │ └── AVFormatImpl.cpp │ │ │ │ ├── 61 │ │ │ │ │ └── AVFormatImpl.cpp │ │ │ │ ├── AVFormatContextWrapperImpl.inl │ │ │ │ ├── AVFormatFunctionsLoader.cpp │ │ │ │ ├── AVFormatFunctionsLoader.h │ │ │ │ ├── AVIOContextWrapperImpl.inl │ │ │ │ ├── AVInputFormatWrapperImpl.inl │ │ │ │ ├── AVOutputFormatWrapperImpl.inl │ │ │ │ └── AVStreamWrapperImpl.inl │ │ │ ├── avutil │ │ │ │ ├── 52 │ │ │ │ │ ├── AVUtilImpl.cpp │ │ │ │ │ └── avconfig.h │ │ │ │ ├── 55 │ │ │ │ │ ├── AVUtilImpl.cpp │ │ │ │ │ └── avconfig.h │ │ │ │ ├── 56 │ │ │ │ │ ├── AVUtilImpl.cpp │ │ │ │ │ └── avconfig.h │ │ │ │ ├── 57 │ │ │ │ │ ├── AVUtilImpl.cpp │ │ │ │ │ └── avconfig.h │ │ │ │ ├── 58 │ │ │ │ │ ├── AVUtilImpl.cpp │ │ │ │ │ └── avconfig.h │ │ │ │ ├── 59 │ │ │ │ │ ├── AVUtilImpl.cpp │ │ │ │ │ └── avconfig.h │ │ │ │ ├── AVChannelLayoutWrapperImpl.inl │ │ │ │ ├── AVFrameWrapperImpl.inl │ │ │ │ ├── AVUtilFunctionsLoader.cpp │ │ │ │ ├── AVUtilFunctionsLoader.h │ │ │ │ └── FFmpegLogImpl.inl │ │ │ ├── ffmpeg-2.3.6-single-header.h │ │ │ ├── ffmpeg-3.4.8-single-header.h │ │ │ ├── ffmpeg-4.2.4-single-header.h │ │ │ ├── ffmpeg-5.0.1-single-header.h │ │ │ ├── ffmpeg-6.0.0-single-header.h │ │ │ └── ffmpeg-7.0.0-single-header.h │ │ │ └── wrappers │ │ │ ├── AVChannelLayoutWrapper.h │ │ │ ├── AVCodecContextWrapper.cpp │ │ │ ├── AVCodecContextWrapper.h │ │ │ ├── AVCodecWrapper.cpp │ │ │ ├── AVCodecWrapper.h │ │ │ ├── AVDictionaryWrapper.cpp │ │ │ ├── AVDictionaryWrapper.h │ │ │ ├── AVFormatContextWrapper.cpp │ │ │ ├── AVFormatContextWrapper.h │ │ │ ├── AVFrameWrapper.cpp │ │ │ ├── AVFrameWrapper.h │ │ │ ├── AVIOContextWrapper.cpp │ │ │ ├── AVIOContextWrapper.h │ │ │ ├── AVInputFormatWrapper.cpp │ │ │ ├── AVInputFormatWrapper.h │ │ │ ├── AVOutputFormatWrapper.cpp │ │ │ ├── AVOutputFormatWrapper.h │ │ │ ├── AVPacketWrapper.cpp │ │ │ ├── AVPacketWrapper.h │ │ │ ├── AVStreamWrapper.cpp │ │ │ └── AVStreamWrapper.h │ ├── mod-flac │ │ ├── CMakeLists.txt │ │ ├── ExportFLAC.cpp │ │ ├── FLAC.cpp │ │ └── ImportFLAC.cpp │ ├── mod-lof │ │ ├── CMakeLists.txt │ │ ├── ImportLOF.cpp │ │ └── LOF.cpp │ ├── mod-mp2 │ │ ├── CMakeLists.txt │ │ ├── ExportMP2.cpp │ │ └── MP2.cpp │ ├── mod-mp3 │ │ ├── CMakeLists.txt │ │ ├── ExportMP3.cpp │ │ ├── ExportMP3.h │ │ ├── MP3.cpp │ │ └── MP3Prefs.cpp │ ├── mod-mpg123 │ │ ├── CMakeLists.txt │ │ ├── ImportMP3_MPG123.cpp │ │ └── MPG123.cpp │ ├── mod-ogg │ │ ├── CMakeLists.txt │ │ ├── ExportOGG.cpp │ │ ├── ImportOGG.cpp │ │ └── OGG.cpp │ ├── mod-opus │ │ ├── CMakeLists.txt │ │ ├── ExportOpus.cpp │ │ ├── ImportOpus.cpp │ │ └── Opus.cpp │ ├── mod-pcm │ │ ├── CMakeLists.txt │ │ ├── ExportPCM.cpp │ │ ├── ImportPCM.cpp │ │ └── PCM.cpp │ └── mod-wavpack │ │ ├── CMakeLists.txt │ │ ├── ExportWavPack.cpp │ │ ├── ImportWavPack.cpp │ │ └── WavPack.cpp ├── nyquist │ ├── CMakeLists.txt │ └── mod-nyq-bench │ │ ├── CMakeLists.txt │ │ ├── NyqBench.cpp │ │ ├── NyqBench.h │ │ ├── Readme.txt │ │ └── images │ │ ├── document-new-large.xpm │ │ ├── document-new-small.xpm │ │ ├── document-open-large.xpm │ │ ├── document-open-small.xpm │ │ ├── document-save-as-large.xpm │ │ ├── document-save-as-small.xpm │ │ ├── document-save-large.xpm │ │ ├── document-save-small.xpm │ │ ├── edit-clear-large.xpm │ │ ├── edit-clear-small.xpm │ │ ├── edit-copy-large.xpm │ │ ├── edit-copy-small.xpm │ │ ├── edit-cut-large.xpm │ │ ├── edit-cut-small.xpm │ │ ├── edit-delete-large.xpm │ │ ├── edit-delete-small.xpm │ │ ├── edit-find-large.xpm │ │ ├── edit-find-small.xpm │ │ ├── edit-paste-large.xpm │ │ ├── edit-paste-small.xpm │ │ ├── edit-redo-large.xpm │ │ ├── edit-redo-small.xpm │ │ ├── edit-select-all-large.xpm │ │ ├── edit-select-all-small.xpm │ │ ├── edit-undo-large.xpm │ │ ├── edit-undo-small.xpm │ │ ├── go-next-large.xpm │ │ ├── go-next-small.xpm │ │ ├── go-previous-large.xpm │ │ ├── go-previous-small.xpm │ │ ├── go-top-large.xpm │ │ ├── go-top-small.xpm │ │ ├── go-up-large.xpm │ │ ├── go-up-small.xpm │ │ ├── media-playback-pause-large.xpm │ │ ├── media-playback-pause-small.xpm │ │ ├── media-playback-start-large.xpm │ │ ├── media-playback-start-small.xpm │ │ ├── media-playback-stop-large.xpm │ │ ├── media-playback-stop-small.xpm │ │ ├── system-search-large.xpm │ │ └── system-search-small.xpm ├── scripting │ ├── CMakeLists.txt │ └── mod-script-pipe │ │ ├── CMakeLists.txt │ │ ├── PipeServer.cpp │ │ ├── ScripterCallback.cpp │ │ └── ScripterCallback.h ├── sharing │ ├── CMakeLists.txt │ └── mod-cloud-audiocom │ │ ├── AudioComModule.cpp │ │ ├── AuthorizationHandler.cpp │ │ ├── AuthorizationHandler.h │ │ ├── CMakeLists.txt │ │ ├── CloudModuleSettings.cpp │ │ ├── CloudModuleSettings.h │ │ ├── CloudProjectFileIOExtensions.cpp │ │ ├── CloudProjectFileIOExtensions.h │ │ ├── CloudProjectMixdownUtils.cpp │ │ ├── CloudProjectMixdownUtils.h │ │ ├── CloudProjectOpenUtils.cpp │ │ ├── CloudProjectOpenUtils.h │ │ ├── LinkUrlHandler.cpp │ │ ├── menus │ │ └── AudioComMenus.cpp │ │ └── ui │ │ ├── AudioComPrefsPanel.cpp │ │ ├── CloudSyncStatusField.cpp │ │ ├── CloudSyncStatusField.h │ │ ├── ProjectCloudUIExtension.cpp │ │ ├── ProjectCloudUIExtension.h │ │ ├── ShareAudioToolbar.cpp │ │ ├── ShareAudioToolbar.h │ │ ├── UserImage.cpp │ │ ├── UserImage.h │ │ ├── UserPanel.cpp │ │ ├── UserPanel.h │ │ ├── dialogs │ │ ├── AudioComDialogBase.cpp │ │ ├── AudioComDialogBase.h │ │ ├── CloudLocationDialog.cpp │ │ ├── CloudLocationDialog.h │ │ ├── CloudProjectPropertiesDialog.cpp │ │ ├── CloudProjectPropertiesDialog.h │ │ ├── ConnectionIssuesDialog.cpp │ │ ├── ConnectionIssuesDialog.h │ │ ├── LinkAccountDialog.cpp │ │ ├── LinkAccountDialog.h │ │ ├── LinkFailedDialog.cpp │ │ ├── LinkFailedDialog.h │ │ ├── LinkSucceededDialog.cpp │ │ ├── LinkSucceededDialog.h │ │ ├── LinkWithTokenDialog.cpp │ │ ├── LinkWithTokenDialog.h │ │ ├── NotCloudProjectDialog.cpp │ │ ├── NotCloudProjectDialog.h │ │ ├── ProjectLimitDialog.cpp │ │ ├── ProjectLimitDialog.h │ │ ├── ProjectVersionConflictDialog.cpp │ │ ├── ProjectVersionConflictDialog.h │ │ ├── ProjectsListDialog.cpp │ │ ├── ProjectsListDialog.h │ │ ├── ShareAudioDialog.cpp │ │ ├── ShareAudioDialog.h │ │ ├── SyncFailedDialog.cpp │ │ ├── SyncFailedDialog.h │ │ ├── SyncInBackroundDialog.cpp │ │ ├── SyncInBackroundDialog.h │ │ ├── SyncSucceededDialog.cpp │ │ ├── SyncSucceededDialog.h │ │ ├── UnsyncedProjectDialog.cpp │ │ ├── UnsyncedProjectDialog.h │ │ ├── UploadCanceledDialog.cpp │ │ ├── UploadCanceledDialog.h │ │ ├── WaitForActionDialog.cpp │ │ └── WaitForActionDialog.h │ │ └── images │ │ ├── CloudImages.cpp │ │ └── CloudImages.hpp └── track-ui │ ├── CMakeLists.txt │ └── mod-midi-import-export │ ├── CMakeLists.txt │ ├── ExportMIDI.cpp │ └── ImportMIDI.cpp ├── nographs.dox ├── nyq-po ├── Makevars ├── POTFILES.in ├── audacity.pot └── remove-potcdate.sin ├── nyquist ├── CMakeLists.txt ├── aud-do-support.lsp ├── dspprims.lsp ├── envelopes.lsp ├── equalizer.lsp ├── evalenv.lsp ├── fileio.lsp ├── init.lsp ├── misc.lsp ├── nyinit-dbg.lsp ├── nyinit.lsp ├── nyqmisc.lsp ├── nyquist-plot.txt ├── nyquist.lsp ├── printrec.lsp ├── profile.lsp ├── rawwaves │ ├── mand1.raw │ ├── mand10.raw │ ├── mand11.raw │ ├── mand12.raw │ ├── mand2.raw │ ├── mand3.raw │ ├── mand4.raw │ ├── mand5.raw │ ├── mand6.raw │ ├── mand7.raw │ ├── mand8.raw │ ├── mand9.raw │ ├── mandpluk.raw │ ├── marmstk1.raw │ └── sinewave.raw ├── sal-parse.lsp ├── sal.lsp ├── seq.lsp ├── seqfnint.lsp ├── seqmidi.lsp ├── sliders.lsp ├── sndfnint.lsp ├── spec-plot.lsp ├── spectral-analysis.lsp ├── stk.lsp ├── system.lsp ├── test.lsp ├── upic.sal ├── velocity.lsp ├── xlinit.lsp └── xm.lsp ├── plug-ins ├── CMakeLists.txt ├── ShelfFilter.ny ├── SpectralEditMulti.ny ├── SpectralEditParametricEQ.ny ├── SpectralEditShelves.ny ├── StudioFadeOut.ny ├── adjustable-fade.ny ├── beat.ny ├── clipfix.ny ├── crossfadeclips.ny ├── crossfadetracks.ny ├── delay.ny ├── equalabel.ny ├── highpass.ny ├── label-sounds.ny ├── limiter.ny ├── lowpass.ny ├── noisegate.ny ├── notch.ny ├── nyquist-plug-in-installer.ny ├── pluck.ny ├── rhythmtrack.ny ├── rissetdrum.ny ├── rms.ny ├── sample-data-export.ny ├── sample-data-import.ny ├── spectral-delete.ny ├── tremolo.ny └── vocoder.ny ├── resources ├── EQDefaultCurves.xml └── EffectsMenuDefaults.xml ├── scripts ├── build │ ├── linux │ │ └── fix_rpath.cmake │ ├── macOS │ │ ├── DMGSetup.scpt │ │ ├── DMGSign.cmake │ │ ├── NotarizeMacos.cmake │ │ ├── SignMacos.cmake │ │ ├── build_universal.sh │ │ ├── fix_bundle.py │ │ └── hdiutil_wrapper.sh │ └── windows │ │ ├── PfxSign.cmake │ │ └── PfxSign.ps1 ├── dot-emacs ├── graph.pl ├── piped-work │ ├── README.txt │ ├── get_gui_structure.py │ ├── make_html.py │ ├── pipe_test.pl │ ├── pipe_test.py │ ├── pipeclient.py │ └── recording_test.py └── utils │ ├── __init__.py │ └── files.py ├── src ├── AboutDialog.cpp ├── AboutDialog.h ├── AboutDialogGPLv2Text.cpp ├── AboutDialogGPLv3Text.cpp ├── ActiveProject.cpp ├── ActiveProject.h ├── AdornedRulerPanel.cpp ├── AdornedRulerPanel.h ├── AnalyzedWaveClip.cpp ├── AnalyzedWaveClip.h ├── AudacityApp.cpp ├── AudacityApp.h ├── AudacityApp.mm ├── AudacityFileConfig.cpp ├── AudacityFileConfig.h ├── AudacityHeaders.cpp ├── AudacityHeaders.h ├── AudacityMirProject.cpp ├── AudacityMirProject.h ├── AudioPasteDialog.cpp ├── AudioPasteDialog.h ├── AutoRecoveryDialog.cpp ├── AutoRecoveryDialog.h ├── BatchCommandDialog.cpp ├── BatchCommandDialog.h ├── BatchCommands.cpp ├── BatchCommands.h ├── BatchProcessDialog.cpp ├── BatchProcessDialog.h ├── Benchmark.cpp ├── Benchmark.h ├── CMakeLists.txt ├── CellularPanel.cpp ├── CellularPanel.h ├── ClipMirAudioReader.cpp ├── ClipMirAudioReader.h ├── Clipboard.cpp ├── Clipboard.h ├── CommonCommandFlags.cpp ├── CommonCommandFlags.h ├── CrashReport.cpp ├── CrashReport.h ├── CrossFade.cpp ├── CrossFade.h ├── DefaultPlaybackPolicy.cpp ├── DefaultPlaybackPolicy.h ├── Dependencies.cpp ├── Dependencies.h ├── Diags.cpp ├── Diags.h ├── DropTarget.cpp ├── DropoutDetector.cpp ├── EnvelopeEditor.cpp ├── EnvelopeEditor.h ├── Experimental.cmake ├── FrameStatisticsDialog.cpp ├── FrameStatisticsDialog.h ├── FreqWindow.cpp ├── FreqWindow.h ├── HelpUtilities.cpp ├── HelpUtilities.h ├── HistoryWindow.cpp ├── HistoryWindow.h ├── HitTestResult.h ├── IncompatiblePluginsDialog.cpp ├── IncompatiblePluginsDialog.h ├── JournalEvents.cpp ├── JournalEvents.h ├── JournalWindowPaths.cpp ├── JournalWindowPaths.h ├── KeyboardCapture.cpp ├── KeyboardCapture.h ├── LabelDialog.cpp ├── LabelDialog.h ├── LabelTrack.cpp ├── LabelTrack.h ├── LabelTrackEditing.cpp ├── LangChoice.cpp ├── LangChoice.h ├── Legacy.cpp ├── Legacy.h ├── ListNavigationEnabled.cpp ├── ListNavigationEnabled.h ├── ListNavigationPanel.cpp ├── ListNavigationPanel.h ├── MenuCreator.cpp ├── MenuCreator.h ├── MixerBoard.cpp ├── MixerBoard.h ├── MouseWheelHandler.cpp ├── MovableControl.cpp ├── MovableControl.h ├── NoteTrackEditing.cpp ├── PitchName.cpp ├── PitchName.h ├── PluginDataModel.cpp ├── PluginDataModel.h ├── PluginDataViewCtrl.cpp ├── PluginDataViewCtrl.h ├── PluginRegistrationDialog.cpp ├── PluginRegistrationDialog.h ├── PluginStartupRegistration.cpp ├── PluginStartupRegistration.h ├── Profiler.cpp ├── Profiler.h ├── ProjectAudioManager.cpp ├── ProjectAudioManager.h ├── ProjectFSCK.cpp ├── ProjectFSCK.h ├── ProjectFileManager.cpp ├── ProjectFileManager.h ├── ProjectManager.cpp ├── ProjectManager.h ├── ProjectSettings.cpp ├── ProjectSettings.h ├── ProjectTempoListener.cpp ├── ProjectTimeRuler.cpp ├── ProjectTimeRuler.h ├── ProjectWindow.cpp ├── ProjectWindow.h ├── ProjectWindowBase.cpp ├── ProjectWindowBase.h ├── ProjectWindows.cpp ├── ProjectWindows.h ├── RealFFTf48x.cpp ├── RealFFTf48x.h ├── RealtimeEffectPanel.cpp ├── RealtimeEffectPanel.h ├── RefreshCode.h ├── ScrubState.cpp ├── ScrubState.h ├── SelectUtilities.cpp ├── SelectUtilities.h ├── ShuttleGetDefinition.cpp ├── ShuttleGetDefinition.h ├── SoundActivatedRecord.cpp ├── SoundActivatedRecord.h ├── SpectralDataDialog.cpp ├── SpectralDataManager.cpp ├── SpectralDataManager.h ├── SpectrumAnalyst.cpp ├── SpectrumAnalyst.h ├── SpectrumTransformer.cpp ├── SpectrumTransformer.h ├── SplashDialog.cpp ├── SplashDialog.h ├── SseMathFuncs.cpp ├── SseMathFuncs.h ├── TagsEditor.cpp ├── TagsEditor.h ├── ThemedWrappers.h ├── TimeDialog.cpp ├── TimeDialog.h ├── TimeDisplayMode.cpp ├── TimeDisplayMode.h ├── TimeTrackEditing.cpp ├── TimerRecordDialog.cpp ├── TimerRecordDialog.h ├── TimerRecordExportDialog.cpp ├── TimerRecordExportDialog.h ├── TrackArt.cpp ├── TrackArt.h ├── TrackArtist.cpp ├── TrackArtist.h ├── TrackInfo.cpp ├── TrackInfo.h ├── TrackPanel.cpp ├── TrackPanel.h ├── TrackPanelAx.cpp ├── TrackPanelAx.h ├── TrackPanelCell.cpp ├── TrackPanelCell.h ├── TrackPanelConstants.h ├── TrackPanelDrawable.cpp ├── TrackPanelDrawable.h ├── TrackPanelDrawingContext.h ├── TrackPanelMouseEvent.h ├── TrackPanelResizeHandle.cpp ├── TrackPanelResizeHandle.h ├── TrackPanelResizerCell.cpp ├── TrackPanelResizerCell.h ├── TrackUtilities.cpp ├── TrackUtilities.h ├── TransportUtilities.cpp ├── TransportUtilities.h ├── UIHandle.cpp ├── UIHandle.h ├── VoiceKey.cpp ├── VoiceKey.h ├── WaveTrackLocation.cpp ├── WaveTrackLocation.h ├── audacity.desktop.in ├── audacity.xml ├── audacity_config.h.in ├── commands │ ├── AppCommandEvent.cpp │ ├── AppCommandEvent.h │ ├── AudacityCommand.cpp │ ├── AudacityCommand.h │ ├── BatchEvalCommand.cpp │ ├── BatchEvalCommand.h │ ├── Command.cpp │ ├── Command.h │ ├── CommandBuilder.cpp │ ├── CommandBuilder.h │ ├── CommandDirectory.cpp │ ├── CommandDirectory.h │ ├── CommandDispatch.cpp │ ├── CommandDispatch.h │ ├── CommandHandler.cpp │ ├── CommandHandler.h │ ├── CommandManagerWindowClasses.cpp │ ├── CommandManagerWindowClasses.h │ ├── CommandMisc.h │ ├── CommandSignature.cpp │ ├── CommandSignature.h │ ├── CommandType.cpp │ ├── CommandType.h │ ├── CompareAudioCommand.cpp │ ├── CompareAudioCommand.h │ ├── Demo.cpp │ ├── Demo.h │ ├── DragCommand.cpp │ ├── DragCommand.h │ ├── GetInfoCommand.cpp │ ├── GetInfoCommand.h │ ├── GetTrackInfoCommand.cpp │ ├── GetTrackInfoCommand.h │ ├── HelpCommand.cpp │ ├── HelpCommand.h │ ├── ImportExportCommands.cpp │ ├── ImportExportCommands.h │ ├── LoadCommands.cpp │ ├── LoadCommands.h │ ├── MessageCommand.cpp │ ├── MessageCommand.h │ ├── OpenSaveCommands.cpp │ ├── OpenSaveCommands.h │ ├── PreferenceCommands.cpp │ ├── PreferenceCommands.h │ ├── ResponseQueue.cpp │ ├── ResponseQueue.h │ ├── ScriptCommandRelay.cpp │ ├── ScriptCommandRelay.h │ ├── SelectCommand.cpp │ ├── SelectCommand.h │ ├── SetClipCommand.cpp │ ├── SetClipCommand.h │ ├── SetEnvelopeCommand.cpp │ ├── SetEnvelopeCommand.h │ ├── SetLabelCommand.cpp │ ├── SetLabelCommand.h │ ├── SetProjectCommand.cpp │ ├── SetProjectCommand.h │ ├── SetTrackInfoCommand.cpp │ ├── SetTrackInfoCommand.h │ ├── Validators.h │ ├── wxCommandTargets.cpp │ └── wxCommandTargets.h ├── effects │ ├── Amplify.cpp │ ├── Amplify.h │ ├── AnalysisTracks.cpp │ ├── AnalysisTracks.h │ ├── AutoDuck.cpp │ ├── AutoDuck.h │ ├── BasicEffectUIServices.cpp │ ├── BasicEffectUIServices.h │ ├── BassTreble.cpp │ ├── BassTreble.h │ ├── Biquad.cpp │ ├── Biquad.h │ ├── ChangePitch.cpp │ ├── ChangePitch.h │ ├── ChangeSpeed.cpp │ ├── ChangeSpeed.h │ ├── ChangeTempo.cpp │ ├── ChangeTempo.h │ ├── ClickRemoval.cpp │ ├── ClickRemoval.h │ ├── Compressor.cpp │ ├── Compressor.h │ ├── Contrast.cpp │ ├── Contrast.h │ ├── Distortion.cpp │ ├── Distortion.h │ ├── DtmfGen.cpp │ ├── DtmfGen.h │ ├── EBUR128.cpp │ ├── EBUR128.h │ ├── Echo.cpp │ ├── Echo.h │ ├── EffectEditor.cpp │ ├── EffectEditor.h │ ├── EffectManager.cpp │ ├── EffectManager.h │ ├── EffectPreview.cpp │ ├── EffectPreview.h │ ├── EffectUI.cpp │ ├── EffectUI.h │ ├── EffectUI.mm │ ├── EffectUIServices.cpp │ ├── EffectUIServices.h │ ├── Equalization.cpp │ ├── Equalization.h │ ├── Equalization48x.cpp │ ├── Equalization48x.h │ ├── EqualizationBandSliders.cpp │ ├── EqualizationBandSliders.h │ ├── EqualizationCurves.cpp │ ├── EqualizationCurves.h │ ├── EqualizationCurvesDialog.cpp │ ├── EqualizationCurvesDialog.h │ ├── EqualizationCurvesList.cpp │ ├── EqualizationCurvesList.h │ ├── EqualizationFilter.cpp │ ├── EqualizationFilter.h │ ├── EqualizationPanel.cpp │ ├── EqualizationPanel.h │ ├── EqualizationParameters.cpp │ ├── EqualizationParameters.h │ ├── EqualizationUI.cpp │ ├── EqualizationUI.h │ ├── Fade.cpp │ ├── Fade.h │ ├── FindClipping.cpp │ ├── FindClipping.h │ ├── Generator.cpp │ ├── Generator.h │ ├── How to make an effect stateless.txt │ ├── Invert.cpp │ ├── Invert.h │ ├── Leveller.cpp │ ├── Leveller.h │ ├── Loudness.cpp │ ├── Loudness.h │ ├── Noise.cpp │ ├── Noise.h │ ├── NoiseReduction.cpp │ ├── NoiseReduction.h │ ├── Normalize.cpp │ ├── Normalize.h │ ├── Paulstretch.cpp │ ├── Paulstretch.h │ ├── Phaser.cpp │ ├── Phaser.h │ ├── RealtimeEffectStateUI.cpp │ ├── RealtimeEffectStateUI.h │ ├── Repair.cpp │ ├── Repair.h │ ├── Repeat.cpp │ ├── Repeat.h │ ├── Reverb.cpp │ ├── Reverb.h │ ├── Reverb_libSoX.h │ ├── Reverse.cpp │ ├── Reverse.h │ ├── SBSMSEffect.cpp │ ├── SBSMSEffect.h │ ├── ScienFilter.cpp │ ├── ScienFilter.h │ ├── ScoreAlignDialog.cpp │ ├── ScoreAlignDialog.h │ ├── Silence.cpp │ ├── Silence.h │ ├── SoundTouchEffect.cpp │ ├── SoundTouchEffect.h │ ├── StatefulEffect.cpp │ ├── StatefulEffect.h │ ├── StatefulEffectUIServices.cpp │ ├── StatefulEffectUIServices.h │ ├── StatefulPerTrackEffect.cpp │ ├── StatefulPerTrackEffect.h │ ├── StatelessPerTrackEffect.cpp │ ├── StatelessPerTrackEffect.h │ ├── StereoToMono.cpp │ ├── StereoToMono.h │ ├── TimeScale.cpp │ ├── TimeScale.h │ ├── ToneGen.cpp │ ├── ToneGen.h │ ├── TruncSilence.cpp │ ├── TruncSilence.h │ ├── TwoPassSimpleMono.cpp │ ├── TwoPassSimpleMono.h │ ├── VST │ │ ├── VSTControl.h │ │ ├── VSTControlGTK.cpp │ │ ├── VSTControlGTK.h │ │ ├── VSTControlMSW.cpp │ │ ├── VSTControlMSW.h │ │ ├── VSTControlOSX.h │ │ ├── VSTControlOSX.mm │ │ ├── VSTEditor.cpp │ │ ├── VSTEditor.h │ │ ├── VSTEffect.cpp │ │ ├── VSTEffect.h │ │ ├── VSTEffectOptionsDialog.cpp │ │ └── VSTEffectOptionsDialog.h │ ├── VST3 │ │ ├── VST3Editor.cpp │ │ ├── VST3Editor.h │ │ ├── VST3Effect.cpp │ │ ├── VST3Effect.h │ │ ├── VST3OptionsDialog.cpp │ │ ├── VST3OptionsDialog.h │ │ ├── VST3ParametersWindow.cpp │ │ ├── VST3ParametersWindow.h │ │ └── internal │ │ │ ├── PlugFrame.cpp │ │ │ ├── PlugFrame.h │ │ │ └── x11 │ │ │ ├── PlugFrame.cpp │ │ │ ├── PlugFrame.h │ │ │ ├── RunLoop.cpp │ │ │ ├── RunLoop.h │ │ │ ├── SocketWindow.cpp │ │ │ └── SocketWindow.h │ ├── Wahwah.cpp │ ├── Wahwah.h │ ├── audiounits │ │ ├── AUControl.h │ │ ├── AUControl.mm │ │ ├── AudioUnitEditor.cpp │ │ ├── AudioUnitEditor.h │ │ ├── AudioUnitEffect.cpp │ │ ├── AudioUnitEffect.h │ │ ├── AudioUnitEffectOptionsDialog.cpp │ │ └── AudioUnitEffectOptionsDialog.h │ ├── ladspa │ │ ├── LadspaEditor.cpp │ │ ├── LadspaEditor.h │ │ ├── LadspaEffect.cpp │ │ ├── LadspaEffect.h │ │ ├── LadspaEffectOptionsDialog.cpp │ │ └── LadspaEffectOptionsDialog.h │ ├── lv2 │ │ ├── LV2Editor.cpp │ │ ├── LV2Editor.h │ │ ├── LV2Effect.cpp │ │ ├── LV2Effect.h │ │ ├── LV2EffectMeter.cpp │ │ ├── LV2EffectMeter.h │ │ ├── LV2PreferencesDialog.cpp │ │ ├── LV2PreferencesDialog.h │ │ ├── LV2UIFeaturesList.cpp │ │ ├── LV2UIFeaturesList.h │ │ └── NativeWindow.h │ ├── nyquist │ │ ├── LoadNyquist.cpp │ │ ├── LoadNyquist.h │ │ ├── Nyquist.cpp │ │ └── Nyquist.h │ └── vamp │ │ ├── LoadVamp.cpp │ │ ├── LoadVamp.h │ │ ├── VampEffect.cpp │ │ └── VampEffect.h ├── export │ ├── ExportAudioDialog.cpp │ ├── ExportAudioDialog.h │ ├── ExportFilePanel.cpp │ ├── ExportFilePanel.h │ ├── ExportMixerDialog.cpp │ ├── ExportMixerDialog.h │ ├── ExportMixerPanel.cpp │ ├── ExportMixerPanel.h │ ├── ExportOptionsHandler.cpp │ └── ExportOptionsHandler.h ├── import │ ├── FormatClassifier.cpp │ ├── FormatClassifier.h │ ├── ImportRaw.cpp │ ├── ImportRaw.h │ ├── ImportStreamDialog.cpp │ ├── ImportStreamDialog.h │ ├── MultiFormatReader.cpp │ ├── MultiFormatReader.h │ ├── RawAudioGuess.cpp │ ├── RawAudioGuess.h │ ├── SpecPowerMeter.cpp │ └── SpecPowerMeter.h ├── menus │ ├── ClipMenus.cpp │ ├── EditMenus.cpp │ ├── ExtraMenus.cpp │ ├── FileMenus.cpp │ ├── HelpMenus.cpp │ ├── LabelMenus.cpp │ ├── MenuHelper.cpp │ ├── MenuHelper.h │ ├── NavigationMenus.cpp │ ├── PluginMenus.cpp │ ├── SelectMenus.cpp │ ├── TimelineMenus.cpp │ ├── ToolbarMenus.cpp │ ├── TrackMenus.cpp │ ├── TransportMenus.cpp │ └── ViewMenus.cpp ├── prefs │ ├── ApplicationPrefs.cpp │ ├── ApplicationPrefs.h │ ├── BatchPrefs.cpp │ ├── BatchPrefs.h │ ├── DevicePrefs.cpp │ ├── DevicePrefs.h │ ├── DirectoriesPrefs.cpp │ ├── DirectoriesPrefs.h │ ├── EffectsPrefs.cpp │ ├── EffectsPrefs.h │ ├── ExtImportPrefs.cpp │ ├── ExtImportPrefs.h │ ├── GUIPrefs.cpp │ ├── GUIPrefs.h │ ├── GUISettings.cpp │ ├── GUISettings.h │ ├── ImportExportPrefs.cpp │ ├── ImportExportPrefs.h │ ├── KeyConfigPrefs.cpp │ ├── KeyConfigPrefs.h │ ├── MidiIOPrefs.cpp │ ├── MidiIOPrefs.h │ ├── ModulePrefs.cpp │ ├── ModulePrefs.h │ ├── PlaybackPrefs.cpp │ ├── PlaybackPrefs.h │ ├── PrefsDialog.cpp │ ├── PrefsDialog.h │ ├── QualityPrefs.cpp │ ├── QualityPrefs.h │ ├── RecordingPrefs.cpp │ ├── RecordingPrefs.h │ ├── SpectrogramSettings.cpp │ ├── SpectrogramSettings.h │ ├── SpectrumPrefs.cpp │ ├── SpectrumPrefs.h │ ├── ThemePrefs.cpp │ ├── ThemePrefs.h │ ├── TracksBehaviorsPrefs.cpp │ ├── TracksBehaviorsPrefs.h │ ├── TracksPrefs.cpp │ ├── TracksPrefs.h │ ├── WarningsPrefs.cpp │ ├── WarningsPrefs.h │ ├── WaveformPrefs.cpp │ ├── WaveformPrefs.h │ ├── WaveformSettings.cpp │ └── WaveformSettings.h ├── toolbars │ ├── AudioSetupToolBar.cpp │ ├── AudioSetupToolBar.h │ ├── ControlToolBar.cpp │ ├── ControlToolBar.h │ ├── CutCopyPasteToolBar.cpp │ ├── CutCopyPasteToolBar.h │ ├── DeviceToolBar.cpp │ ├── DeviceToolBar.h │ ├── EditToolBar.cpp │ ├── EditToolBar.h │ ├── MeterToolBar.cpp │ ├── MeterToolBar.h │ ├── SelectionBar.cpp │ ├── SelectionBar.h │ ├── SelectionBarListener.h │ ├── SnappingToolBar.cpp │ ├── SnappingToolBar.h │ ├── SpectralSelectionBar.cpp │ ├── SpectralSelectionBar.h │ ├── SpectralSelectionBarListener.h │ ├── TimeSignatureToolBar.cpp │ ├── TimeSignatureToolBar.h │ ├── TimeToolBar.cpp │ ├── TimeToolBar.h │ ├── ToolBar.cpp │ ├── ToolBar.h │ ├── ToolBarButtons.cpp │ ├── ToolBarButtons.h │ ├── ToolDock.cpp │ ├── ToolDock.h │ ├── ToolManager.cpp │ ├── ToolManager.h │ ├── ToolsToolBar.cpp │ ├── ToolsToolBar.h │ ├── TranscriptionToolBar.cpp │ └── TranscriptionToolBar.h ├── tracks │ ├── labeltrack │ │ └── ui │ │ │ ├── LabelDefaultClickHandle.cpp │ │ │ ├── LabelDefaultClickHandle.h │ │ │ ├── LabelGlyphHandle.cpp │ │ │ ├── LabelGlyphHandle.h │ │ │ ├── LabelTextHandle.cpp │ │ │ ├── LabelTextHandle.h │ │ │ ├── LabelTrackControls.cpp │ │ │ ├── LabelTrackControls.h │ │ │ ├── LabelTrackShifter.cpp │ │ │ ├── LabelTrackVRulerControls.cpp │ │ │ ├── LabelTrackVRulerControls.h │ │ │ ├── LabelTrackView.cpp │ │ │ └── LabelTrackView.h │ ├── playabletrack │ │ ├── notetrack │ │ │ └── ui │ │ │ │ ├── NoteTrackAffordanceControls.cpp │ │ │ │ ├── NoteTrackAffordanceControls.h │ │ │ │ ├── NoteTrackButtonHandle.cpp │ │ │ │ ├── NoteTrackButtonHandle.h │ │ │ │ ├── NoteTrackControls.cpp │ │ │ │ ├── NoteTrackControls.h │ │ │ │ ├── NoteTrackDisplayData.cpp │ │ │ │ ├── NoteTrackDisplayData.h │ │ │ │ ├── NoteTrackMenuItems.cpp │ │ │ │ ├── NoteTrackShifter.cpp │ │ │ │ ├── NoteTrackSliderHandles.cpp │ │ │ │ ├── NoteTrackSliderHandles.h │ │ │ │ ├── NoteTrackVRulerControls.cpp │ │ │ │ ├── NoteTrackVRulerControls.h │ │ │ │ ├── NoteTrackVZoomHandle.cpp │ │ │ │ ├── NoteTrackVZoomHandle.h │ │ │ │ ├── NoteTrackView.cpp │ │ │ │ ├── NoteTrackView.h │ │ │ │ ├── StretchHandle.cpp │ │ │ │ └── StretchHandle.h │ │ ├── ui │ │ │ ├── PlayableTrackButtonHandles.cpp │ │ │ ├── PlayableTrackButtonHandles.h │ │ │ ├── PlayableTrackControls.cpp │ │ │ └── PlayableTrackControls.h │ │ └── wavetrack │ │ │ └── ui │ │ │ ├── ClipButtonId.h │ │ │ ├── ClipOverflowButtonHandle.cpp │ │ │ ├── ClipOverflowButtonHandle.h │ │ │ ├── ClipParameters.cpp │ │ │ ├── ClipParameters.h │ │ │ ├── ClipPitchAndSpeedButtonHandle.cpp │ │ │ ├── ClipPitchAndSpeedButtonHandle.h │ │ │ ├── CutlineHandle.cpp │ │ │ ├── CutlineHandle.h │ │ │ ├── HighlitClipButtonHandle.cpp │ │ │ ├── HighlitClipButtonHandle.h │ │ │ ├── LowlitClipButton.cpp │ │ │ ├── LowlitClipButton.h │ │ │ ├── PitchAndSpeedDialog.cpp │ │ │ ├── PitchAndSpeedDialog.h │ │ │ ├── SampleHandle.cpp │ │ │ ├── SampleHandle.h │ │ │ ├── ShuttleGuiScopedSizer.h │ │ │ ├── SpectrumCache.cpp │ │ │ ├── SpectrumCache.h │ │ │ ├── SpectrumVRulerControls.cpp │ │ │ ├── SpectrumVRulerControls.h │ │ │ ├── SpectrumVZoomHandle.cpp │ │ │ ├── SpectrumVZoomHandle.h │ │ │ ├── SpectrumView.cpp │ │ │ ├── SpectrumView.h │ │ │ ├── WaveChannelVRulerControls.cpp │ │ │ ├── WaveChannelVRulerControls.h │ │ │ ├── WaveChannelVZoomHandle.cpp │ │ │ ├── WaveChannelVZoomHandle.h │ │ │ ├── WaveChannelView.cpp │ │ │ ├── WaveChannelView.h │ │ │ ├── WaveChannelViewConstants.cpp │ │ │ ├── WaveChannelViewConstants.h │ │ │ ├── WaveClipAdjustBorderHandle.cpp │ │ │ ├── WaveClipAdjustBorderHandle.h │ │ │ ├── WaveClipUIUtilities.cpp │ │ │ ├── WaveClipUIUtilities.h │ │ │ ├── WaveTrackAffordanceControls.cpp │ │ │ ├── WaveTrackAffordanceControls.h │ │ │ ├── WaveTrackAffordanceHandle.cpp │ │ │ ├── WaveTrackAffordanceHandle.h │ │ │ ├── WaveTrackControls.cpp │ │ │ ├── WaveTrackControls.h │ │ │ ├── WaveTrackMenuItems.cpp │ │ │ ├── WaveTrackShifter.cpp │ │ │ ├── WaveTrackSliderHandles.cpp │ │ │ ├── WaveTrackSliderHandles.h │ │ │ ├── WaveformAppearance.cpp │ │ │ ├── WaveformAppearance.h │ │ │ ├── WaveformVRulerControls.cpp │ │ │ ├── WaveformVRulerControls.h │ │ │ ├── WaveformVZoomHandle.cpp │ │ │ ├── WaveformVZoomHandle.h │ │ │ ├── WaveformView.cpp │ │ │ └── WaveformView.h │ ├── timetrack │ │ └── ui │ │ │ ├── TimeTrackControls.cpp │ │ │ ├── TimeTrackControls.h │ │ │ ├── TimeTrackMenuItems.cpp │ │ │ ├── TimeTrackVRulerControls.cpp │ │ │ ├── TimeTrackVRulerControls.h │ │ │ ├── TimeTrackVZoomHandle.cpp │ │ │ ├── TimeTrackVZoomHandle.h │ │ │ ├── TimeTrackView.cpp │ │ │ └── TimeTrackView.h │ └── ui │ │ ├── AffordanceHandle.cpp │ │ ├── AffordanceHandle.h │ │ ├── BackgroundCell.cpp │ │ ├── BackgroundCell.h │ │ ├── BrushHandle.cpp │ │ ├── BrushHandle.h │ │ ├── ButtonHandle.cpp │ │ ├── ButtonHandle.h │ │ ├── ChannelVRulerControls.cpp │ │ ├── ChannelVRulerControls.h │ │ ├── ChannelView.cpp │ │ ├── ChannelView.h │ │ ├── CommonChannelView.cpp │ │ ├── CommonChannelView.h │ │ ├── CommonTrackControls.cpp │ │ ├── CommonTrackControls.h │ │ ├── CommonTrackInfo.cpp │ │ ├── CommonTrackInfo.h │ │ ├── CommonTrackPanelCell.cpp │ │ ├── CommonTrackPanelCell.h │ │ ├── EditCursorOverlay.cpp │ │ ├── EditCursorOverlay.h │ │ ├── EnvelopeHandle.cpp │ │ ├── EnvelopeHandle.h │ │ ├── PlayIndicatorOverlay.cpp │ │ ├── PlayIndicatorOverlay.h │ │ ├── ScrubUI.cpp │ │ ├── ScrubUI.h │ │ ├── Scrubbing.cpp │ │ ├── Scrubbing.h │ │ ├── SelectHandle.cpp │ │ ├── SelectHandle.h │ │ ├── SliderHandle.cpp │ │ ├── SliderHandle.h │ │ ├── TextEditHelper.cpp │ │ ├── TextEditHelper.h │ │ ├── TimeShiftHandle.cpp │ │ ├── TimeShiftHandle.h │ │ ├── TrackButtonHandles.cpp │ │ ├── TrackButtonHandles.h │ │ ├── TrackControls.cpp │ │ ├── TrackControls.h │ │ ├── TrackSelectHandle.cpp │ │ ├── TrackSelectHandle.h │ │ ├── ZoomHandle.cpp │ │ └── ZoomHandle.h ├── update │ ├── NoUpdatesAvailableDialog.cpp │ ├── NoUpdatesAvailableDialog.h │ ├── UpdateDataParser.cpp │ ├── UpdateDataParser.h │ ├── UpdateManager.cpp │ ├── UpdateManager.h │ ├── UpdateNoticeDialog.cpp │ ├── UpdateNoticeDialog.h │ ├── UpdatePopupDialog.cpp │ ├── UpdatePopupDialog.h │ ├── VersionId.cpp │ ├── VersionId.h │ └── VersionPatch.h └── widgets │ ├── AButton.cpp │ ├── AButton.h │ ├── ASlider.cpp │ ├── ASlider.h │ ├── AttachableScrollBar.cpp │ ├── AttachableScrollBar.h │ ├── BackedPanel.cpp │ ├── BackedPanel.h │ ├── BasicMenu.cpp │ ├── BasicMenu.h │ ├── BeatsFormat.cpp │ ├── BeatsFormat.h │ ├── CustomUpdater.cpp │ ├── CustomUpdater.h │ ├── CustomUpdaterPosition.cpp │ ├── CustomUpdaterPosition.h │ ├── CustomUpdaterValue.cpp │ ├── CustomUpdaterValue.h │ ├── ExpandingToolBar.cpp │ ├── ExpandingToolBar.h │ ├── FileHistory.cpp │ ├── FileHistory.h │ ├── GeneratedUpdater.cpp │ ├── GeneratedUpdater.h │ ├── Grabber.cpp │ ├── Grabber.h │ ├── Grid.cpp │ ├── Grid.h │ ├── ImageRoll.cpp │ ├── ImageRoll.h │ ├── IntFormat.cpp │ ├── IntFormat.h │ ├── KeyView.cpp │ ├── KeyView.h │ ├── LinearDBFormat.cpp │ ├── LinearDBFormat.h │ ├── LinearUpdater.cpp │ ├── LinearUpdater.h │ ├── LogarithmicUpdater.cpp │ ├── LogarithmicUpdater.h │ ├── MeterPanel.cpp │ ├── MeterPanel.h │ ├── MeterPanelBase.cpp │ ├── MeterPanelBase.h │ ├── MissingPluginsErrorDialog.cpp │ ├── MissingPluginsErrorDialog.h │ ├── NumericTextCtrl.cpp │ ├── NumericTextCtrl.h │ ├── Overlay.cpp │ ├── Overlay.h │ ├── OverlayPanel.cpp │ ├── OverlayPanel.h │ ├── PopupMenuTable.cpp │ ├── PopupMenuTable.h │ ├── RealFormat.cpp │ ├── RealFormat.h │ ├── Ruler.cpp │ ├── Ruler.h │ ├── RulerFormat.cpp │ ├── RulerFormat.h │ ├── RulerPanel.cpp │ ├── RulerPanel.h │ ├── RulerUpdater.cpp │ ├── RulerUpdater.h │ ├── TimeFormat.cpp │ ├── TimeFormat.h │ ├── UnwritableLocationErrorDialog.cpp │ ├── UnwritableLocationErrorDialog.h │ ├── Warning.cpp │ ├── Warning.h │ ├── auStaticText.cpp │ ├── auStaticText.h │ ├── numformatter.cpp │ ├── numformatter.h │ ├── valnum.cpp │ └── valnum.h ├── tests ├── AudioFileIO.cpp ├── AudioFileIO.h ├── AudioFileInfo.h ├── Catch2Main.cpp ├── MockedAudio.cpp ├── MockedAudio.h ├── MockedPrefs.cpp ├── MockedPrefs.h ├── Mp3FileReader.cpp ├── Mp3FileReader.h ├── ProjectCheckTests │ ├── missing_aliased_and_auf_files.aup │ ├── missing_blockfile.aup │ ├── orphaned_blockfiles.aup │ ├── orphaned_blockfiles_data │ │ └── e00 │ │ │ └── d00 │ │ │ ├── e000055a.au │ │ │ ├── orphan1.au │ │ │ └── orphan2.au │ └── readme.txt ├── SequenceTest.cpp ├── SimpleBlockFileTest.cpp ├── WavFileIO.cpp ├── WavFileIO.h ├── journals │ ├── CMakeLists.txt │ ├── journal_sanity.txt │ └── test_runner.ps1 ├── octave │ ├── README.md │ ├── loudness_test.m │ └── run_test.m ├── results │ └── README.txt └── samples │ ├── AudacitySpectral.wav │ ├── FifeAndDrums.wav │ └── FifeAndDrumsStereo.wav └── win ├── Audacity.exe.manifest ├── Inno_Setup_Wizard ├── BuildInnoSetupInstaller.cmake ├── FirstTimeModel.ini ├── audacity.iss.in ├── audacity_InnoWizardImage.bmp ├── audacity_InnoWizardSmallImage.bmp └── audacity_InnoWizard_InfoBefore.rtf.in ├── audacity.ico ├── audacity.rc ├── darkaudacity.ico └── resetPrefsRenamed.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/README.md -------------------------------------------------------------------------------- /au4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/.gitignore -------------------------------------------------------------------------------- /au4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/CMakeLists.txt -------------------------------------------------------------------------------- /au4/SetupConfigure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/SetupConfigure.cmake -------------------------------------------------------------------------------- /au4/buildscripts/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *_deps/* 3 | -------------------------------------------------------------------------------- /au4/buildscripts/ci/checkcodestyle/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *_deps/* 3 | -------------------------------------------------------------------------------- /au4/ci_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/ci_build.bat -------------------------------------------------------------------------------- /au4/ci_build.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/ci_build.cmake -------------------------------------------------------------------------------- /au4/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/CMakeLists.txt -------------------------------------------------------------------------------- /au4/src/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/CMakeLists.txt -------------------------------------------------------------------------------- /au4/src/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/app.cpp -------------------------------------------------------------------------------- /au4/src/app/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/app.h -------------------------------------------------------------------------------- /au4/src/app/app.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/app.qrc -------------------------------------------------------------------------------- /au4/src/app/configs/dark.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/configs/dark.cfg -------------------------------------------------------------------------------- /au4/src/app/configs/learn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/configs/learn.cfg -------------------------------------------------------------------------------- /au4/src/app/configs/light.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/configs/light.cfg -------------------------------------------------------------------------------- /au4/src/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/app/main.cpp -------------------------------------------------------------------------------- /au4/src/appshell/appshell.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/appshell/appshell.qrc -------------------------------------------------------------------------------- /au4/src/appshell/qml/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/appshell/qml/Main.qml -------------------------------------------------------------------------------- /au4/src/context/uicontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/context/uicontext.h -------------------------------------------------------------------------------- /au4/src/playback/audiotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/playback/audiotypes.h -------------------------------------------------------------------------------- /au4/src/playback/playback.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/playback/playback.qrc -------------------------------------------------------------------------------- /au4/src/processing/dom/clip.cpp: -------------------------------------------------------------------------------- 1 | #include "clip.h" 2 | 3 | using namespace au::processing; 4 | -------------------------------------------------------------------------------- /au4/src/processing/dom/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/processing/dom/clip.h -------------------------------------------------------------------------------- /au4/src/processing/dom/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/processing/dom/wave.h -------------------------------------------------------------------------------- /au4/src/project/project.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/src/project/project.qrc -------------------------------------------------------------------------------- /au4/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/au4/version.cmake -------------------------------------------------------------------------------- /audacity.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/audacity.dox -------------------------------------------------------------------------------- /audacity.dox.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/audacity.dox.in -------------------------------------------------------------------------------- /cmake-proxies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/cmake-proxies/CMakeLists.txt -------------------------------------------------------------------------------- /cmake-proxies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/cmake-proxies/README.txt -------------------------------------------------------------------------------- /conan/conan_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/conan/conan_runner.py -------------------------------------------------------------------------------- /conan/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/conan/conanfile.py -------------------------------------------------------------------------------- /conan/helpers/directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/conan/helpers/directories.py -------------------------------------------------------------------------------- /conan/helpers/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/conan/helpers/profiles.py -------------------------------------------------------------------------------- /conan/helpers/remotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/conan/helpers/remotes.py -------------------------------------------------------------------------------- /conan/helpers/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/conan/helpers/version.py -------------------------------------------------------------------------------- /conan/profile_overrides_minsizerel.txt: -------------------------------------------------------------------------------- 1 | [settings] 2 | vst3sdk:build_type=Release 3 | -------------------------------------------------------------------------------- /conan/profile_overrides_release.txt: -------------------------------------------------------------------------------- 1 | [settings] 2 | vst3sdk:build_type=Release 3 | -------------------------------------------------------------------------------- /conan/profile_overrides_relwithdebinfo.txt: -------------------------------------------------------------------------------- 1 | [settings] 2 | vst3sdk:build_type=Release 3 | -------------------------------------------------------------------------------- /crashreporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/crashreporter/CMakeLists.txt -------------------------------------------------------------------------------- /crashreporter/warning.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/crashreporter/warning.xpm -------------------------------------------------------------------------------- /dox2-src/CrossPlatform.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/CrossPlatform.dox2 -------------------------------------------------------------------------------- /dox2-src/Dependencies.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/Dependencies.dox2 -------------------------------------------------------------------------------- /dox2-src/ExceptionSafety.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/ExceptionSafety.dox2 -------------------------------------------------------------------------------- /dox2-src/InsideNyquist.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/InsideNyquist.dox2 -------------------------------------------------------------------------------- /dox2-src/MainPage.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/MainPage.dox2 -------------------------------------------------------------------------------- /dox2-src/OtherHeaders.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/OtherHeaders.dox2 -------------------------------------------------------------------------------- /dox2-src/ShuttleSystem.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/ShuttleSystem.dox2 -------------------------------------------------------------------------------- /dox2-src/Themability.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/Themability.dox2 -------------------------------------------------------------------------------- /dox2-src/WidgetMigration.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/WidgetMigration.dox2 -------------------------------------------------------------------------------- /dox2-src/WxWishlist.dox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/WxWishlist.dox2 -------------------------------------------------------------------------------- /dox2-src/examples.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/dox2-src/examples.hh -------------------------------------------------------------------------------- /help/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/help/CMakeLists.txt -------------------------------------------------------------------------------- /help/DownloadManual.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/help/DownloadManual.cmake -------------------------------------------------------------------------------- /help/audacity.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/help/audacity.1 -------------------------------------------------------------------------------- /help/audacity.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/help/audacity.appdata.xml -------------------------------------------------------------------------------- /images/Arrow.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/Arrow.xpm -------------------------------------------------------------------------------- /images/Audacity-splash.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/Audacity-splash.xpm -------------------------------------------------------------------------------- /images/AudacityLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/AudacityLogo.png -------------------------------------------------------------------------------- /images/AudacityLogo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/AudacityLogo.xpm -------------------------------------------------------------------------------- /images/AudacityLogo48x48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/AudacityLogo48x48.xpm -------------------------------------------------------------------------------- /images/AudacityLogoAlpha.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/AudacityLogoAlpha.xpm -------------------------------------------------------------------------------- /images/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/CMakeLists.txt -------------------------------------------------------------------------------- /images/Cursors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/Cursors.h -------------------------------------------------------------------------------- /images/EditButtons/degimpify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/EditButtons/degimpify -------------------------------------------------------------------------------- /images/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/Effect.h -------------------------------------------------------------------------------- /images/Empty9x16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/Empty9x16.xpm -------------------------------------------------------------------------------- /images/Help.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/Help.xpm -------------------------------------------------------------------------------- /images/MicMenu.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/MicMenu.xpm -------------------------------------------------------------------------------- /images/MusicalInstruments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/MusicalInstruments.h -------------------------------------------------------------------------------- /images/SpeakerMenu.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/SpeakerMenu.xpm -------------------------------------------------------------------------------- /images/WhatsNewBtn.jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/WhatsNewBtn.jpeg.h -------------------------------------------------------------------------------- /images/audacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/images/audacity.svg -------------------------------------------------------------------------------- /include/audacity/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/include/audacity/Types.h -------------------------------------------------------------------------------- /lib-src/audacity-patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/audacity-patches.txt -------------------------------------------------------------------------------- /lib-src/libnyquist/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libnyquist/README.txt -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/sys/mac/sndsystem.h: -------------------------------------------------------------------------------- 1 | #include "sndmac.h" 2 | 3 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/sys/mac/xlextstart.c: -------------------------------------------------------------------------------- 1 | /* nothing to do */ 2 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/sys/unix/pl: -------------------------------------------------------------------------------- 1 | graph < points.dat | plot -Ttek 2 | 3 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/sys/win/msvc/sndsystem.h: -------------------------------------------------------------------------------- 1 | #include "sndwin32.h" 2 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/sys/win/wingui/button.h: -------------------------------------------------------------------------------- 1 | // button.h -- simple slider input 2 | 3 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/sys/win/wingui/xlextstart.c: -------------------------------------------------------------------------------- 1 | /* nothing to do */ 2 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyquist/tran/translate-stk.lsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/libnyquist/nyx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libnyquist/nyx.c -------------------------------------------------------------------------------- /lib-src/libnyquist/nyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libnyquist/nyx.h -------------------------------------------------------------------------------- /lib-src/libnyquist/xlextstart.c: -------------------------------------------------------------------------------- 1 | /* nothing to do */ 2 | -------------------------------------------------------------------------------- /lib-src/libsbsms/AUTHORS: -------------------------------------------------------------------------------- 1 | Clayton Otey (wdwonka@users.sourceforge.net) 2 | -------------------------------------------------------------------------------- /lib-src/libsbsms/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/COPYING -------------------------------------------------------------------------------- /lib-src/libsbsms/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/ChangeLog -------------------------------------------------------------------------------- /lib-src/libsbsms/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/INSTALL -------------------------------------------------------------------------------- /lib-src/libsbsms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/LICENSE -------------------------------------------------------------------------------- /lib-src/libsbsms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/Makefile.am -------------------------------------------------------------------------------- /lib-src/libsbsms/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/Makefile.in -------------------------------------------------------------------------------- /lib-src/libsbsms/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/NEWS -------------------------------------------------------------------------------- /lib-src/libsbsms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/README.md -------------------------------------------------------------------------------- /lib-src/libsbsms/TODO: -------------------------------------------------------------------------------- 1 | - implement wxsbsmsplayer -------------------------------------------------------------------------------- /lib-src/libsbsms/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/config.guess -------------------------------------------------------------------------------- /lib-src/libsbsms/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/config.sub -------------------------------------------------------------------------------- /lib-src/libsbsms/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/configure -------------------------------------------------------------------------------- /lib-src/libsbsms/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/configure.ac -------------------------------------------------------------------------------- /lib-src/libsbsms/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/install-sh -------------------------------------------------------------------------------- /lib-src/libsbsms/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/ltmain.sh -------------------------------------------------------------------------------- /lib-src/libsbsms/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/missing -------------------------------------------------------------------------------- /lib-src/libsbsms/sbsms.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/sbsms.pc.in -------------------------------------------------------------------------------- /lib-src/libsbsms/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/buffer.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/fft.cpp -------------------------------------------------------------------------------- /lib-src/libsbsms/src/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/fft.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/grain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/grain.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/real.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/sms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/sms.cpp -------------------------------------------------------------------------------- /lib-src/libsbsms/src/sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/sms.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/sse.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/track.h -------------------------------------------------------------------------------- /lib-src/libsbsms/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/src/utils.h -------------------------------------------------------------------------------- /lib-src/libsbsms/win/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsbsms/win/config.h -------------------------------------------------------------------------------- /lib-src/libscorealign/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libscorealign/main.h -------------------------------------------------------------------------------- /lib-src/libscorealign/test/cde.gro: -------------------------------------------------------------------------------- 1 | T0 -tempor:120.0 2 | c4 q 3 | d4 4 | e4 5 | -------------------------------------------------------------------------------- /lib-src/libscorealign/trace.h: -------------------------------------------------------------------------------- 1 | void trace(char *format, ...); 2 | 3 | -------------------------------------------------------------------------------- /lib-src/libsoxr/AUTHORS: -------------------------------------------------------------------------------- 1 | Rob Sykes 2 | -------------------------------------------------------------------------------- /lib-src/libsoxr/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/COPYING.LGPL -------------------------------------------------------------------------------- /lib-src/libsoxr/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/INSTALL -------------------------------------------------------------------------------- /lib-src/libsoxr/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/LICENCE -------------------------------------------------------------------------------- /lib-src/libsoxr/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/NEWS -------------------------------------------------------------------------------- /lib-src/libsoxr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/README -------------------------------------------------------------------------------- /lib-src/libsoxr/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/TODO -------------------------------------------------------------------------------- /lib-src/libsoxr/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/configure -------------------------------------------------------------------------------- /lib-src/libsoxr/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/go -------------------------------------------------------------------------------- /lib-src/libsoxr/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/go.bat -------------------------------------------------------------------------------- /lib-src/libsoxr/inst-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/inst-check -------------------------------------------------------------------------------- /lib-src/libsoxr/msvc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/msvc/README -------------------------------------------------------------------------------- /lib-src/libsoxr/multi-arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/multi-arch -------------------------------------------------------------------------------- /lib-src/libsoxr/src/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/aliases.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/avfft32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/avfft32.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/ccrw2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/ccrw2.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr-core.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr32.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr32s.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr64.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/cr64s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/cr64s.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/data-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/data-io.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/data-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/data-io.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/dbesi0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/dbesi0.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/dev32s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/dev32s.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/dev64s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/dev64s.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/fft4g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/fft4g.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/fft4g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/fft4g.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/fft4g32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/fft4g32.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/fft4g64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/fft4g64.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/fifo.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/filter.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/filter.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/pffft.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/pffft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/pffft.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/pffft32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/pffft32.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/rdft.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/rdft_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/rdft_t.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/rint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/rint.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/samplerate.h: -------------------------------------------------------------------------------- 1 | #include "soxr-lsr.h" 2 | -------------------------------------------------------------------------------- /lib-src/libsoxr/src/soxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/soxr.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/soxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/soxr.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/util32s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/util32s.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/util32s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/util32s.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/util64s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/util64s.c -------------------------------------------------------------------------------- /lib-src/libsoxr/src/util64s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/util64s.h -------------------------------------------------------------------------------- /lib-src/libsoxr/src/vr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/src/vr32.c -------------------------------------------------------------------------------- /lib-src/libsoxr/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/tests/README -------------------------------------------------------------------------------- /lib-src/libsoxr/tests/eg-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/tests/eg-test -------------------------------------------------------------------------------- /lib-src/libsoxr/tests/io-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/tests/io-test -------------------------------------------------------------------------------- /lib-src/libsoxr/tests/q-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/tests/q-test -------------------------------------------------------------------------------- /lib-src/libsoxr/tests/scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libsoxr/tests/scripts -------------------------------------------------------------------------------- /lib-src/libvamp/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/CHANGELOG -------------------------------------------------------------------------------- /lib-src/libvamp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/COPYING -------------------------------------------------------------------------------- /lib-src/libvamp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/INSTALL -------------------------------------------------------------------------------- /lib-src/libvamp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/Makefile.in -------------------------------------------------------------------------------- /lib-src/libvamp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/README -------------------------------------------------------------------------------- /lib-src/libvamp/README.compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/README.compat -------------------------------------------------------------------------------- /lib-src/libvamp/build/vamp-plugin.list: -------------------------------------------------------------------------------- 1 | _vampGetPluginDescriptor 2 | -------------------------------------------------------------------------------- /lib-src/libvamp/build/vamp-plugin.map: -------------------------------------------------------------------------------- 1 | { 2 | global: vampGetPluginDescriptor; 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /lib-src/libvamp/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/configure -------------------------------------------------------------------------------- /lib-src/libvamp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/configure.ac -------------------------------------------------------------------------------- /lib-src/libvamp/host/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/host/system.h -------------------------------------------------------------------------------- /lib-src/libvamp/rdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/rdf/README -------------------------------------------------------------------------------- /lib-src/libvamp/rdf/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/rdf/ToDo -------------------------------------------------------------------------------- /lib-src/libvamp/rdf/vamp.n3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/rdf/vamp.n3 -------------------------------------------------------------------------------- /lib-src/libvamp/rdf/vamp.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/rdf/vamp.rdf -------------------------------------------------------------------------------- /lib-src/libvamp/skeleton/vamp-plugin.list: -------------------------------------------------------------------------------- 1 | _vampGetPluginDescriptor 2 | -------------------------------------------------------------------------------- /lib-src/libvamp/skeleton/vamp-plugin.map: -------------------------------------------------------------------------------- 1 | { 2 | global: vampGetPluginDescriptor; 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /lib-src/libvamp/vamp/vamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/libvamp/vamp/vamp.h -------------------------------------------------------------------------------- /lib-src/lv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/Makefile -------------------------------------------------------------------------------- /lib-src/lv2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/configure -------------------------------------------------------------------------------- /lib-src/lv2/lilv/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/.gitmodules -------------------------------------------------------------------------------- /lib-src/lv2/lilv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/AUTHORS -------------------------------------------------------------------------------- /lib-src/lv2/lilv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/COPYING -------------------------------------------------------------------------------- /lib-src/lv2/lilv/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/INSTALL -------------------------------------------------------------------------------- /lib-src/lv2/lilv/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lilv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/README.md -------------------------------------------------------------------------------- /lib-src/lv2/lilv/doc/lv2ls.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/doc/lv2ls.1 -------------------------------------------------------------------------------- /lib-src/lv2/lilv/lilv.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/lilv.pc.in -------------------------------------------------------------------------------- /lib-src/lv2/lilv/lilv.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/lilv.ttl -------------------------------------------------------------------------------- /lib-src/lv2/lilv/lilv/lilv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/lilv/lilv.h -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/lib.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/node.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/plugin.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/port.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/query.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/state.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/ui.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/util.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/src/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/src/world.c -------------------------------------------------------------------------------- /lib-src/lv2/lilv/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/waf -------------------------------------------------------------------------------- /lib-src/lv2/lilv/waflib/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | # Thomas Nagy, 2005-2018 (ita) 4 | -------------------------------------------------------------------------------- /lib-src/lv2/lilv/waflib/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/waflib/waf -------------------------------------------------------------------------------- /lib-src/lv2/lilv/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lilv/wscript -------------------------------------------------------------------------------- /lib-src/lv2/lv2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/COPYING -------------------------------------------------------------------------------- /lib-src/lv2/lv2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/README.md -------------------------------------------------------------------------------- /lib-src/lv2/lv2/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/doc/style.css -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2.pc.in -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/atom/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/atom/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/core/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/core/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/log/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/log/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/log/log.h -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/midi/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/midi/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/time/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/time/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/ui/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/ui/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/lv2/lv2/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/lv2/ui/ui.h -------------------------------------------------------------------------------- /lib-src/lv2/lv2/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/waf -------------------------------------------------------------------------------- /lib-src/lv2/lv2/waflib/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/waflib/waf -------------------------------------------------------------------------------- /lib-src/lv2/lv2/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/lv2/wscript -------------------------------------------------------------------------------- /lib-src/lv2/serd/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/AUTHORS -------------------------------------------------------------------------------- /lib-src/lv2/serd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/COPYING -------------------------------------------------------------------------------- /lib-src/lv2/serd/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/INSTALL -------------------------------------------------------------------------------- /lib-src/lv2/serd/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/serd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/README.md -------------------------------------------------------------------------------- /lib-src/lv2/serd/serd.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/serd.ttl -------------------------------------------------------------------------------- /lib-src/lv2/serd/src/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/src/env.c -------------------------------------------------------------------------------- /lib-src/lv2/serd/src/n3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/src/n3.c -------------------------------------------------------------------------------- /lib-src/lv2/serd/src/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/src/uri.c -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NQuadsTests/nt-syntax-bad-base-01.nq: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NQuadsTests/nt-syntax-bad-prefix-01.nq: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NQuadsTests/nt-syntax-file-01.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NQuadsTests/nt-syntax-file-02.nq: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NQuadsTests/nt-syntax-file-03.nq: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NTriplesTests/nt-syntax-bad-base-01.nt: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NTriplesTests/nt-syntax-bad-prefix-01.nt: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NTriplesTests/nt-syntax-file-01.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NTriplesTests/nt-syntax-file-02.nt: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/NTriplesTests/nt-syntax-file-03.nt: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-kw-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s A :C .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-kw-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {a :p :o .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-kw-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p a .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-kw-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {true :p :o .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-kw-05.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s true :o .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-prefix-01.trig: -------------------------------------------------------------------------------- 1 | # No prefix 2 | {:s "x" .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bad-struct-12.trig: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-base-01.trig: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-base-02.trig: -------------------------------------------------------------------------------- 1 | BASE 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-base-04.trig: -------------------------------------------------------------------------------- 1 | base 2 | {

.} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bnode-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {[] :p :o .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bnode-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p [] .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bnode-06.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {_:a :p :o .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-bnode-08.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {[ :p :o ] .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-file-01.trig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-file-02.trig: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-file-03.trig: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-kw-01.trig: -------------------------------------------------------------------------------- 1 | {

true .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-kw-02.trig: -------------------------------------------------------------------------------- 1 | {

false .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-kw-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s a :C .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-lists-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p () .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-01.trig: -------------------------------------------------------------------------------- 1 | {

123 .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-02.trig: -------------------------------------------------------------------------------- 1 | {

-123 .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-03.trig: -------------------------------------------------------------------------------- 1 | {

+123 .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-04.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

123.0 . } 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-05.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

.1 . } 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-06.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

-123.0 . } 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-07.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

+123.0 . } 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-08.trig: -------------------------------------------------------------------------------- 1 | # This is an integer 2 | {

123.} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-09.trig: -------------------------------------------------------------------------------- 1 | {

123.0e1 .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-10.trig: -------------------------------------------------------------------------------- 1 | {

-123e-1 .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-number-11.trig: -------------------------------------------------------------------------------- 1 | {

123.E+1 .} 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-prefix-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-prefix-02.trig: -------------------------------------------------------------------------------- 1 | PreFIX : 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-prefix-03.trig: -------------------------------------------------------------------------------- 1 | PREFIX : 2 | {:s :p :123 .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TriGTests/trig-syntax-prefix-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :%20 .} 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-base-01.ttl: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-base-02.ttl: -------------------------------------------------------------------------------- 1 | BASE 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-file-01.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-file-02.ttl: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-file-03.ttl: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-kw-01.ttl: -------------------------------------------------------------------------------- 1 |

true . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-kw-02.ttl: -------------------------------------------------------------------------------- 1 |

false . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-01.ttl: -------------------------------------------------------------------------------- 1 |

123 . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-02.ttl: -------------------------------------------------------------------------------- 1 |

-123 . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-03.ttl: -------------------------------------------------------------------------------- 1 |

+123 . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-04.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

123.0 . 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-05.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

.1 . 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-06.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

-123.0 . 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-07.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

+123.0 . 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-08.ttl: -------------------------------------------------------------------------------- 1 | # This is an integer 2 |

123. 3 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-09.ttl: -------------------------------------------------------------------------------- 1 |

123.0e1 . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-10.ttl: -------------------------------------------------------------------------------- 1 |

-123e-1 . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-number-11.ttl: -------------------------------------------------------------------------------- 1 |

123.E+1 . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-prefix-02.ttl: -------------------------------------------------------------------------------- 1 | PreFIX : 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-base.ttl: -------------------------------------------------------------------------------- 1 | @base "I'm quite certain this is not a URI" . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-blank.ttl: -------------------------------------------------------------------------------- 1 | @prefix eg: . 2 | 3 | _:.bad a eg:Thing . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-datatype.ttl: -------------------------------------------------------------------------------- 1 | <> "hello"^^"not-a-uri" . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-eof-in-escape.ttl: -------------------------------------------------------------------------------- 1 | @prefix eg: . 2 | 3 | <> eg:comment """\uA -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-lang.ttl: -------------------------------------------------------------------------------- 1 | <> "hello"@\bad . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-list2.ttl: -------------------------------------------------------------------------------- 1 | @prefix eg: . 2 | 3 | <> eg:thing ( . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-long-literal-in-list.ttl: -------------------------------------------------------------------------------- 1 | <> ("""") . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-misspelled-base.ttl: -------------------------------------------------------------------------------- 1 | @baze eg: . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-misspelled-prefix.ttl: -------------------------------------------------------------------------------- 1 | @prefox eg: . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-namespace.ttl: -------------------------------------------------------------------------------- 1 | @prefix eg: "what?" . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-ns.ttl: -------------------------------------------------------------------------------- 1 | <> a badprefix:Thing . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-num.ttl: -------------------------------------------------------------------------------- 1 | <> .hello . -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-prefix.ttl: -------------------------------------------------------------------------------- 1 | @prefix _invalid . 2 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-string.ttl: -------------------------------------------------------------------------------- 1 | <> "hello -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/bad/bad-uri-truncated.nt: -------------------------------------------------------------------------------- 1 | 2 | a . 3 | 4 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/good/test-empty.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/good/test-empty.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-src/lv2/serd/tests/good/test-list.ttl: -------------------------------------------------------------------------------- 1 | () a . -------------------------------------------------------------------------------- /lib-src/lv2/serd/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/waf -------------------------------------------------------------------------------- /lib-src/lv2/serd/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/serd/wscript -------------------------------------------------------------------------------- /lib-src/lv2/sord/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/AUTHORS -------------------------------------------------------------------------------- /lib-src/lv2/sord/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/COPYING -------------------------------------------------------------------------------- /lib-src/lv2/sord/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/INSTALL -------------------------------------------------------------------------------- /lib-src/lv2/sord/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/sord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/README.md -------------------------------------------------------------------------------- /lib-src/lv2/sord/tests/test-08.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( ) . 3 | 4 | -------------------------------------------------------------------------------- /lib-src/lv2/sord/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/waf -------------------------------------------------------------------------------- /lib-src/lv2/sord/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sord/wscript -------------------------------------------------------------------------------- /lib-src/lv2/sratom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sratom/COPYING -------------------------------------------------------------------------------- /lib-src/lv2/sratom/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sratom/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/sratom/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sratom/waf -------------------------------------------------------------------------------- /lib-src/lv2/sratom/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/sratom/wscript -------------------------------------------------------------------------------- /lib-src/lv2/suil/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/AUTHORS -------------------------------------------------------------------------------- /lib-src/lv2/suil/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/COPYING -------------------------------------------------------------------------------- /lib-src/lv2/suil/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/INSTALL -------------------------------------------------------------------------------- /lib-src/lv2/suil/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/NEWS -------------------------------------------------------------------------------- /lib-src/lv2/suil/PACKAGING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/PACKAGING -------------------------------------------------------------------------------- /lib-src/lv2/suil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/README.md -------------------------------------------------------------------------------- /lib-src/lv2/suil/src/x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/src/x11.c -------------------------------------------------------------------------------- /lib-src/lv2/suil/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/waf -------------------------------------------------------------------------------- /lib-src/lv2/suil/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/suil/wscript -------------------------------------------------------------------------------- /lib-src/lv2/unpack-waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/lv2/unpack-waf -------------------------------------------------------------------------------- /lib-src/pffft/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/pffft/README.txt -------------------------------------------------------------------------------- /lib-src/pffft/pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/pffft/pffft.c -------------------------------------------------------------------------------- /lib-src/pffft/pffft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/pffft/pffft.h -------------------------------------------------------------------------------- /lib-src/portburn/clip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portburn/clip.wav -------------------------------------------------------------------------------- /lib-src/portsmf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/README.txt -------------------------------------------------------------------------------- /lib-src/portsmf/allegro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/allegro.h -------------------------------------------------------------------------------- /lib-src/portsmf/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/configure -------------------------------------------------------------------------------- /lib-src/portsmf/mfmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/mfmidi.cpp -------------------------------------------------------------------------------- /lib-src/portsmf/mfmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/mfmidi.h -------------------------------------------------------------------------------- /lib-src/portsmf/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/notes.txt -------------------------------------------------------------------------------- /lib-src/portsmf/strparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/strparse.h -------------------------------------------------------------------------------- /lib-src/portsmf/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/todo.txt -------------------------------------------------------------------------------- /lib-src/portsmf/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/portsmf/trace.cpp -------------------------------------------------------------------------------- /lib-src/portsmf/trace.h: -------------------------------------------------------------------------------- 1 | void trace(char *format, ...); 2 | 3 | -------------------------------------------------------------------------------- /lib-src/sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/sqlite/shell.c -------------------------------------------------------------------------------- /lib-src/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/sqlite/sqlite3.c -------------------------------------------------------------------------------- /lib-src/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/sqlite/sqlite3.h -------------------------------------------------------------------------------- /lib-src/twolame/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/AUTHORS -------------------------------------------------------------------------------- /lib-src/twolame/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/COPYING -------------------------------------------------------------------------------- /lib-src/twolame/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/ChangeLog -------------------------------------------------------------------------------- /lib-src/twolame/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/README -------------------------------------------------------------------------------- /lib-src/twolame/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/TODO -------------------------------------------------------------------------------- /lib-src/twolame/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/autogen.sh -------------------------------------------------------------------------------- /lib-src/twolame/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/lib-src/twolame/configure -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/lib-fft/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/lib-fft/FFT.cpp -------------------------------------------------------------------------------- /libraries/lib-fft/FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/lib-fft/FFT.h -------------------------------------------------------------------------------- /libraries/lib-math/Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/lib-math/Gain.h -------------------------------------------------------------------------------- /libraries/lib-mixer/Mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/lib-mixer/Mix.h -------------------------------------------------------------------------------- /libraries/lib-music-information-retrieval/tests/.gitignore: -------------------------------------------------------------------------------- 1 | benchmarking-dataset 2 | -------------------------------------------------------------------------------- /libraries/lib-network-manager/IResponse.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/lib-tags/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/lib-tags/Tags.h -------------------------------------------------------------------------------- /libraries/lib-uuid/Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/libraries/lib-uuid/Uuid.h -------------------------------------------------------------------------------- /linux/AppImage/AppRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/linux/AppImage/AppRun.sh -------------------------------------------------------------------------------- /linux/audacity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/linux/audacity.sh -------------------------------------------------------------------------------- /linux/create_appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/linux/create_appimage.sh -------------------------------------------------------------------------------- /linux/findlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/linux/findlib.c -------------------------------------------------------------------------------- /linux/ldd_recursive.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/linux/ldd_recursive.pl -------------------------------------------------------------------------------- /linux/packages/ubuntu-20.04/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /locale/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/CMakeLists.txt -------------------------------------------------------------------------------- /locale/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/LINGUAS -------------------------------------------------------------------------------- /locale/LanguageNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/LanguageNames.txt -------------------------------------------------------------------------------- /locale/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/af.po -------------------------------------------------------------------------------- /locale/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ar.po -------------------------------------------------------------------------------- /locale/audacity.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/audacity.pot -------------------------------------------------------------------------------- /locale/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/be.po -------------------------------------------------------------------------------- /locale/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/bg.po -------------------------------------------------------------------------------- /locale/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/bn.po -------------------------------------------------------------------------------- /locale/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/bs.po -------------------------------------------------------------------------------- /locale/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ca.po -------------------------------------------------------------------------------- /locale/ca_ES@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ca_ES@valencia.po -------------------------------------------------------------------------------- /locale/co.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/co.po -------------------------------------------------------------------------------- /locale/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/cs.po -------------------------------------------------------------------------------- /locale/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/cy.po -------------------------------------------------------------------------------- /locale/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/da.po -------------------------------------------------------------------------------- /locale/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/de.po -------------------------------------------------------------------------------- /locale/diagnostics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/diagnostics.sh -------------------------------------------------------------------------------- /locale/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/el.po -------------------------------------------------------------------------------- /locale/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/es.po -------------------------------------------------------------------------------- /locale/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/eu.po -------------------------------------------------------------------------------- /locale/eu_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/eu_ES.po -------------------------------------------------------------------------------- /locale/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/fa.po -------------------------------------------------------------------------------- /locale/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/fi.po -------------------------------------------------------------------------------- /locale/find-duplicates.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/find-duplicates.pl -------------------------------------------------------------------------------- /locale/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/fr.po -------------------------------------------------------------------------------- /locale/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ga.po -------------------------------------------------------------------------------- /locale/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/gl.po -------------------------------------------------------------------------------- /locale/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/he.po -------------------------------------------------------------------------------- /locale/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/hi.po -------------------------------------------------------------------------------- /locale/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/hr.po -------------------------------------------------------------------------------- /locale/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/hu.po -------------------------------------------------------------------------------- /locale/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/hy.po -------------------------------------------------------------------------------- /locale/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/id.po -------------------------------------------------------------------------------- /locale/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/it.po -------------------------------------------------------------------------------- /locale/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ja.po -------------------------------------------------------------------------------- /locale/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ka.po -------------------------------------------------------------------------------- /locale/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/km.po -------------------------------------------------------------------------------- /locale/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ko.po -------------------------------------------------------------------------------- /locale/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/lt.po -------------------------------------------------------------------------------- /locale/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/mk.po -------------------------------------------------------------------------------- /locale/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/mr.po -------------------------------------------------------------------------------- /locale/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/msgfmt.py -------------------------------------------------------------------------------- /locale/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/my.po -------------------------------------------------------------------------------- /locale/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/nb.po -------------------------------------------------------------------------------- /locale/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/nl.po -------------------------------------------------------------------------------- /locale/no_id.sh: -------------------------------------------------------------------------------- 1 | for i in *.po; do 2 | sed -i '/^Project/d' $i 3 | done -------------------------------------------------------------------------------- /locale/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/oc.po -------------------------------------------------------------------------------- /locale/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/pl.po -------------------------------------------------------------------------------- /locale/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/pt_BR.po -------------------------------------------------------------------------------- /locale/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/pt_PT.po -------------------------------------------------------------------------------- /locale/resources.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/resources.its -------------------------------------------------------------------------------- /locale/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ro.po -------------------------------------------------------------------------------- /locale/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ru.po -------------------------------------------------------------------------------- /locale/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/sk.po -------------------------------------------------------------------------------- /locale/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/sl.po -------------------------------------------------------------------------------- /locale/sr_RS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/sr_RS.po -------------------------------------------------------------------------------- /locale/sr_RS@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/sr_RS@latin.po -------------------------------------------------------------------------------- /locale/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/sv.po -------------------------------------------------------------------------------- /locale/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/ta.po -------------------------------------------------------------------------------- /locale/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/tg.po -------------------------------------------------------------------------------- /locale/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/tr.po -------------------------------------------------------------------------------- /locale/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/uk.po -------------------------------------------------------------------------------- /locale/update_po_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/update_po_files.sh -------------------------------------------------------------------------------- /locale/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/vi.po -------------------------------------------------------------------------------- /locale/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/zh_CN.po -------------------------------------------------------------------------------- /locale/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/locale/zh_TW.po -------------------------------------------------------------------------------- /mac/Audacity.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/mac/Audacity.entitlements -------------------------------------------------------------------------------- /mac/Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/mac/Install.txt -------------------------------------------------------------------------------- /mac/Wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/mac/Wrapper.c -------------------------------------------------------------------------------- /mac/signing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/mac/signing.txt -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/etc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/modules/etc/CMakeLists.txt -------------------------------------------------------------------------------- /nographs.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nographs.dox -------------------------------------------------------------------------------- /nyq-po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyq-po/Makevars -------------------------------------------------------------------------------- /nyq-po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyq-po/POTFILES.in -------------------------------------------------------------------------------- /nyq-po/audacity.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyq-po/audacity.pot -------------------------------------------------------------------------------- /nyq-po/remove-potcdate.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyq-po/remove-potcdate.sin -------------------------------------------------------------------------------- /nyquist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/CMakeLists.txt -------------------------------------------------------------------------------- /nyquist/aud-do-support.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/aud-do-support.lsp -------------------------------------------------------------------------------- /nyquist/dspprims.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/dspprims.lsp -------------------------------------------------------------------------------- /nyquist/envelopes.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/envelopes.lsp -------------------------------------------------------------------------------- /nyquist/equalizer.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/equalizer.lsp -------------------------------------------------------------------------------- /nyquist/evalenv.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/evalenv.lsp -------------------------------------------------------------------------------- /nyquist/fileio.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/fileio.lsp -------------------------------------------------------------------------------- /nyquist/init.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/init.lsp -------------------------------------------------------------------------------- /nyquist/misc.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/misc.lsp -------------------------------------------------------------------------------- /nyquist/nyinit-dbg.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/nyinit-dbg.lsp -------------------------------------------------------------------------------- /nyquist/nyinit.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/nyinit.lsp -------------------------------------------------------------------------------- /nyquist/nyqmisc.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/nyqmisc.lsp -------------------------------------------------------------------------------- /nyquist/nyquist-plot.txt: -------------------------------------------------------------------------------- 1 | set nokey 2 | plot "points.dat" with lines 3 | 4 | -------------------------------------------------------------------------------- /nyquist/nyquist.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/nyquist.lsp -------------------------------------------------------------------------------- /nyquist/printrec.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/printrec.lsp -------------------------------------------------------------------------------- /nyquist/profile.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/profile.lsp -------------------------------------------------------------------------------- /nyquist/rawwaves/mand1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand1.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand2.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand3.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand4.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand5.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand6.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand7.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand7.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand8.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand8.raw -------------------------------------------------------------------------------- /nyquist/rawwaves/mand9.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/rawwaves/mand9.raw -------------------------------------------------------------------------------- /nyquist/sal-parse.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/sal-parse.lsp -------------------------------------------------------------------------------- /nyquist/sal.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/sal.lsp -------------------------------------------------------------------------------- /nyquist/seq.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/seq.lsp -------------------------------------------------------------------------------- /nyquist/seqfnint.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/seqfnint.lsp -------------------------------------------------------------------------------- /nyquist/seqmidi.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/seqmidi.lsp -------------------------------------------------------------------------------- /nyquist/sliders.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/sliders.lsp -------------------------------------------------------------------------------- /nyquist/sndfnint.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/sndfnint.lsp -------------------------------------------------------------------------------- /nyquist/spec-plot.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/spec-plot.lsp -------------------------------------------------------------------------------- /nyquist/stk.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/stk.lsp -------------------------------------------------------------------------------- /nyquist/system.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/system.lsp -------------------------------------------------------------------------------- /nyquist/test.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/test.lsp -------------------------------------------------------------------------------- /nyquist/upic.sal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/upic.sal -------------------------------------------------------------------------------- /nyquist/velocity.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/velocity.lsp -------------------------------------------------------------------------------- /nyquist/xlinit.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/xlinit.lsp -------------------------------------------------------------------------------- /nyquist/xm.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/nyquist/xm.lsp -------------------------------------------------------------------------------- /plug-ins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/CMakeLists.txt -------------------------------------------------------------------------------- /plug-ins/ShelfFilter.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/ShelfFilter.ny -------------------------------------------------------------------------------- /plug-ins/StudioFadeOut.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/StudioFadeOut.ny -------------------------------------------------------------------------------- /plug-ins/beat.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/beat.ny -------------------------------------------------------------------------------- /plug-ins/clipfix.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/clipfix.ny -------------------------------------------------------------------------------- /plug-ins/crossfadeclips.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/crossfadeclips.ny -------------------------------------------------------------------------------- /plug-ins/delay.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/delay.ny -------------------------------------------------------------------------------- /plug-ins/equalabel.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/equalabel.ny -------------------------------------------------------------------------------- /plug-ins/highpass.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/highpass.ny -------------------------------------------------------------------------------- /plug-ins/label-sounds.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/label-sounds.ny -------------------------------------------------------------------------------- /plug-ins/limiter.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/limiter.ny -------------------------------------------------------------------------------- /plug-ins/lowpass.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/lowpass.ny -------------------------------------------------------------------------------- /plug-ins/noisegate.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/noisegate.ny -------------------------------------------------------------------------------- /plug-ins/notch.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/notch.ny -------------------------------------------------------------------------------- /plug-ins/pluck.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/pluck.ny -------------------------------------------------------------------------------- /plug-ins/rhythmtrack.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/rhythmtrack.ny -------------------------------------------------------------------------------- /plug-ins/rissetdrum.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/rissetdrum.ny -------------------------------------------------------------------------------- /plug-ins/rms.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/rms.ny -------------------------------------------------------------------------------- /plug-ins/tremolo.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/tremolo.ny -------------------------------------------------------------------------------- /plug-ins/vocoder.ny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/plug-ins/vocoder.ny -------------------------------------------------------------------------------- /scripts/dot-emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/scripts/dot-emacs -------------------------------------------------------------------------------- /scripts/graph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/scripts/graph.pl -------------------------------------------------------------------------------- /scripts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/scripts/utils/files.py -------------------------------------------------------------------------------- /src/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AboutDialog.cpp -------------------------------------------------------------------------------- /src/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AboutDialog.h -------------------------------------------------------------------------------- /src/ActiveProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ActiveProject.cpp -------------------------------------------------------------------------------- /src/ActiveProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ActiveProject.h -------------------------------------------------------------------------------- /src/AdornedRulerPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AdornedRulerPanel.cpp -------------------------------------------------------------------------------- /src/AdornedRulerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AdornedRulerPanel.h -------------------------------------------------------------------------------- /src/AnalyzedWaveClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AnalyzedWaveClip.cpp -------------------------------------------------------------------------------- /src/AnalyzedWaveClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AnalyzedWaveClip.h -------------------------------------------------------------------------------- /src/AudacityApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityApp.cpp -------------------------------------------------------------------------------- /src/AudacityApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityApp.h -------------------------------------------------------------------------------- /src/AudacityApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityApp.mm -------------------------------------------------------------------------------- /src/AudacityFileConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityFileConfig.cpp -------------------------------------------------------------------------------- /src/AudacityFileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityFileConfig.h -------------------------------------------------------------------------------- /src/AudacityHeaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityHeaders.cpp -------------------------------------------------------------------------------- /src/AudacityHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityHeaders.h -------------------------------------------------------------------------------- /src/AudacityMirProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityMirProject.cpp -------------------------------------------------------------------------------- /src/AudacityMirProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudacityMirProject.h -------------------------------------------------------------------------------- /src/AudioPasteDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudioPasteDialog.cpp -------------------------------------------------------------------------------- /src/AudioPasteDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AudioPasteDialog.h -------------------------------------------------------------------------------- /src/AutoRecoveryDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AutoRecoveryDialog.cpp -------------------------------------------------------------------------------- /src/AutoRecoveryDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/AutoRecoveryDialog.h -------------------------------------------------------------------------------- /src/BatchCommandDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/BatchCommandDialog.cpp -------------------------------------------------------------------------------- /src/BatchCommandDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/BatchCommandDialog.h -------------------------------------------------------------------------------- /src/BatchCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/BatchCommands.cpp -------------------------------------------------------------------------------- /src/BatchCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/BatchCommands.h -------------------------------------------------------------------------------- /src/BatchProcessDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/BatchProcessDialog.cpp -------------------------------------------------------------------------------- /src/BatchProcessDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/BatchProcessDialog.h -------------------------------------------------------------------------------- /src/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Benchmark.cpp -------------------------------------------------------------------------------- /src/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Benchmark.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CellularPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CellularPanel.cpp -------------------------------------------------------------------------------- /src/CellularPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CellularPanel.h -------------------------------------------------------------------------------- /src/ClipMirAudioReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ClipMirAudioReader.cpp -------------------------------------------------------------------------------- /src/ClipMirAudioReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ClipMirAudioReader.h -------------------------------------------------------------------------------- /src/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Clipboard.cpp -------------------------------------------------------------------------------- /src/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Clipboard.h -------------------------------------------------------------------------------- /src/CommonCommandFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CommonCommandFlags.cpp -------------------------------------------------------------------------------- /src/CommonCommandFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CommonCommandFlags.h -------------------------------------------------------------------------------- /src/CrashReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CrashReport.cpp -------------------------------------------------------------------------------- /src/CrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CrashReport.h -------------------------------------------------------------------------------- /src/CrossFade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CrossFade.cpp -------------------------------------------------------------------------------- /src/CrossFade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/CrossFade.h -------------------------------------------------------------------------------- /src/Dependencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Dependencies.cpp -------------------------------------------------------------------------------- /src/Dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Dependencies.h -------------------------------------------------------------------------------- /src/Diags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Diags.cpp -------------------------------------------------------------------------------- /src/Diags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Diags.h -------------------------------------------------------------------------------- /src/DropTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/DropTarget.cpp -------------------------------------------------------------------------------- /src/DropoutDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/DropoutDetector.cpp -------------------------------------------------------------------------------- /src/EnvelopeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/EnvelopeEditor.cpp -------------------------------------------------------------------------------- /src/EnvelopeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/EnvelopeEditor.h -------------------------------------------------------------------------------- /src/Experimental.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Experimental.cmake -------------------------------------------------------------------------------- /src/FreqWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/FreqWindow.cpp -------------------------------------------------------------------------------- /src/FreqWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/FreqWindow.h -------------------------------------------------------------------------------- /src/HelpUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/HelpUtilities.cpp -------------------------------------------------------------------------------- /src/HelpUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/HelpUtilities.h -------------------------------------------------------------------------------- /src/HistoryWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/HistoryWindow.cpp -------------------------------------------------------------------------------- /src/HistoryWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/HistoryWindow.h -------------------------------------------------------------------------------- /src/HitTestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/HitTestResult.h -------------------------------------------------------------------------------- /src/JournalEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/JournalEvents.cpp -------------------------------------------------------------------------------- /src/JournalEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/JournalEvents.h -------------------------------------------------------------------------------- /src/JournalWindowPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/JournalWindowPaths.cpp -------------------------------------------------------------------------------- /src/JournalWindowPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/JournalWindowPaths.h -------------------------------------------------------------------------------- /src/KeyboardCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/KeyboardCapture.cpp -------------------------------------------------------------------------------- /src/KeyboardCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/KeyboardCapture.h -------------------------------------------------------------------------------- /src/LabelDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LabelDialog.cpp -------------------------------------------------------------------------------- /src/LabelDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LabelDialog.h -------------------------------------------------------------------------------- /src/LabelTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LabelTrack.cpp -------------------------------------------------------------------------------- /src/LabelTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LabelTrack.h -------------------------------------------------------------------------------- /src/LabelTrackEditing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LabelTrackEditing.cpp -------------------------------------------------------------------------------- /src/LangChoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LangChoice.cpp -------------------------------------------------------------------------------- /src/LangChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/LangChoice.h -------------------------------------------------------------------------------- /src/Legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Legacy.cpp -------------------------------------------------------------------------------- /src/Legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Legacy.h -------------------------------------------------------------------------------- /src/ListNavigationPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ListNavigationPanel.h -------------------------------------------------------------------------------- /src/MenuCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MenuCreator.cpp -------------------------------------------------------------------------------- /src/MenuCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MenuCreator.h -------------------------------------------------------------------------------- /src/MixerBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MixerBoard.cpp -------------------------------------------------------------------------------- /src/MixerBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MixerBoard.h -------------------------------------------------------------------------------- /src/MouseWheelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MouseWheelHandler.cpp -------------------------------------------------------------------------------- /src/MovableControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MovableControl.cpp -------------------------------------------------------------------------------- /src/MovableControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/MovableControl.h -------------------------------------------------------------------------------- /src/NoteTrackEditing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/NoteTrackEditing.cpp -------------------------------------------------------------------------------- /src/PitchName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/PitchName.cpp -------------------------------------------------------------------------------- /src/PitchName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/PitchName.h -------------------------------------------------------------------------------- /src/PluginDataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/PluginDataModel.cpp -------------------------------------------------------------------------------- /src/PluginDataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/PluginDataModel.h -------------------------------------------------------------------------------- /src/PluginDataViewCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/PluginDataViewCtrl.cpp -------------------------------------------------------------------------------- /src/PluginDataViewCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/PluginDataViewCtrl.h -------------------------------------------------------------------------------- /src/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Profiler.cpp -------------------------------------------------------------------------------- /src/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/Profiler.h -------------------------------------------------------------------------------- /src/ProjectAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectAudioManager.h -------------------------------------------------------------------------------- /src/ProjectFSCK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectFSCK.cpp -------------------------------------------------------------------------------- /src/ProjectFSCK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectFSCK.h -------------------------------------------------------------------------------- /src/ProjectFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectFileManager.cpp -------------------------------------------------------------------------------- /src/ProjectFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectFileManager.h -------------------------------------------------------------------------------- /src/ProjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectManager.cpp -------------------------------------------------------------------------------- /src/ProjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectManager.h -------------------------------------------------------------------------------- /src/ProjectSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectSettings.cpp -------------------------------------------------------------------------------- /src/ProjectSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectSettings.h -------------------------------------------------------------------------------- /src/ProjectTimeRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectTimeRuler.cpp -------------------------------------------------------------------------------- /src/ProjectTimeRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectTimeRuler.h -------------------------------------------------------------------------------- /src/ProjectWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectWindow.cpp -------------------------------------------------------------------------------- /src/ProjectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectWindow.h -------------------------------------------------------------------------------- /src/ProjectWindowBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectWindowBase.cpp -------------------------------------------------------------------------------- /src/ProjectWindowBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectWindowBase.h -------------------------------------------------------------------------------- /src/ProjectWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectWindows.cpp -------------------------------------------------------------------------------- /src/ProjectWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ProjectWindows.h -------------------------------------------------------------------------------- /src/RealFFTf48x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/RealFFTf48x.cpp -------------------------------------------------------------------------------- /src/RealFFTf48x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/RealFFTf48x.h -------------------------------------------------------------------------------- /src/RealtimeEffectPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/RealtimeEffectPanel.h -------------------------------------------------------------------------------- /src/RefreshCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/RefreshCode.h -------------------------------------------------------------------------------- /src/ScrubState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ScrubState.cpp -------------------------------------------------------------------------------- /src/ScrubState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ScrubState.h -------------------------------------------------------------------------------- /src/SelectUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SelectUtilities.cpp -------------------------------------------------------------------------------- /src/SelectUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SelectUtilities.h -------------------------------------------------------------------------------- /src/ShuttleGetDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ShuttleGetDefinition.h -------------------------------------------------------------------------------- /src/SoundActivatedRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SoundActivatedRecord.h -------------------------------------------------------------------------------- /src/SpectralDataDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SpectralDataDialog.cpp -------------------------------------------------------------------------------- /src/SpectralDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SpectralDataManager.h -------------------------------------------------------------------------------- /src/SpectrumAnalyst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SpectrumAnalyst.cpp -------------------------------------------------------------------------------- /src/SpectrumAnalyst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SpectrumAnalyst.h -------------------------------------------------------------------------------- /src/SpectrumTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SpectrumTransformer.h -------------------------------------------------------------------------------- /src/SplashDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SplashDialog.cpp -------------------------------------------------------------------------------- /src/SplashDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SplashDialog.h -------------------------------------------------------------------------------- /src/SseMathFuncs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SseMathFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/SseMathFuncs.h -------------------------------------------------------------------------------- /src/TagsEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TagsEditor.cpp -------------------------------------------------------------------------------- /src/TagsEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TagsEditor.h -------------------------------------------------------------------------------- /src/ThemedWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/ThemedWrappers.h -------------------------------------------------------------------------------- /src/TimeDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimeDialog.cpp -------------------------------------------------------------------------------- /src/TimeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimeDialog.h -------------------------------------------------------------------------------- /src/TimeDisplayMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimeDisplayMode.cpp -------------------------------------------------------------------------------- /src/TimeDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimeDisplayMode.h -------------------------------------------------------------------------------- /src/TimeTrackEditing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimeTrackEditing.cpp -------------------------------------------------------------------------------- /src/TimerRecordDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimerRecordDialog.cpp -------------------------------------------------------------------------------- /src/TimerRecordDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TimerRecordDialog.h -------------------------------------------------------------------------------- /src/TrackArt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackArt.cpp -------------------------------------------------------------------------------- /src/TrackArt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackArt.h -------------------------------------------------------------------------------- /src/TrackArtist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackArtist.cpp -------------------------------------------------------------------------------- /src/TrackArtist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackArtist.h -------------------------------------------------------------------------------- /src/TrackInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackInfo.cpp -------------------------------------------------------------------------------- /src/TrackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackInfo.h -------------------------------------------------------------------------------- /src/TrackPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanel.cpp -------------------------------------------------------------------------------- /src/TrackPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanel.h -------------------------------------------------------------------------------- /src/TrackPanelAx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelAx.cpp -------------------------------------------------------------------------------- /src/TrackPanelAx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelAx.h -------------------------------------------------------------------------------- /src/TrackPanelCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelCell.cpp -------------------------------------------------------------------------------- /src/TrackPanelCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelCell.h -------------------------------------------------------------------------------- /src/TrackPanelConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelConstants.h -------------------------------------------------------------------------------- /src/TrackPanelDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelDrawable.cpp -------------------------------------------------------------------------------- /src/TrackPanelDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelDrawable.h -------------------------------------------------------------------------------- /src/TrackPanelMouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackPanelMouseEvent.h -------------------------------------------------------------------------------- /src/TrackUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackUtilities.cpp -------------------------------------------------------------------------------- /src/TrackUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TrackUtilities.h -------------------------------------------------------------------------------- /src/TransportUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TransportUtilities.cpp -------------------------------------------------------------------------------- /src/TransportUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/TransportUtilities.h -------------------------------------------------------------------------------- /src/UIHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/UIHandle.cpp -------------------------------------------------------------------------------- /src/UIHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/UIHandle.h -------------------------------------------------------------------------------- /src/VoiceKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/VoiceKey.cpp -------------------------------------------------------------------------------- /src/VoiceKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/VoiceKey.h -------------------------------------------------------------------------------- /src/WaveTrackLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/WaveTrackLocation.cpp -------------------------------------------------------------------------------- /src/WaveTrackLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/WaveTrackLocation.h -------------------------------------------------------------------------------- /src/audacity.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/audacity.desktop.in -------------------------------------------------------------------------------- /src/audacity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/audacity.xml -------------------------------------------------------------------------------- /src/audacity_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/audacity_config.h.in -------------------------------------------------------------------------------- /src/commands/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/Command.cpp -------------------------------------------------------------------------------- /src/commands/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/Command.h -------------------------------------------------------------------------------- /src/commands/CommandMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/CommandMisc.h -------------------------------------------------------------------------------- /src/commands/CommandType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/CommandType.h -------------------------------------------------------------------------------- /src/commands/Demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/Demo.cpp -------------------------------------------------------------------------------- /src/commands/Demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/Demo.h -------------------------------------------------------------------------------- /src/commands/DragCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/DragCommand.h -------------------------------------------------------------------------------- /src/commands/HelpCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/HelpCommand.h -------------------------------------------------------------------------------- /src/commands/Validators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/commands/Validators.h -------------------------------------------------------------------------------- /src/effects/Amplify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Amplify.cpp -------------------------------------------------------------------------------- /src/effects/Amplify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Amplify.h -------------------------------------------------------------------------------- /src/effects/AutoDuck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/AutoDuck.cpp -------------------------------------------------------------------------------- /src/effects/AutoDuck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/AutoDuck.h -------------------------------------------------------------------------------- /src/effects/BassTreble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/BassTreble.cpp -------------------------------------------------------------------------------- /src/effects/BassTreble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/BassTreble.h -------------------------------------------------------------------------------- /src/effects/Biquad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Biquad.cpp -------------------------------------------------------------------------------- /src/effects/Biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Biquad.h -------------------------------------------------------------------------------- /src/effects/ChangePitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ChangePitch.h -------------------------------------------------------------------------------- /src/effects/ChangeSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ChangeSpeed.h -------------------------------------------------------------------------------- /src/effects/ChangeTempo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ChangeTempo.h -------------------------------------------------------------------------------- /src/effects/ClickRemoval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ClickRemoval.h -------------------------------------------------------------------------------- /src/effects/Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Compressor.cpp -------------------------------------------------------------------------------- /src/effects/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Compressor.h -------------------------------------------------------------------------------- /src/effects/Contrast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Contrast.cpp -------------------------------------------------------------------------------- /src/effects/Contrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Contrast.h -------------------------------------------------------------------------------- /src/effects/Distortion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Distortion.cpp -------------------------------------------------------------------------------- /src/effects/Distortion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Distortion.h -------------------------------------------------------------------------------- /src/effects/DtmfGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/DtmfGen.cpp -------------------------------------------------------------------------------- /src/effects/DtmfGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/DtmfGen.h -------------------------------------------------------------------------------- /src/effects/EBUR128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/EBUR128.cpp -------------------------------------------------------------------------------- /src/effects/EBUR128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/EBUR128.h -------------------------------------------------------------------------------- /src/effects/Echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Echo.cpp -------------------------------------------------------------------------------- /src/effects/Echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Echo.h -------------------------------------------------------------------------------- /src/effects/EffectEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/EffectEditor.h -------------------------------------------------------------------------------- /src/effects/EffectUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/EffectUI.cpp -------------------------------------------------------------------------------- /src/effects/EffectUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/EffectUI.h -------------------------------------------------------------------------------- /src/effects/EffectUI.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/EffectUI.mm -------------------------------------------------------------------------------- /src/effects/Equalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Equalization.h -------------------------------------------------------------------------------- /src/effects/Fade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Fade.cpp -------------------------------------------------------------------------------- /src/effects/Fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Fade.h -------------------------------------------------------------------------------- /src/effects/FindClipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/FindClipping.h -------------------------------------------------------------------------------- /src/effects/Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Generator.cpp -------------------------------------------------------------------------------- /src/effects/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Generator.h -------------------------------------------------------------------------------- /src/effects/Invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Invert.cpp -------------------------------------------------------------------------------- /src/effects/Invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Invert.h -------------------------------------------------------------------------------- /src/effects/Leveller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Leveller.cpp -------------------------------------------------------------------------------- /src/effects/Leveller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Leveller.h -------------------------------------------------------------------------------- /src/effects/Loudness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Loudness.cpp -------------------------------------------------------------------------------- /src/effects/Loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Loudness.h -------------------------------------------------------------------------------- /src/effects/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Noise.cpp -------------------------------------------------------------------------------- /src/effects/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Noise.h -------------------------------------------------------------------------------- /src/effects/Normalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Normalize.cpp -------------------------------------------------------------------------------- /src/effects/Normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Normalize.h -------------------------------------------------------------------------------- /src/effects/Paulstretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Paulstretch.h -------------------------------------------------------------------------------- /src/effects/Phaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Phaser.cpp -------------------------------------------------------------------------------- /src/effects/Phaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Phaser.h -------------------------------------------------------------------------------- /src/effects/Repair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Repair.cpp -------------------------------------------------------------------------------- /src/effects/Repair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Repair.h -------------------------------------------------------------------------------- /src/effects/Repeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Repeat.cpp -------------------------------------------------------------------------------- /src/effects/Repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Repeat.h -------------------------------------------------------------------------------- /src/effects/Reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Reverb.cpp -------------------------------------------------------------------------------- /src/effects/Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Reverb.h -------------------------------------------------------------------------------- /src/effects/Reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Reverse.cpp -------------------------------------------------------------------------------- /src/effects/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Reverse.h -------------------------------------------------------------------------------- /src/effects/SBSMSEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/SBSMSEffect.h -------------------------------------------------------------------------------- /src/effects/ScienFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ScienFilter.h -------------------------------------------------------------------------------- /src/effects/Silence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Silence.cpp -------------------------------------------------------------------------------- /src/effects/Silence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Silence.h -------------------------------------------------------------------------------- /src/effects/StereoToMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/StereoToMono.h -------------------------------------------------------------------------------- /src/effects/TimeScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/TimeScale.cpp -------------------------------------------------------------------------------- /src/effects/TimeScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/TimeScale.h -------------------------------------------------------------------------------- /src/effects/ToneGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ToneGen.cpp -------------------------------------------------------------------------------- /src/effects/ToneGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/ToneGen.h -------------------------------------------------------------------------------- /src/effects/TruncSilence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/TruncSilence.h -------------------------------------------------------------------------------- /src/effects/Wahwah.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Wahwah.cpp -------------------------------------------------------------------------------- /src/effects/Wahwah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/effects/Wahwah.h -------------------------------------------------------------------------------- /src/import/ImportRaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/import/ImportRaw.cpp -------------------------------------------------------------------------------- /src/import/ImportRaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/import/ImportRaw.h -------------------------------------------------------------------------------- /src/import/RawAudioGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/import/RawAudioGuess.h -------------------------------------------------------------------------------- /src/menus/ClipMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/ClipMenus.cpp -------------------------------------------------------------------------------- /src/menus/EditMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/EditMenus.cpp -------------------------------------------------------------------------------- /src/menus/ExtraMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/ExtraMenus.cpp -------------------------------------------------------------------------------- /src/menus/FileMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/FileMenus.cpp -------------------------------------------------------------------------------- /src/menus/HelpMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/HelpMenus.cpp -------------------------------------------------------------------------------- /src/menus/LabelMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/LabelMenus.cpp -------------------------------------------------------------------------------- /src/menus/MenuHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/MenuHelper.cpp -------------------------------------------------------------------------------- /src/menus/MenuHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/MenuHelper.h -------------------------------------------------------------------------------- /src/menus/PluginMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/PluginMenus.cpp -------------------------------------------------------------------------------- /src/menus/SelectMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/SelectMenus.cpp -------------------------------------------------------------------------------- /src/menus/ToolbarMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/ToolbarMenus.cpp -------------------------------------------------------------------------------- /src/menus/TrackMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/TrackMenus.cpp -------------------------------------------------------------------------------- /src/menus/ViewMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/menus/ViewMenus.cpp -------------------------------------------------------------------------------- /src/prefs/BatchPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/BatchPrefs.cpp -------------------------------------------------------------------------------- /src/prefs/BatchPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/BatchPrefs.h -------------------------------------------------------------------------------- /src/prefs/DevicePrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/DevicePrefs.cpp -------------------------------------------------------------------------------- /src/prefs/DevicePrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/DevicePrefs.h -------------------------------------------------------------------------------- /src/prefs/EffectsPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/EffectsPrefs.cpp -------------------------------------------------------------------------------- /src/prefs/EffectsPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/EffectsPrefs.h -------------------------------------------------------------------------------- /src/prefs/ExtImportPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/ExtImportPrefs.h -------------------------------------------------------------------------------- /src/prefs/GUIPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/GUIPrefs.cpp -------------------------------------------------------------------------------- /src/prefs/GUIPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/GUIPrefs.h -------------------------------------------------------------------------------- /src/prefs/GUISettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/GUISettings.cpp -------------------------------------------------------------------------------- /src/prefs/GUISettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/GUISettings.h -------------------------------------------------------------------------------- /src/prefs/KeyConfigPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/KeyConfigPrefs.h -------------------------------------------------------------------------------- /src/prefs/MidiIOPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/MidiIOPrefs.cpp -------------------------------------------------------------------------------- /src/prefs/MidiIOPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/MidiIOPrefs.h -------------------------------------------------------------------------------- /src/prefs/ModulePrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/ModulePrefs.cpp -------------------------------------------------------------------------------- /src/prefs/ModulePrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/ModulePrefs.h -------------------------------------------------------------------------------- /src/prefs/PlaybackPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/PlaybackPrefs.h -------------------------------------------------------------------------------- /src/prefs/PrefsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/PrefsDialog.cpp -------------------------------------------------------------------------------- /src/prefs/PrefsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/PrefsDialog.h -------------------------------------------------------------------------------- /src/prefs/QualityPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/QualityPrefs.cpp -------------------------------------------------------------------------------- /src/prefs/QualityPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/QualityPrefs.h -------------------------------------------------------------------------------- /src/prefs/RecordingPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/RecordingPrefs.h -------------------------------------------------------------------------------- /src/prefs/SpectrumPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/SpectrumPrefs.h -------------------------------------------------------------------------------- /src/prefs/ThemePrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/ThemePrefs.cpp -------------------------------------------------------------------------------- /src/prefs/ThemePrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/ThemePrefs.h -------------------------------------------------------------------------------- /src/prefs/TracksPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/TracksPrefs.cpp -------------------------------------------------------------------------------- /src/prefs/TracksPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/TracksPrefs.h -------------------------------------------------------------------------------- /src/prefs/WarningsPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/WarningsPrefs.h -------------------------------------------------------------------------------- /src/prefs/WaveformPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/prefs/WaveformPrefs.h -------------------------------------------------------------------------------- /src/toolbars/EditToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/EditToolBar.h -------------------------------------------------------------------------------- /src/toolbars/TimeToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/TimeToolBar.h -------------------------------------------------------------------------------- /src/toolbars/ToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/ToolBar.cpp -------------------------------------------------------------------------------- /src/toolbars/ToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/ToolBar.h -------------------------------------------------------------------------------- /src/toolbars/ToolDock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/ToolDock.cpp -------------------------------------------------------------------------------- /src/toolbars/ToolDock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/ToolDock.h -------------------------------------------------------------------------------- /src/toolbars/ToolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/toolbars/ToolManager.h -------------------------------------------------------------------------------- /src/tracks/ui/ScrubUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/tracks/ui/ScrubUI.cpp -------------------------------------------------------------------------------- /src/tracks/ui/ScrubUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/tracks/ui/ScrubUI.h -------------------------------------------------------------------------------- /src/tracks/ui/Scrubbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/tracks/ui/Scrubbing.h -------------------------------------------------------------------------------- /src/tracks/ui/ZoomHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/tracks/ui/ZoomHandle.h -------------------------------------------------------------------------------- /src/update/UpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/update/UpdateManager.h -------------------------------------------------------------------------------- /src/update/VersionId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/update/VersionId.cpp -------------------------------------------------------------------------------- /src/update/VersionId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/update/VersionId.h -------------------------------------------------------------------------------- /src/update/VersionPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/update/VersionPatch.h -------------------------------------------------------------------------------- /src/widgets/AButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/AButton.cpp -------------------------------------------------------------------------------- /src/widgets/AButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/AButton.h -------------------------------------------------------------------------------- /src/widgets/ASlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/ASlider.cpp -------------------------------------------------------------------------------- /src/widgets/ASlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/ASlider.h -------------------------------------------------------------------------------- /src/widgets/BackedPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/BackedPanel.h -------------------------------------------------------------------------------- /src/widgets/BasicMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/BasicMenu.cpp -------------------------------------------------------------------------------- /src/widgets/BasicMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/BasicMenu.h -------------------------------------------------------------------------------- /src/widgets/BeatsFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/BeatsFormat.h -------------------------------------------------------------------------------- /src/widgets/FileHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/FileHistory.h -------------------------------------------------------------------------------- /src/widgets/Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Grabber.cpp -------------------------------------------------------------------------------- /src/widgets/Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Grabber.h -------------------------------------------------------------------------------- /src/widgets/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Grid.cpp -------------------------------------------------------------------------------- /src/widgets/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Grid.h -------------------------------------------------------------------------------- /src/widgets/ImageRoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/ImageRoll.cpp -------------------------------------------------------------------------------- /src/widgets/ImageRoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/ImageRoll.h -------------------------------------------------------------------------------- /src/widgets/IntFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/IntFormat.cpp -------------------------------------------------------------------------------- /src/widgets/IntFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/IntFormat.h -------------------------------------------------------------------------------- /src/widgets/KeyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/KeyView.cpp -------------------------------------------------------------------------------- /src/widgets/KeyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/KeyView.h -------------------------------------------------------------------------------- /src/widgets/MeterPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/MeterPanel.cpp -------------------------------------------------------------------------------- /src/widgets/MeterPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/MeterPanel.h -------------------------------------------------------------------------------- /src/widgets/Overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Overlay.cpp -------------------------------------------------------------------------------- /src/widgets/Overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Overlay.h -------------------------------------------------------------------------------- /src/widgets/OverlayPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/OverlayPanel.h -------------------------------------------------------------------------------- /src/widgets/RealFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/RealFormat.cpp -------------------------------------------------------------------------------- /src/widgets/RealFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/RealFormat.h -------------------------------------------------------------------------------- /src/widgets/Ruler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Ruler.cpp -------------------------------------------------------------------------------- /src/widgets/Ruler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Ruler.h -------------------------------------------------------------------------------- /src/widgets/RulerFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/RulerFormat.h -------------------------------------------------------------------------------- /src/widgets/RulerPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/RulerPanel.cpp -------------------------------------------------------------------------------- /src/widgets/RulerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/RulerPanel.h -------------------------------------------------------------------------------- /src/widgets/RulerUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/RulerUpdater.h -------------------------------------------------------------------------------- /src/widgets/TimeFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/TimeFormat.cpp -------------------------------------------------------------------------------- /src/widgets/TimeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/TimeFormat.h -------------------------------------------------------------------------------- /src/widgets/Warning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Warning.cpp -------------------------------------------------------------------------------- /src/widgets/Warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/Warning.h -------------------------------------------------------------------------------- /src/widgets/auStaticText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/auStaticText.h -------------------------------------------------------------------------------- /src/widgets/numformatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/numformatter.h -------------------------------------------------------------------------------- /src/widgets/valnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/valnum.cpp -------------------------------------------------------------------------------- /src/widgets/valnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/src/widgets/valnum.h -------------------------------------------------------------------------------- /tests/AudioFileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/AudioFileIO.cpp -------------------------------------------------------------------------------- /tests/AudioFileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/AudioFileIO.h -------------------------------------------------------------------------------- /tests/AudioFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/AudioFileInfo.h -------------------------------------------------------------------------------- /tests/Catch2Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/Catch2Main.cpp -------------------------------------------------------------------------------- /tests/MockedAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/MockedAudio.cpp -------------------------------------------------------------------------------- /tests/MockedAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/MockedAudio.h -------------------------------------------------------------------------------- /tests/MockedPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/MockedPrefs.cpp -------------------------------------------------------------------------------- /tests/MockedPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/MockedPrefs.h -------------------------------------------------------------------------------- /tests/Mp3FileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/Mp3FileReader.cpp -------------------------------------------------------------------------------- /tests/Mp3FileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/Mp3FileReader.h -------------------------------------------------------------------------------- /tests/SequenceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/SequenceTest.cpp -------------------------------------------------------------------------------- /tests/WavFileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/WavFileIO.cpp -------------------------------------------------------------------------------- /tests/WavFileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/WavFileIO.h -------------------------------------------------------------------------------- /tests/journals/journal_sanity.txt: -------------------------------------------------------------------------------- 1 | #Journal recorded by veden on 08/02/2022 14:08:54 2 | Version,1 3 | CM,Exit 4 | -------------------------------------------------------------------------------- /tests/octave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/octave/README.md -------------------------------------------------------------------------------- /tests/octave/run_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/octave/run_test.m -------------------------------------------------------------------------------- /tests/results/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/tests/results/README.txt -------------------------------------------------------------------------------- /win/Audacity.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/win/Audacity.exe.manifest -------------------------------------------------------------------------------- /win/Inno_Setup_Wizard/FirstTimeModel.ini: -------------------------------------------------------------------------------- 1 | [FromInno] 2 | 3 | -------------------------------------------------------------------------------- /win/audacity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/win/audacity.ico -------------------------------------------------------------------------------- /win/audacity.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/win/audacity.rc -------------------------------------------------------------------------------- /win/darkaudacity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/win/darkaudacity.ico -------------------------------------------------------------------------------- /win/resetPrefsRenamed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Binaergewitter/audiocity/HEAD/win/resetPrefsRenamed.txt --------------------------------------------------------------------------------