]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fix MIDI Config to select KEY
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Fri, 12 Mar 2021 09:48:43 +0000 (09:48 +0000)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Fri, 12 Mar 2021 09:48:43 +0000 (09:48 +0000)
midi_menu.c
pulseaudio.c
receiver.c

index adf09cd8e6aef2b67ece43d31c9c178c5ecf636e..4fd8304f5f90749377677af9209cdc23137c2466 100644 (file)
@@ -849,6 +849,7 @@ static int update(void *data) {
   int state=GPOINTER_TO_INT(data);
   gchar text[32];
   gint i=1;
+  gint j;
 
   switch(state) {
     case UPDATE_NEW:
@@ -891,6 +892,21 @@ static int update(void *data) {
       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);
index c08783c5251af82ca59719732d147906a93f82aa..2435907e6c13ff12805b43a67690d2de6b2fd0e2 100644 (file)
@@ -139,6 +139,7 @@ int audio_open_output(RECEIVER *rx) {
     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);
index 0bbaed412f4e94b237d8141a7931cb738fbd82a4..c27749bc2a2bb74d55b27a92d0be5689d35d7dfb 100644 (file)
@@ -1073,7 +1073,6 @@ g_print("%s: id=%d sample_rate=%d\n",__FUNCTION__,rx->id, rx->sample_rate);
 
 
 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);