Subversion Repositories DIN Is Noise

Rev

Rev 2097 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2097 Rev 2297
Line 14... Line 14...
14
#include <vector>
14
#include <vector>
15
#include <string>
15
#include <string>
16
16
17
typedef float sample_t;
17
typedef float sample_t;
18
18
-
 
19
19
struct audio_out {
20
struct audio_out {
20
21
21
  enum {INVALID=-1};
22
  enum {INVALID=-1};
22
23
23
  // audio devices
24
  // audio devices
Line 86... Line 87...
86
87
87
extern audio_out aout;
88
extern audio_out aout;
88
extern int SAMPLE_RATE;
89
extern int SAMPLE_RATE;
89
extern float SAMPLE_DURATION;
90
extern float SAMPLE_DURATION;
90
91
-
 
92
struct console;
-
 
93
console& operator<< (console& c, const audio_out& ao);
-
 
94
91
#endif
95
#endif