Skip to content

Commit

Permalink
main : a basic upmixer that takes in stereo and outputs left/right/ce…
Browse files Browse the repository at this point in the history
…ntre
  • Loading branch information
my1e5 committed Aug 15, 2022
1 parent 9f9c12f commit ff238c9
Show file tree
Hide file tree
Showing 48 changed files with 915 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Builds
*/Builds

# Prerequisites
*.d

Expand Down
58 changes: 58 additions & 0 deletions BasicUpmixer/BasicUpmixer.jucer
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="qPmYS5" name="BasicUpmixer" projectType="audioplug" useAppConfig="0"
addUsingNamespaceToJuceHeader="0" displaySplashScreen="1" jucerFormatVersion="1"
companyWebsite=" " bundleIdentifier=" " pluginName="Basic Upmixer"
pluginDesc="A stereo to left/right/centre upmixer" pluginManufacturer="my1e5"
pluginManufacturerCode="My1e" pluginCode="My1e" aaxIdentifier="my1e5.BasicUpmixer"
companyName="my1e5">
<MAINGROUP id="cbzfLM" name="BasicUpmixer">
<GROUP id="{F43680A1-6D88-5F8C-67FD-010ACF185715}" name="Source">
<FILE id="rmxZYZ" name="PluginProcessor.cpp" compile="1" resource="0"
file="Source/PluginProcessor.cpp"/>
<FILE id="vaRlg3" name="PluginProcessor.h" compile="0" resource="0"
file="Source/PluginProcessor.h"/>
<FILE id="Gfio1F" name="PluginEditor.cpp" compile="1" resource="0"
file="Source/PluginEditor.cpp"/>
<FILE id="DorS3o" name="PluginEditor.h" compile="0" resource="0" file="Source/PluginEditor.h"/>
</GROUP>
</MAINGROUP>
<JUCEOPTIONS JUCE_STRICT_REFCOUNTEDPOINTER="1" JUCE_VST3_CAN_REPLACE_VST2="0"/>
<EXPORTFORMATS>
<VS2019 targetFolder="Builds/VisualStudio2019">
<CONFIGURATIONS>
<CONFIGURATION isDebug="1" name="Debug" targetName="BasicUpmixer"/>
<CONFIGURATION isDebug="0" name="Release" targetName="BasicUpmixer"/>
</CONFIGURATIONS>
<MODULEPATHS>
<MODULEPATH id="juce_audio_basics" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_audio_devices" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_audio_formats" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_audio_plugin_client" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_audio_processors" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_audio_utils" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_core" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_data_structures" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_events" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_graphics" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_gui_basics" path="../../../JUCE/modules"/>
<MODULEPATH id="juce_gui_extra" path="../../../JUCE/modules"/>
</MODULEPATHS>
</VS2019>
</EXPORTFORMATS>
<MODULES>
<MODULE id="juce_audio_basics" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_audio_devices" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_audio_formats" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="0"
useGlobalPath="1"/>
<MODULE id="juce_audio_processors" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_audio_utils" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_core" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_data_structures" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_events" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_graphics" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
<MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0" useGlobalPath="1"/>
</MODULES>
</JUCERPROJECT>
48 changes: 48 additions & 0 deletions BasicUpmixer/JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
This is the header file that your files should include in order to get all the
JUCE library headers. You should avoid including the JUCE headers directly in
your own source files, because that wouldn't pick up the correct configuration
options for your app.
*/

#pragma once


#include <juce_audio_basics/juce_audio_basics.h>
#include <juce_audio_devices/juce_audio_devices.h>
#include <juce_audio_formats/juce_audio_formats.h>
#include <juce_audio_plugin_client/juce_audio_plugin_client.h>
#include <juce_audio_processors/juce_audio_processors.h>
#include <juce_audio_utils/juce_audio_utils.h>
#include <juce_core/juce_core.h>
#include <juce_data_structures/juce_data_structures.h>
#include <juce_events/juce_events.h>
#include <juce_graphics/juce_graphics.h>
#include <juce_gui_basics/juce_gui_basics.h>
#include <juce_gui_extra/juce_gui_extra.h>


