mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
update pipe source for glitch-free, too
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2418 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
8baa1a46e3
commit
9c48ed116c
2 changed files with 3 additions and 5 deletions
|
|
@ -230,7 +230,6 @@ int pa__init(pa_module*m) {
|
||||||
pa_sample_spec ss;
|
pa_sample_spec ss;
|
||||||
pa_channel_map map;
|
pa_channel_map map;
|
||||||
pa_modargs *ma;
|
pa_modargs *ma;
|
||||||
char *t;
|
|
||||||
struct pollfd *pollfd;
|
struct pollfd *pollfd;
|
||||||
pa_sink_new_data data;
|
pa_sink_new_data data;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,6 +160,7 @@ static void thread_func(void *userdata) {
|
||||||
goto finish;
|
goto finish;
|
||||||
|
|
||||||
pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
|
pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
|
||||||
|
|
||||||
if (pollfd->revents & ~POLLIN) {
|
if (pollfd->revents & ~POLLIN) {
|
||||||
pa_log("FIFO shutdown.");
|
pa_log("FIFO shutdown.");
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
@ -182,7 +183,6 @@ int pa__init(pa_module*m) {
|
||||||
pa_sample_spec ss;
|
pa_sample_spec ss;
|
||||||
pa_channel_map map;
|
pa_channel_map map;
|
||||||
pa_modargs *ma;
|
pa_modargs *ma;
|
||||||
char *t;
|
|
||||||
struct pollfd *pollfd;
|
struct pollfd *pollfd;
|
||||||
pa_source_new_data data;
|
pa_source_new_data data;
|
||||||
|
|
||||||
|
|
@ -207,7 +207,7 @@ int pa__init(pa_module*m) {
|
||||||
u->rtpoll = pa_rtpoll_new();
|
u->rtpoll = pa_rtpoll_new();
|
||||||
pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll);
|
pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll);
|
||||||
|
|
||||||
u->filename = pa_xstrdup(pa_modargs_get_value(ma, "file", DEFAULT_FILE_NAME));
|
u->filename = pa_runtime_path(pa_modargs_get_value(ma, "file", DEFAULT_FILE_NAME));
|
||||||
|
|
||||||
mkfifo(u->filename, 0666);
|
mkfifo(u->filename, 0666);
|
||||||
if ((u->fd = open(u->filename, O_RDWR|O_NOCTTY)) < 0) {
|
if ((u->fd = open(u->filename, O_RDWR|O_NOCTTY)) < 0) {
|
||||||
|
|
@ -233,8 +233,7 @@ int pa__init(pa_module*m) {
|
||||||
data.module = m;
|
data.module = m;
|
||||||
pa_source_new_data_set_name(&data, pa_modargs_get_value(ma, "source_name", DEFAULT_SOURCE_NAME));
|
pa_source_new_data_set_name(&data, pa_modargs_get_value(ma, "source_name", DEFAULT_SOURCE_NAME));
|
||||||
pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->filename);
|
pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->filename);
|
||||||
pa_proplist_sets(data.proplist, PA_PROP_DEVICE_DESCRIPTION, t = pa_sprintf_malloc("Unix FIFO source %s", u->filename));
|
pa_proplist_setf(data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Unix FIFO source %s", u->filename);
|
||||||
pa_xfree(t);
|
|
||||||
pa_source_new_data_set_sample_spec(&data, &ss);
|
pa_source_new_data_set_sample_spec(&data, &ss);
|
||||||
pa_source_new_data_set_channel_map(&data, &map);
|
pa_source_new_data_set_channel_map(&data, &map);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue