gimp-gap r763 - in branches/gap-2-4: . gap



Author: wolfgangh
Date: Sun Jun 29 11:14:55 2008
New Revision: 763
URL: http://svn.gnome.org/viewvc/gimp-gap?rev=763&view=rev

Log:
endless loop in the Player on attempt to enter a vaild audiofile name.

Modified:
   branches/gap-2-4/ChangeLog
   branches/gap-2-4/gap/gap_player_dialog.c

Modified: branches/gap-2-4/gap/gap_player_dialog.c
==============================================================================
--- branches/gap-2-4/gap/gap_player_dialog.c	(original)
+++ branches/gap-2-4/gap/gap_player_dialog.c	Sun Jun 29 11:14:55 2008
@@ -689,7 +689,12 @@
   gpp->audio_samples    = samples;
 
   p_audio_print_labels(gpp);
-  p_audio_init(gpp);  /* tell ausioserver to go standby for this audiofile */
+
+  /* p_audio_init(gpp) must not be called here.
+   *  becuase it calls p_audio_startup_server and  this will recursive call
+   *  p_audio_filename_changed in an endless loop....
+   * For now the audio_init is done later on 1st attempt to start playback.
+   */
 
 #endif
   return;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]