#if defined (JUCE_PROJUCER_VERSION) && JUCE_PROJUCER_VERSION < JUCE_VERSION
/** If you've hit this error then the version of the Projucer that was used to generate this project is
older than the version of the JUCE modules being included. To fix this error, re-save your project
using the latest version of the Projucer or, if you aren't using the Projucer to manage your project,
remove the JUCE_PROJUCER_VERSION define.
*/
#error "This project was last saved using an outdated version of the Projucer! Re-save this project with the latest version to fix this error."
#endif


#if ! JUCE_DONT_DECLARE_PROJECTINFO
namespace ProjectInfo
{
const char* const projectName = "BasicUpmixer";
const char* const companyName = "my1e5";
const char* const versionString = "1.0.0";
const int versionNumber = 0x10000;
}
#endif
162 changes: 162 additions & 0 deletions BasicUpmixer/JuceLibraryCode/JucePluginDefines.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/

#pragma once

//==============================================================================
// Audio plugin settings..

#ifndef JucePlugin_Build_VST
#define JucePlugin_Build_VST 0
#endif
#ifndef JucePlugin_Build_VST3
#define JucePlugin_Build_VST3 1
#endif
#ifndef JucePlugin_Build_AU
#define JucePlugin_Build_AU 1
#endif
#ifndef JucePlugin_Build_AUv3
#define JucePlugin_Build_AUv3 0
#endif
#ifndef JucePlugin_Build_AAX
#define JucePlugin_Build_AAX 0
#endif
#ifndef JucePlugin_Build_Standalone
#define JucePlugin_Build_Standalone 1
#endif
#ifndef JucePlugin_Build_Unity
#define JucePlugin_Build_Unity 0
#endif
#ifndef JucePlugin_Build_LV2
#define JucePlugin_Build_LV2 0
#endif
#ifndef JucePlugin_Enable_IAA
#define JucePlugin_Enable_IAA 0
#endif
#ifndef JucePlugin_Enable_ARA
#define JucePlugin_Enable_ARA 0
#endif
#ifndef JucePlugin_Name
#define JucePlugin_Name "Basic Upmixer"
#endif
#ifndef JucePlugin_Desc
#define JucePlugin_Desc "A stereo to left/right/centre upmixer"
#endif
#ifndef JucePlugin_Manufacturer
#define JucePlugin_Manufacturer "my1e5"
#endif
#ifndef JucePlugin_ManufacturerWebsite
#define JucePlugin_ManufacturerWebsite " "
#endif
#ifndef JucePlugin_ManufacturerEmail
#define JucePlugin_ManufacturerEmail ""
#endif
#ifndef JucePlugin_ManufacturerCode
#define JucePlugin_ManufacturerCode 0x4d793165
#endif
#ifndef JucePlugin_PluginCode
#define JucePlugin_PluginCode 0x4d793165
#endif
#ifndef JucePlugin_IsSynth
#define JucePlugin_IsSynth 0
#endif
#ifndef JucePlugin_WantsMidiInput
#define JucePlugin_WantsMidiInput 0
#endif
#ifndef JucePlugin_ProducesMidiOutput
#define JucePlugin_ProducesMidiOutput 0
#endif
#ifndef JucePlugin_IsMidiEffect
#define JucePlugin_IsMidiEffect 0
#endif
#ifndef JucePlugin_EditorRequiresKeyboardFocus
#define JucePlugin_EditorRequiresKeyboardFocus 0
#endif
#ifndef JucePlugin_Version
#define JucePlugin_Version 1.0.0
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x10000
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "1.0.0"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
#endif
#ifndef JucePlugin_VSTCategory
#define JucePlugin_VSTCategory kPlugCategEffect
#endif
#ifndef JucePlugin_Vst3Category
#define JucePlugin_Vst3Category "Fx"
#endif
#ifndef JucePlugin_AUMainType
#define JucePlugin_AUMainType 'aufx'
#endif
#ifndef JucePlugin_AUSubType
#define JucePlugin_AUSubType JucePlugin_PluginCode
#endif
#ifndef JucePlugin_AUExportPrefix
#define JucePlugin_AUExportPrefix BasicUpmixerAU
#endif
#ifndef JucePlugin_AUExportPrefixQuoted
#define JucePlugin_AUExportPrefixQuoted "BasicUpmixerAU"
#endif
#ifndef JucePlugin_AUManufacturerCode
#define JucePlugin_AUManufacturerCode JucePlugin_ManufacturerCode
#endif
#ifndef JucePlugin_CFBundleIdentifier
#define JucePlugin_CFBundleIdentifier
#endif
#ifndef JucePlugin_AAXIdentifier
#define JucePlugin_AAXIdentifier my1e5.BasicUpmixer
#endif
#ifndef JucePlugin_AAXManufacturerCode
#define JucePlugin_AAXManufacturerCode JucePlugin_ManufacturerCode
#endif
#ifndef JucePlugin_AAXProductId
#define JucePlugin_AAXProductId JucePlugin_PluginCode
#endif
#ifndef JucePlugin_AAXCategory
#define JucePlugin_AAXCategory 0
#endif
#ifndef JucePlugin_AAXDisableBypass
#define JucePlugin_AAXDisableBypass 0
#endif
#ifndef JucePlugin_AAXDisableMultiMono
#define JucePlugin_AAXDisableMultiMono 0
#endif
#ifndef JucePlugin_IAAType
#define JucePlugin_IAAType 0x61757278
#endif
#ifndef JucePlugin_IAASubType
#define JucePlugin_IAASubType JucePlugin_PluginCode
#endif
#ifndef JucePlugin_IAAName
#define JucePlugin_IAAName "my1e5: Basic Upmixer"
#endif
#ifndef JucePlugin_VSTNumMidiInputs
#define JucePlugin_VSTNumMidiInputs 16
#endif
#ifndef JucePlugin_VSTNumMidiOutputs
#define JucePlugin_VSTNumMidiOutputs 16
#endif
#ifndef JucePlugin_ARAContentTypes
#define JucePlugin_ARAContentTypes 0
#endif
#ifndef JucePlugin_ARATransformationFlags
#define JucePlugin_ARATransformationFlags 0
#endif
#ifndef JucePlugin_ARAFactoryID
#define JucePlugin_ARAFactoryID "com.my1e5.BasicUpmixer.factory"
#endif
#ifndef JucePlugin_ARADocumentArchiveID
#define JucePlugin_ARADocumentArchiveID "com.my1e5.BasicUpmixer.aradocumentarchive.1.0.0"
#endif
#ifndef JucePlugin_ARACompatibleArchiveIDs
#define JucePlugin_ARACompatibleArchiveIDs ""
#endif
12 changes: 12 additions & 0 deletions BasicUpmixer/JuceLibraryCode/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

Important Note!!
================

The purpose of this folder is to contain files that are auto-generated by the Projucer,
and ALL files in this folder will be mercilessly DELETED and completely re-written whenever
the Projucer saves your project.

Therefore, it's a bad idea to make any manual changes to the files in here, or to
put any of your own files in here if you don't want to lose them. (Of course you may choose
to add the folder's contents to your version-control system so that you can re-merge your own
modifications after the Projucer has saved its changes).
8 changes: 8 additions & 0 deletions BasicUpmixer/JuceLibraryCode/include_juce_audio_basics.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/

#include <juce_audio_basics/juce_audio_basics.cpp>
8 changes: 8 additions & 0 deletions BasicUpmixer/JuceLibraryCode/include_juce_audio_basics.mm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_basics/juce_audio_basics.mm>
8 changes: 8 additions & 0 deletions BasicUpmixer/JuceLibraryCode/include_juce_audio_devices.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/

#include <juce_audio_devices/juce_audio_devices.cpp>
8 changes: 8 additions & 0 deletions BasicUpmixer/JuceLibraryCode/include_juce_audio_devices.mm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_devices/juce_audio_devices.mm>
8 changes: 8 additions & 0 deletions BasicUpmixer/JuceLibraryCode/include_juce_audio_formats.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/

#include <juce_audio_formats/juce_audio_formats.cpp>
8 changes: 8 additions & 0 deletions BasicUpmixer/JuceLibraryCode/include_juce_audio_formats.mm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_formats/juce_audio_formats.mm>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/

#include <juce_audio_plugin_client/juce_audio_plugin_client_AAX.cpp>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_plugin_client/juce_audio_plugin_client_AAX.mm>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
*/

#include <juce_audio_plugin_client/juce_audio_plugin_client_ARA.cpp>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_plugin_client_AU.r>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_plugin_client/juce_audio_plugin_client_AU_1.mm>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!

*/

#include <juce_audio_plugin_client/juce_audio_plugin_client_AU_2.mm>
Loading

0 comments on commit ff238c9

Please sign in to comment.