mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
Completed mixer API. Improved iterators. Renamed control values struct. Rewritten simple elements implementation
This commit is contained in:
parent
f7fbb6ce1a
commit
a189f2d0ec
5 changed files with 12 additions and 12 deletions
|
|
@ -19,11 +19,11 @@
|
|||
|
||||
#include "envy24control.h"
|
||||
|
||||
static snd_ctl_elem_t spdif_master;
|
||||
static snd_ctl_elem_t word_clock_sync;
|
||||
static snd_ctl_elem_t volume_rate;
|
||||
static snd_ctl_elem_t spdif_input;
|
||||
static snd_ctl_elem_t spdif_output;
|
||||
static snd_ctl_elem_value_t spdif_master;
|
||||
static snd_ctl_elem_value_t word_clock_sync;
|
||||
static snd_ctl_elem_value_t volume_rate;
|
||||
static snd_ctl_elem_value_t spdif_input;
|
||||
static snd_ctl_elem_value_t spdif_output;
|
||||
|
||||
#define toggle_set(widget, state) \
|
||||
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), state);
|
||||
|
|
@ -96,7 +96,7 @@ void master_clock_toggled(GtkWidget *togglebutton, gpointer data)
|
|||
|
||||
gint master_clock_status_timeout_callback(gpointer data)
|
||||
{
|
||||
snd_ctl_elem_t sw;
|
||||
snd_ctl_elem_value_t sw;
|
||||
int err;
|
||||
|
||||
if (card_eeprom.subvendor != ICE1712_SUBDEVICE_DELTA1010)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue