comparison src/crossfade/crossfade.c @ 3136:a9593b76cf19

crossfade: change about dialog to use audacious_info_dialog()
author Michal Lipski <tallica@o2.pl>
date Thu, 07 May 2009 15:31:32 +0200
parents 354e90c81253
children 40e5d243971e
comparison
equal deleted inserted replaced
3135:85b7dcee821f 3136:a9593b76cf19
151 gboolean opened; /* TRUE between open_audio() and close_audio() */ 151 gboolean opened; /* TRUE between open_audio() and close_audio() */
152 static gboolean paused; /* TRUE: no playback (but still filling buffer) */ 152 static gboolean paused; /* TRUE: no playback (but still filling buffer) */
153 static gboolean stopped; /* TRUE: stop buffer thread ASAP */ 153 static gboolean stopped; /* TRUE: stop buffer thread ASAP */
154 static gboolean eop; /* TRUE: wait until buffer is empty then sync() */ 154 static gboolean eop; /* TRUE: wait until buffer is empty then sync() */
155 155
156 #ifdef HAVE_OSS /* avoid 'defined but not used' compiler warning */
157 static plugin_config_t default_op_config = DEFAULT_OP_CONFIG;
158 #endif
159 static plugin_config_t the_op_config = DEFAULT_OP_CONFIG; 156 static plugin_config_t the_op_config = DEFAULT_OP_CONFIG;
160 OutputPlugin *the_op = NULL; 157 OutputPlugin *the_op = NULL;
161 gint the_rate = 44100; 158 gint the_rate = 44100;
162 159
163 static gboolean input_playing = FALSE; 160 static gboolean input_playing = FALSE;