AudioCommon: Added Granular Synthesis

This commit is contained in:
Sam Belliveau
2025-03-02 20:19:20 -05:00
committed by Jordan Woyak
parent e82f03b825
commit f09ba10daa
51 changed files with 387 additions and 7928 deletions

View File

@ -18,6 +18,7 @@ class QRadioButton;
class QSlider;
class QSpinBox;
class SettingsWindow;
class ConfigBool;
class AudioPane final : public QWidget
{
@ -71,12 +72,7 @@ private:
QComboBox* m_wasapi_device_combo;
#endif
// Audio Stretching
QCheckBox* m_stretching_enable;
QLabel* m_stretching_buffer_label;
QSlider* m_stretching_buffer_slider;
QLabel* m_stretching_buffer_indicator;
// Misc Settings
QCheckBox* m_speed_up_mute_enable;
ConfigBool* m_audio_fill_gaps;
ConfigBool* m_speed_up_mute_enable;
};