int state=GPOINTER_TO_INT(data);
gchar text[32];
gint i=1;
+ gint j;
switch(state) {
case UPDATE_NEW:
gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(newAction));
gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(newAction),NULL,"NONE");
gtk_combo_box_set_active (GTK_COMBO_BOX(newAction),0);
+ if(thisEvent==MIDI_PITCH || thisEvent==MIDI_NOTE) {
+ i=1;
+ j=0;
+ while(ActionTable[i].action!=ACTION_NONE) {
+ if(ActionTable[i].type&MIDI_KEY) {
+ gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(newAction),NULL,ActionTable[i].str);
+ if(ActionTable[i].action==thisAction) {
+ gtk_combo_box_set_active(GTK_COMBO_BOX(newAction),j);
+ }
+ j++;
+ }
+ i++;
+ }
+
+ }
sprintf(text,"%d",thisVal);
gtk_label_set_text(GTK_LABEL(newVal),text);
sprintf(text,"%d",thisMin);
sample_spec.rate=48000;
sample_spec.channels=2;
sample_spec.format=PA_SAMPLE_FLOAT32NE;
+
char stream_id[16];
sprintf(stream_id,"RX-%d",rx->id);
g_print("%s (after restore): rx=%p id=%d audio_buffer_size=%d local_audio=%d\n",__FUNCTION__,rx,rx->id,rx->audio_buffer_size,rx->local_audio);
- //rx->audio_buffer=g_new(guchar,rx->audio_buffer_size);
int scale=rx->sample_rate/48000;
rx->output_samples=rx->buffer_size/scale;
rx->audio_output_buffer=g_new(gdouble,2*rx->output_samples);