├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ ├── auto-format.yml │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── installers ├── mac │ ├── ChowPhaser.pkgproj │ ├── Intro.txt │ └── build_mac_installer.sh └── windows │ ├── ChowPhaser_Install_Script.iss │ └── build_win_installer.sh ├── mac_builds.sh ├── modules ├── CMakeLists.txt └── cmake │ ├── SubprojectVersion.cmake │ └── WarningFlags.cmake ├── res ├── CMakeLists.txt ├── RobotoCondensed-Bold.ttf ├── RobotoCondensed-Regular.ttf ├── gui.xml ├── knob.svg ├── pointer.svg ├── screenshot_mono.PNG ├── screenshot_stereo.PNG └── stereo_gui.xml ├── sim ├── ChowPhaser_Writeup.py ├── LDR.py ├── fb_section.py └── mod_section.py ├── src ├── CMakeLists.txt ├── ChowPhaserPlugin.cpp ├── ChowPhaserPlugin.h ├── ChowPhaserStereo.cpp ├── ChowPhaserStereo.h ├── FBSection.h ├── IIRFilter.h ├── PhaseSection.h ├── PluginBase.h ├── SingleChannelPhaser.cpp ├── SingleChannelPhaser.h ├── TanhIIRFilter.h └── gui │ ├── CMakeLists.txt │ ├── InfoComp.cpp │ ├── InfoComp.h │ ├── LightMeter.cpp │ ├── LightMeter.h │ ├── MyLNF.cpp │ ├── MyLNF.h │ ├── SliderLink.h │ ├── TitleComp.cpp │ ├── TitleComp.h │ ├── TooltipComp.cpp │ └── TooltipComp.h ├── validate.sh └── win_builds.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/auto-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/.github/workflows/auto-format.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/README.md -------------------------------------------------------------------------------- /installers/mac/ChowPhaser.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/installers/mac/ChowPhaser.pkgproj -------------------------------------------------------------------------------- /installers/mac/Intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/installers/mac/Intro.txt -------------------------------------------------------------------------------- /installers/mac/build_mac_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/installers/mac/build_mac_installer.sh -------------------------------------------------------------------------------- /installers/windows/ChowPhaser_Install_Script.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/installers/windows/ChowPhaser_Install_Script.iss -------------------------------------------------------------------------------- /installers/windows/build_win_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/installers/windows/build_win_installer.sh -------------------------------------------------------------------------------- /mac_builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/mac_builds.sh -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/cmake/SubprojectVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/modules/cmake/SubprojectVersion.cmake -------------------------------------------------------------------------------- /modules/cmake/WarningFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/modules/cmake/WarningFlags.cmake -------------------------------------------------------------------------------- /res/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/CMakeLists.txt -------------------------------------------------------------------------------- /res/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /res/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /res/gui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/gui.xml -------------------------------------------------------------------------------- /res/knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/knob.svg -------------------------------------------------------------------------------- /res/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/pointer.svg -------------------------------------------------------------------------------- /res/screenshot_mono.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/screenshot_mono.PNG -------------------------------------------------------------------------------- /res/screenshot_stereo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/screenshot_stereo.PNG -------------------------------------------------------------------------------- /res/stereo_gui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/res/stereo_gui.xml -------------------------------------------------------------------------------- /sim/ChowPhaser_Writeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/sim/ChowPhaser_Writeup.py -------------------------------------------------------------------------------- /sim/LDR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/sim/LDR.py -------------------------------------------------------------------------------- /sim/fb_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/sim/fb_section.py -------------------------------------------------------------------------------- /sim/mod_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/sim/mod_section.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ChowPhaserPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/ChowPhaserPlugin.cpp -------------------------------------------------------------------------------- /src/ChowPhaserPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/ChowPhaserPlugin.h -------------------------------------------------------------------------------- /src/ChowPhaserStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/ChowPhaserStereo.cpp -------------------------------------------------------------------------------- /src/ChowPhaserStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/ChowPhaserStereo.h -------------------------------------------------------------------------------- /src/FBSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/FBSection.h -------------------------------------------------------------------------------- /src/IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/IIRFilter.h -------------------------------------------------------------------------------- /src/PhaseSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/PhaseSection.h -------------------------------------------------------------------------------- /src/PluginBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/PluginBase.h -------------------------------------------------------------------------------- /src/SingleChannelPhaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/SingleChannelPhaser.cpp -------------------------------------------------------------------------------- /src/SingleChannelPhaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/SingleChannelPhaser.h -------------------------------------------------------------------------------- /src/TanhIIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/TanhIIRFilter.h -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/InfoComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/InfoComp.cpp -------------------------------------------------------------------------------- /src/gui/InfoComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/InfoComp.h -------------------------------------------------------------------------------- /src/gui/LightMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/LightMeter.cpp -------------------------------------------------------------------------------- /src/gui/LightMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/LightMeter.h -------------------------------------------------------------------------------- /src/gui/MyLNF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/MyLNF.cpp -------------------------------------------------------------------------------- /src/gui/MyLNF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/MyLNF.h -------------------------------------------------------------------------------- /src/gui/SliderLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/SliderLink.h -------------------------------------------------------------------------------- /src/gui/TitleComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/TitleComp.cpp -------------------------------------------------------------------------------- /src/gui/TitleComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/TitleComp.h -------------------------------------------------------------------------------- /src/gui/TooltipComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/TooltipComp.cpp -------------------------------------------------------------------------------- /src/gui/TooltipComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/src/gui/TooltipComp.h -------------------------------------------------------------------------------- /validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/validate.sh -------------------------------------------------------------------------------- /win_builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/ChowPhaser/HEAD/win_builds.sh --------------------------------------------------------------------------------