• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef ALSA_STREAM_H
2 #define ALSA_STREAM_H
3 
4 #include <stdio.h>
5 #include <sys/time.h>
6 
7 int alsa_thread_startup(const char *pdevice, const char *cdevice,
8 			int latency, FILE *__error_fp, int __verbose);
9 void alsa_thread_stop(void);
10 int alsa_thread_is_running(void);
11 void alsa_thread_timestamp(struct timeval *tv);
12 #endif
13