diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-06-23 20:03:30 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-06-23 20:03:30 +0000 |
commit | 780f736547616e4e06941d94e77f456abca12a9c (patch) | |
tree | 85f1ade6a0da1c297cc1566bc5702080f4a00e9c /src | |
parent | f0616367b32fbe993c4d0edb0457b10d241137a2 (diff) |
don't handle underrun special
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1489 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/module-pipe-sink.c | 59 |
1 files changed, 27 insertions, 32 deletions
diff --git a/src/modules/module-pipe-sink.c b/src/modules/module-pipe-sink.c index 216e42ac..e27a237e 100644 --- a/src/modules/module-pipe-sink.c +++ b/src/modules/module-pipe-sink.c @@ -115,15 +115,12 @@ static void thread_func(void *userdata) { struct userdata *u = userdata; struct pollfd pollfd[POLLFD_MAX]; - int underrun = 0; int write_type = 0; pa_assert(u); pa_log_debug("Thread starting up"); - pa_memchunk_reset(&u->memchunk); - memset(&pollfd, 0, sizeof(pollfd)); pollfd[POLLFD_ASYNCQ].fd = pa_asyncmsgq_get_fd(u->asyncmsgq); @@ -153,56 +150,53 @@ static void thread_func(void *userdata) { /* Render some data and write it to the fifo */ - if (u->sink->thread_info.state == PA_SINK_RUNNING && (pollfd[POLLFD_FIFO].revents || underrun)) { + if (u->sink->thread_info.state == PA_SINK_RUNNING && pollfd[POLLFD_FIFO].revents) { + ssize_t l; + void *p; if (u->memchunk.length <= 0) pa_sink_render(u->sink, PIPE_BUF, &u->memchunk); - underrun = u->memchunk.length <= 0; + pa_assert(u->memchunk.length > 0); - if (!underrun) { - ssize_t l; - void *p; + p = pa_memblock_acquire(u->memchunk.memblock); + l = pa_write(u->fd, (uint8_t*) p + u->memchunk.index, u->memchunk.length, &write_type); + pa_memblock_release(u->memchunk.memblock); - p = pa_memblock_acquire(u->memchunk.memblock); - l = pa_write(u->fd, (uint8_t*) p + u->memchunk.index, u->memchunk.length, &write_type); - pa_memblock_release(u->memchunk.memblock); + pa_assert(l != 0); - pa_assert(l != 0); - - if (l < 0) { + if (l < 0) { - if (errno == EINTR) - continue; - else if (errno != EAGAIN) { - pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno)); - goto fail; - } - - } else { + if (errno == EINTR) + continue; + else if (errno != EAGAIN) { + pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno)); + goto fail; + } - u->memchunk.index += l; - u->memchunk.length -= l; + } else { - if (u->memchunk.length <= 0) { - pa_memblock_unref(u->memchunk.memblock); - pa_memchunk_reset(&u->memchunk); - } + u->memchunk.index += l; + u->memchunk.length -= l; - pollfd[POLLFD_FIFO].revents = 0; - continue; + if (u->memchunk.length <= 0) { + pa_memblock_unref(u->memchunk.memblock); + pa_memchunk_reset(&u->memchunk); } + + pollfd[POLLFD_FIFO].revents = 0; + continue; } } - pollfd[POLLFD_FIFO].events = (u->sink->thread_info.state == PA_SINK_RUNNING && !underrun) ? POLLOUT : 0; + pollfd[POLLFD_FIFO].events = u->sink->thread_info.state == PA_SINK_RUNNING ? POLLOUT : 0; /* Hmm, nothing to do. Let's sleep */ if (pa_asyncmsgq_before_poll(u->asyncmsgq) < 0) continue; -/* pa_log("polling for %u (underrun=%i)", pollfd[POLLFD_FIFO].events, underrun); */ +/* pa_log("polling for %u", pollfd[POLLFD_FIFO].events); */ r = poll(pollfd, POLLFD_MAX, -1); /* pa_log("polling got %u", r > 0 ? pollfd[POLLFD_FIFO].revents : 0); */ @@ -260,6 +254,7 @@ int pa__init(pa_core *c, pa_module*m) { u->core = c; u->module = m; m->userdata = u; + pa_memchunk_reset(&u->memchunk); pa_assert_se(u->asyncmsgq = pa_asyncmsgq_new(0)); |