├── LICENCE.md ├── README.md ├── doc └── img │ ├── hi.png │ ├── lag.png │ └── lo.png ├── ezdynamics ├── dynamics.hpp ├── dynamics_base.hpp ├── level_detector.hpp └── utils.hpp └── tests ├── Source.cpp ├── testutils.cpp └── testutils.h /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/doc/img/hi.png -------------------------------------------------------------------------------- /doc/img/lag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/doc/img/lag.png -------------------------------------------------------------------------------- /doc/img/lo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/doc/img/lo.png -------------------------------------------------------------------------------- /ezdynamics/dynamics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/ezdynamics/dynamics.hpp -------------------------------------------------------------------------------- /ezdynamics/dynamics_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/ezdynamics/dynamics_base.hpp -------------------------------------------------------------------------------- /ezdynamics/level_detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/ezdynamics/level_detector.hpp -------------------------------------------------------------------------------- /ezdynamics/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/ezdynamics/utils.hpp -------------------------------------------------------------------------------- /tests/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/tests/Source.cpp -------------------------------------------------------------------------------- /tests/testutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/tests/testutils.cpp -------------------------------------------------------------------------------- /tests/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka89/AudioEzDynamics/HEAD/tests/testutils.h --------------------------------------------------------------------------------