add set_eq_mid_hz and set_eq_treb_hz

This commit is contained in:
Tomasz Moń
2009-02-02 11:34:08 +01:00
parent 29ed4b1e09
commit 216245970f
5 changed files with 168 additions and 11 deletions

10
gdigi.h
View File

@@ -93,6 +93,13 @@ enum {
#define DIST_MP_TONE 0x0E
#define DIST_MP_VOLUME 0x0F
enum {
EQ_TYPE_BRIGHT = 0,
EQ_TYPE_MIDBOOST,
EQ_TYPE_SCOOP,
EQ_TYPE_WARM
};
enum {
NOISEGATE_GATE = 0,
NOISEGATE_SWELL
@@ -356,11 +363,14 @@ void set_dist_type(struct usb_dev_handle *handle, int type);
void set_dist_option(struct usb_dev_handle *handle, char option, int value);
void set_dist_on_off(struct usb_dev_handle *handle, gboolean val);
void set_preset_level(struct usb_dev_handle *handle, int level);
void set_eq_type(struct usb_dev_handle *handle, int type);
void set_eq_gain(struct usb_dev_handle *handle, int x);
void set_eq_level(struct usb_dev_handle *handle, int x);
void set_eq_bass(struct usb_dev_handle *handle, int x);
void set_eq_mid(struct usb_dev_handle *handle, int x);
void set_eq_mid_hz(struct usb_dev_handle *handle, int x);
void set_eq_treble(struct usb_dev_handle *handle, int x);
void set_eq_treb_hz(struct usb_dev_handle *handle, int x);
void set_eq_on_off(struct usb_dev_handle *handle, gboolean val);
void set_noisegate_type(struct usb_dev_handle *handle, int type);
void set_gate_option(struct usb_dev_handle *handle, char option, int x);