Merge pull request #195 from derfian/libao-compiler-warnings

Remove compiler warnings from rdpsnd_libao
This commit is contained in:
Henrik Andersson 2017-11-15 07:57:18 +01:00 committed by GitHub
commit df73c35ca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,10 @@ void libao_play(void);
void void
libao_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv) libao_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv)
{ {
UNUSED(n);
UNUSED(rfds);
UNUSED(tv);
/* We need to be called rather often... */ /* We need to be called rather often... */
if (o_device != NULL && !rdpsnd_queue_empty()) if (o_device != NULL && !rdpsnd_queue_empty())
FD_SET(0, wfds); FD_SET(0, wfds);
@ -49,6 +53,9 @@ libao_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv)
void void
libao_check_fds(fd_set * rfds, fd_set * wfds) libao_check_fds(fd_set * rfds, fd_set * wfds)
{ {
UNUSED(rfds);
UNUSED(wfds);
if (o_device == NULL) if (o_device == NULL)
return; return;
@ -143,7 +150,7 @@ libao_play(void)
STREAM out; STREAM out;
int len; int len;
static long prev_s, prev_us; static long prev_s, prev_us;
unsigned int duration; int duration;
struct timeval tv; struct timeval tv;
int next_tick; int next_tick;