comparison audacious/input.h @ 890:ed26947bbf57 trunk

[svn] Gapless support. This comes with a few caveats, that I will mention here: 1) It is not really gapless, it just removes any delays caused by resetting the output device. Mileage depends on source performance. However, this commit reduces any gaps I have to a period of time that is unnoticable to me. (Of course, I have a 15k RPM SATA drive too.)
author nenolod
date Mon, 27 Mar 2006 13:05:09 -0800
parents 1c701dfe5098
children 502b369314c1
comparison
equal deleted inserted replaced
889:21e0ef28e318 890:ed26947bbf57
29 struct _InputPluginData { 29 struct _InputPluginData {
30 GList *input_list; 30 GList *input_list;
31 InputPlugin *current_input_plugin; 31 InputPlugin *current_input_plugin;
32 gboolean playing; 32 gboolean playing;
33 gboolean paused; 33 gboolean paused;
34 gboolean stop;
34 GMutex *playback_mutex; 35 GMutex *playback_mutex;
35 }; 36 };
36 37
37 GList *get_input_list(void); 38 GList *get_input_list(void);
38 InputPlugin *get_current_input_plugin(void); 39 InputPlugin *get_current_input_plugin(void);