2006-01-27 16:25:31 +00:00
|
|
|
/* $Id$ */
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2006-01-10 17:51:06 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2006-01-10 17:51:06 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2006-01-10 17:51:06 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
2006-01-19 10:24:49 +00:00
|
|
|
#include <signal.h>
|
2006-01-10 17:51:06 +00:00
|
|
|
#include <stropts.h>
|
|
|
|
|
#include <sys/conf.h>
|
|
|
|
|
#include <sys/audio.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/error.h>
|
|
|
|
|
#include <pulse/mainloop-signal.h>
|
|
|
|
|
#include <pulse/xmalloc.h>
|
2006-02-16 19:19:58 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/iochannel.h>
|
|
|
|
|
#include <pulsecore/sink.h>
|
|
|
|
|
#include <pulsecore/source.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
#include <pulsecore/sample-util.h>
|
|
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/modargs.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
2006-02-16 19:19:58 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
#include "module-solaris-symdef.h"
|
|
|
|
|
|
|
|
|
|
PA_MODULE_AUTHOR("Pierre Ossman")
|
|
|
|
|
PA_MODULE_DESCRIPTION("Solaris Sink/Source")
|
|
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION)
|
2006-04-27 05:41:18 +00:00
|
|
|
PA_MODULE_USAGE(
|
|
|
|
|
"sink_name=<name for the sink> "
|
|
|
|
|
"source_name=<name for the source> "
|
|
|
|
|
"device=<OSS device> record=<enable source?> "
|
|
|
|
|
"playback=<enable sink?> "
|
|
|
|
|
"format=<sample format> "
|
|
|
|
|
"channels=<number of channels> "
|
|
|
|
|
"rate=<sample rate> "
|
|
|
|
|
"buffer_size=<record buffer size> "
|
|
|
|
|
"channel_map=<channel map>")
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
struct userdata {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sink *sink;
|
|
|
|
|
pa_source *source;
|
|
|
|
|
pa_iochannel *io;
|
|
|
|
|
pa_core *core;
|
2006-04-19 14:30:42 +00:00
|
|
|
pa_time_event *timer;
|
|
|
|
|
pa_usec_t poll_timeout;
|
2006-01-19 10:24:49 +00:00
|
|
|
pa_signal_event *sig;
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk memchunk, silence;
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-04-19 15:37:52 +00:00
|
|
|
uint32_t frame_size;
|
2006-01-19 10:24:49 +00:00
|
|
|
uint32_t buffer_size;
|
2006-01-10 17:51:06 +00:00
|
|
|
unsigned int written_bytes, read_bytes;
|
|
|
|
|
|
|
|
|
|
int fd;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_module *module;
|
2006-01-10 17:51:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char* const valid_modargs[] = {
|
|
|
|
|
"sink_name",
|
|
|
|
|
"source_name",
|
|
|
|
|
"device",
|
|
|
|
|
"record",
|
|
|
|
|
"playback",
|
|
|
|
|
"buffer_size",
|
|
|
|
|
"format",
|
|
|
|
|
"rate",
|
|
|
|
|
"channels",
|
2006-04-27 05:41:18 +00:00
|
|
|
"channel_map",
|
2006-01-10 17:51:06 +00:00
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_SINK_NAME "solaris_output"
|
|
|
|
|
#define DEFAULT_SOURCE_NAME "solaris_input"
|
|
|
|
|
#define DEFAULT_DEVICE "/dev/audio"
|
|
|
|
|
|
|
|
|
|
#define CHUNK_SIZE 2048
|
|
|
|
|
|
|
|
|
|
static void update_usage(struct userdata *u) {
|
|
|
|
|
pa_module_set_used(u->module,
|
2006-01-11 01:17:39 +00:00
|
|
|
(u->sink ? pa_idxset_size(u->sink->inputs) : 0) +
|
|
|
|
|
(u->sink ? pa_idxset_size(u->sink->monitor_source->outputs) : 0) +
|
|
|
|
|
(u->source ? pa_idxset_size(u->source->outputs) : 0));
|
2006-01-10 17:51:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void do_write(struct userdata *u) {
|
2006-01-19 10:24:49 +00:00
|
|
|
audio_info_t info;
|
|
|
|
|
int err;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk *memchunk;
|
2006-01-19 10:24:49 +00:00
|
|
|
size_t len;
|
2006-01-10 17:51:06 +00:00
|
|
|
ssize_t r;
|
|
|
|
|
|
|
|
|
|
assert(u);
|
|
|
|
|
|
2006-04-19 14:30:42 +00:00
|
|
|
/* We cannot check pa_iochannel_is_writable() because of our buffer hack */
|
|
|
|
|
if (!u->sink)
|
2006-01-10 17:51:06 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
update_usage(u);
|
|
|
|
|
|
2006-01-19 10:24:49 +00:00
|
|
|
err = ioctl(u->fd, AUDIO_GETINFO, &info);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Since we cannot modify the size of the output buffer we fake it
|
|
|
|
|
* by not filling it more than u->buffer_size.
|
|
|
|
|
*/
|
|
|
|
|
len = u->buffer_size;
|
2006-04-19 15:37:52 +00:00
|
|
|
len -= u->written_bytes - (info.play.samples * u->frame_size);
|
|
|
|
|
|
|
|
|
|
/* The sample counter can sometimes go backwards :( */
|
|
|
|
|
if (len > u->buffer_size)
|
|
|
|
|
len = 0;
|
2006-01-19 10:24:49 +00:00
|
|
|
|
2006-04-19 14:30:42 +00:00
|
|
|
if (len == u->buffer_size)
|
|
|
|
|
pa_log_debug(__FILE__": Solaris buffer underflow!");
|
2006-01-19 10:24:49 +00:00
|
|
|
|
2006-04-19 15:37:52 +00:00
|
|
|
len -= len % u->frame_size;
|
|
|
|
|
|
|
|
|
|
if (len == 0)
|
2006-01-19 10:24:49 +00:00
|
|
|
return;
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
memchunk = &u->memchunk;
|
|
|
|
|
|
|
|
|
|
if (!memchunk->length)
|
2006-01-19 10:24:49 +00:00
|
|
|
if (pa_sink_render(u->sink, len, memchunk) < 0)
|
2006-01-10 17:51:06 +00:00
|
|
|
memchunk = &u->silence;
|
|
|
|
|
|
|
|
|
|
assert(memchunk->memblock);
|
|
|
|
|
assert(memchunk->memblock->data);
|
|
|
|
|
assert(memchunk->length);
|
2006-01-19 10:24:49 +00:00
|
|
|
|
2006-04-19 15:37:52 +00:00
|
|
|
if (memchunk->length < len) {
|
2006-01-19 10:24:49 +00:00
|
|
|
len = memchunk->length;
|
2006-04-19 15:37:52 +00:00
|
|
|
len -= len % u->frame_size;
|
|
|
|
|
assert(len);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-19 10:24:49 +00:00
|
|
|
if ((r = pa_iochannel_write(u->io, (uint8_t*) memchunk->memblock->data + memchunk->index, len)) < 0) {
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": write() failed: %s", pa_cstrerror(errno));
|
2006-01-10 17:51:06 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2006-04-19 15:37:52 +00:00
|
|
|
|
|
|
|
|
assert(r % u->frame_size == 0);
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-04-19 15:37:52 +00:00
|
|
|
if (memchunk != &u->silence) {
|
2006-01-10 17:51:06 +00:00
|
|
|
u->memchunk.index += r;
|
|
|
|
|
u->memchunk.length -= r;
|
|
|
|
|
|
|
|
|
|
if (u->memchunk.length <= 0) {
|
|
|
|
|
pa_memblock_unref(u->memchunk.memblock);
|
|
|
|
|
u->memchunk.memblock = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
u->written_bytes += r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void do_read(struct userdata *u) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk memchunk;
|
2006-01-10 17:51:06 +00:00
|
|
|
int err, l;
|
|
|
|
|
ssize_t r;
|
|
|
|
|
assert(u);
|
|
|
|
|
|
|
|
|
|
if (!u->source || !pa_iochannel_is_readable(u->io))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
update_usage(u);
|
|
|
|
|
|
|
|
|
|
err = ioctl(u->fd, I_NREAD, &l);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
|
|
|
|
memchunk.memblock = pa_memblock_new(l, u->core->memblock_stat);
|
|
|
|
|
assert(memchunk.memblock);
|
|
|
|
|
if ((r = pa_iochannel_read(u->io, memchunk.memblock->data, memchunk.memblock->length)) < 0) {
|
|
|
|
|
pa_memblock_unref(memchunk.memblock);
|
|
|
|
|
if (errno != EAGAIN)
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": read() failed: %s", pa_cstrerror(errno));
|
2006-01-10 17:51:06 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(r <= (ssize_t) memchunk.memblock->length);
|
|
|
|
|
memchunk.length = memchunk.memblock->length = r;
|
|
|
|
|
memchunk.index = 0;
|
|
|
|
|
|
|
|
|
|
pa_source_post(u->source, &memchunk);
|
|
|
|
|
pa_memblock_unref(memchunk.memblock);
|
|
|
|
|
|
|
|
|
|
u->read_bytes += r;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void io_callback(pa_iochannel *io, void*userdata) {
|
2006-01-10 17:51:06 +00:00
|
|
|
struct userdata *u = userdata;
|
|
|
|
|
assert(u);
|
|
|
|
|
do_write(u);
|
|
|
|
|
do_read(u);
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-19 14:30:42 +00:00
|
|
|
static void timer_cb(pa_mainloop_api*a, pa_time_event *e, const struct timeval *tv, void *userdata) {
|
|
|
|
|
struct userdata *u = userdata;
|
|
|
|
|
struct timeval ntv;
|
|
|
|
|
|
|
|
|
|
assert(u);
|
|
|
|
|
|
|
|
|
|
do_write(u);
|
|
|
|
|
|
|
|
|
|
pa_gettimeofday(&ntv);
|
|
|
|
|
pa_timeval_add(&ntv, u->poll_timeout);
|
|
|
|
|
|
|
|
|
|
a->time_restart(e, &ntv);
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-24 10:18:24 +00:00
|
|
|
static void sig_callback(pa_mainloop_api *api, pa_signal_event*e, int sig, void *userdata) {
|
2006-01-19 10:24:49 +00:00
|
|
|
struct userdata *u = userdata;
|
2006-02-27 09:18:18 +00:00
|
|
|
pa_cvolume old_vol;
|
|
|
|
|
|
2006-02-27 09:20:25 +00:00
|
|
|
assert(u);
|
2006-02-27 09:18:18 +00:00
|
|
|
|
2006-02-27 09:20:25 +00:00
|
|
|
if (u->sink) {
|
|
|
|
|
assert(u->sink->get_hw_volume);
|
|
|
|
|
memcpy(&old_vol, &u->sink->hw_volume, sizeof(pa_cvolume));
|
|
|
|
|
if (u->sink->get_hw_volume(u->sink) < 0)
|
|
|
|
|
return;
|
|
|
|
|
if (memcmp(&old_vol, &u->sink->hw_volume, sizeof(pa_cvolume)) != 0) {
|
|
|
|
|
pa_subscription_post(u->sink->core,
|
|
|
|
|
PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE,
|
|
|
|
|
u->sink->index);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (u->source) {
|
|
|
|
|
assert(u->source->get_hw_volume);
|
|
|
|
|
memcpy(&old_vol, &u->source->hw_volume, sizeof(pa_cvolume));
|
|
|
|
|
if (u->source->get_hw_volume(u->source) < 0)
|
|
|
|
|
return;
|
|
|
|
|
if (memcmp(&old_vol, &u->source->hw_volume, sizeof(pa_cvolume)) != 0) {
|
|
|
|
|
pa_subscription_post(u->source->core,
|
|
|
|
|
PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_CHANGE,
|
|
|
|
|
u->source->index);
|
|
|
|
|
}
|
2006-02-27 09:18:18 +00:00
|
|
|
}
|
2006-01-19 10:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_usec_t sink_get_latency_cb(pa_sink *s) {
|
2006-01-10 17:51:06 +00:00
|
|
|
pa_usec_t r = 0;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
int err;
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
assert(s && u && u->sink);
|
|
|
|
|
|
|
|
|
|
err = ioctl(u->fd, AUDIO_GETINFO, &info);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
|
|
|
|
r += pa_bytes_to_usec(u->written_bytes, &s->sample_spec);
|
2006-04-19 15:37:52 +00:00
|
|
|
r -= pa_bytes_to_usec(info.play.samples * u->frame_size, &s->sample_spec);
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if (u->memchunk.memblock)
|
|
|
|
|
r += pa_bytes_to_usec(u->memchunk.length, &s->sample_spec);
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_usec_t source_get_latency_cb(pa_source *s) {
|
2006-01-10 17:51:06 +00:00
|
|
|
pa_usec_t r = 0;
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
int err;
|
|
|
|
|
assert(s && u && u->source);
|
|
|
|
|
|
|
|
|
|
err = ioctl(u->fd, AUDIO_GETINFO, &info);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
2006-04-19 15:37:52 +00:00
|
|
|
r += pa_bytes_to_usec(info.record.samples * u->frame_size, &s->sample_spec);
|
2006-01-10 17:51:06 +00:00
|
|
|
r -= pa_bytes_to_usec(u->read_bytes, &s->sample_spec);
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-20 16:13:10 +00:00
|
|
|
static int sink_get_hw_volume_cb(pa_sink *s) {
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
err = ioctl(u->fd, AUDIO_GETINFO, &info);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
|
|
|
|
pa_cvolume_set(&s->hw_volume, s->hw_volume.channels,
|
|
|
|
|
info.play.gain * PA_VOLUME_NORM / AUDIO_MAX_GAIN);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sink_set_hw_volume_cb(pa_sink *s) {
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&info);
|
|
|
|
|
|
|
|
|
|
info.play.gain = pa_cvolume_avg(&s->hw_volume) * AUDIO_MAX_GAIN / PA_VOLUME_NORM;
|
|
|
|
|
assert(info.play.gain <= AUDIO_MAX_GAIN);
|
|
|
|
|
|
|
|
|
|
if (ioctl(u->fd, AUDIO_SETINFO, &info) < 0) {
|
|
|
|
|
if (errno == EINVAL)
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: Unsupported volume.");
|
2006-02-20 16:13:10 +00:00
|
|
|
else
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: %s", pa_cstrerror(errno));
|
2006-02-20 16:13:10 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-24 10:17:41 +00:00
|
|
|
static int sink_get_hw_mute_cb(pa_sink *s) {
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
err = ioctl(u->fd, AUDIO_GETINFO, &info);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
|
|
|
|
s->hw_muted = !!info.output_muted;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sink_set_hw_mute_cb(pa_sink *s) {
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&info);
|
|
|
|
|
|
|
|
|
|
info.output_muted = !!s->hw_muted;
|
|
|
|
|
|
|
|
|
|
if (ioctl(u->fd, AUDIO_SETINFO, &info) < 0) {
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: %s", pa_cstrerror(errno));
|
2006-02-24 10:17:41 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-23 09:44:50 +00:00
|
|
|
static int source_get_hw_volume_cb(pa_source *s) {
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
err = ioctl(u->fd, AUDIO_GETINFO, &info);
|
|
|
|
|
assert(err >= 0);
|
|
|
|
|
|
|
|
|
|
pa_cvolume_set(&s->hw_volume, s->hw_volume.channels,
|
|
|
|
|
info.record.gain * PA_VOLUME_NORM / AUDIO_MAX_GAIN);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int source_set_hw_volume_cb(pa_source *s) {
|
|
|
|
|
struct userdata *u = s->userdata;
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&info);
|
|
|
|
|
|
|
|
|
|
info.record.gain = pa_cvolume_avg(&s->hw_volume) * AUDIO_MAX_GAIN / PA_VOLUME_NORM;
|
|
|
|
|
assert(info.record.gain <= AUDIO_MAX_GAIN);
|
|
|
|
|
|
|
|
|
|
if (ioctl(u->fd, AUDIO_SETINFO, &info) < 0) {
|
|
|
|
|
if (errno == EINVAL)
|
|
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: Unsupported volume.");
|
|
|
|
|
else
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: %s", pa_cstrerror(errno));
|
2006-02-23 09:44:50 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int pa_solaris_auto_format(int fd, int mode, pa_sample_spec *ss) {
|
2006-01-10 17:51:06 +00:00
|
|
|
audio_info_t info;
|
|
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&info);
|
|
|
|
|
|
|
|
|
|
if (mode != O_RDONLY) {
|
|
|
|
|
info.play.sample_rate = ss->rate;
|
|
|
|
|
info.play.channels = ss->channels;
|
|
|
|
|
switch (ss->format) {
|
|
|
|
|
case PA_SAMPLE_U8:
|
|
|
|
|
info.play.precision = 8;
|
|
|
|
|
info.play.encoding = AUDIO_ENCODING_LINEAR;
|
|
|
|
|
break;
|
|
|
|
|
case PA_SAMPLE_ALAW:
|
|
|
|
|
info.play.precision = 8;
|
|
|
|
|
info.play.encoding = AUDIO_ENCODING_ALAW;
|
|
|
|
|
break;
|
|
|
|
|
case PA_SAMPLE_ULAW:
|
|
|
|
|
info.play.precision = 8;
|
|
|
|
|
info.play.encoding = AUDIO_ENCODING_ULAW;
|
|
|
|
|
break;
|
|
|
|
|
case PA_SAMPLE_S16NE:
|
|
|
|
|
info.play.precision = 16;
|
|
|
|
|
info.play.encoding = AUDIO_ENCODING_LINEAR;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mode != O_WRONLY) {
|
|
|
|
|
info.record.sample_rate = ss->rate;
|
|
|
|
|
info.record.channels = ss->channels;
|
|
|
|
|
switch (ss->format) {
|
|
|
|
|
case PA_SAMPLE_U8:
|
|
|
|
|
info.record.precision = 8;
|
|
|
|
|
info.record.encoding = AUDIO_ENCODING_LINEAR;
|
|
|
|
|
break;
|
|
|
|
|
case PA_SAMPLE_ALAW:
|
|
|
|
|
info.record.precision = 8;
|
|
|
|
|
info.record.encoding = AUDIO_ENCODING_ALAW;
|
|
|
|
|
break;
|
|
|
|
|
case PA_SAMPLE_ULAW:
|
|
|
|
|
info.record.precision = 8;
|
|
|
|
|
info.record.encoding = AUDIO_ENCODING_ULAW;
|
|
|
|
|
break;
|
|
|
|
|
case PA_SAMPLE_S16NE:
|
|
|
|
|
info.record.precision = 16;
|
|
|
|
|
info.record.encoding = AUDIO_ENCODING_LINEAR;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ioctl(fd, AUDIO_SETINFO, &info) < 0) {
|
|
|
|
|
if (errno == EINVAL)
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: Unsupported sample format.");
|
2006-01-10 17:51:06 +00:00
|
|
|
else
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: %s", pa_cstrerror(errno));
|
2006-01-10 17:51:06 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int pa_solaris_set_buffer(int fd, int buffer_size) {
|
|
|
|
|
audio_info_t info;
|
|
|
|
|
|
|
|
|
|
AUDIO_INITINFO(&info);
|
|
|
|
|
|
|
|
|
|
info.record.buffer_size = buffer_size;
|
|
|
|
|
|
|
|
|
|
if (ioctl(fd, AUDIO_SETINFO, &info) < 0) {
|
|
|
|
|
if (errno == EINVAL)
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: Unsupported buffer size.");
|
2006-01-10 17:51:06 +00:00
|
|
|
else
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log(__FILE__": AUDIO_SETINFO: %s", pa_cstrerror(errno));
|
2006-01-10 17:51:06 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa__init(pa_core *c, pa_module*m) {
|
2006-01-10 17:51:06 +00:00
|
|
|
struct userdata *u = NULL;
|
|
|
|
|
const char *p;
|
|
|
|
|
int fd = -1;
|
|
|
|
|
int buffer_size;
|
|
|
|
|
int mode;
|
|
|
|
|
int record = 1, playback = 1;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec ss;
|
2006-04-27 05:41:18 +00:00
|
|
|
pa_channel_map map;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_modargs *ma = NULL;
|
2006-04-19 14:30:42 +00:00
|
|
|
struct timeval tv;
|
2006-08-11 23:58:55 +00:00
|
|
|
char *t;
|
2006-01-10 17:51:06 +00:00
|
|
|
assert(c && m);
|
|
|
|
|
|
|
|
|
|
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": failed to parse module arguments.");
|
2006-01-10 17:51:06 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pa_modargs_get_value_boolean(ma, "record", &record) < 0 || pa_modargs_get_value_boolean(ma, "playback", &playback) < 0) {
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": record= and playback= expect numeric argument.");
|
2006-01-10 17:51:06 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!playback && !record) {
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": neither playback nor record enabled for device.");
|
2006-01-10 17:51:06 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mode = (playback&&record) ? O_RDWR : (playback ? O_WRONLY : (record ? O_RDONLY : 0));
|
|
|
|
|
|
2006-01-19 10:24:49 +00:00
|
|
|
buffer_size = 16384;
|
2006-01-10 17:51:06 +00:00
|
|
|
if (pa_modargs_get_value_s32(ma, "buffer_size", &buffer_size) < 0) {
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": failed to parse buffer size argument");
|
2006-01-10 17:51:06 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ss = c->default_sample_spec;
|
2006-05-17 06:31:18 +00:00
|
|
|
if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0) {
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log(__FILE__": failed to parse sample specification");
|
2006-01-10 17:51:06 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-19 10:26:06 +00:00
|
|
|
if ((fd = open(p = pa_modargs_get_value(ma, "device", DEFAULT_DEVICE), mode | O_NONBLOCK)) < 0)
|
2006-01-10 17:51:06 +00:00
|
|
|
goto fail;
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_log_info(__FILE__": device opened in %s mode.", mode == O_WRONLY ? "O_WRONLY" : (mode == O_RDONLY ? "O_RDONLY" : "O_RDWR"));
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if (pa_solaris_auto_format(fd, mode, &ss) < 0)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if ((mode != O_WRONLY) && (buffer_size >= 1))
|
|
|
|
|
if (pa_solaris_set_buffer(fd, buffer_size) < 0)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
u = pa_xmalloc(sizeof(struct userdata));
|
|
|
|
|
u->core = c;
|
|
|
|
|
|
|
|
|
|
if (mode != O_WRONLY) {
|
2006-04-27 05:41:18 +00:00
|
|
|
u->source = pa_source_new(c, __FILE__, pa_modargs_get_value(ma, "source_name", DEFAULT_SOURCE_NAME), 0, &ss, &map);
|
2006-01-10 17:51:06 +00:00
|
|
|
assert(u->source);
|
|
|
|
|
u->source->userdata = u;
|
|
|
|
|
u->source->get_latency = source_get_latency_cb;
|
2006-02-23 09:44:50 +00:00
|
|
|
u->source->get_hw_volume = source_get_hw_volume_cb;
|
|
|
|
|
u->source->set_hw_volume = source_set_hw_volume_cb;
|
2006-01-10 17:51:06 +00:00
|
|
|
pa_source_set_owner(u->source, m);
|
2006-08-11 23:58:55 +00:00
|
|
|
pa_source_set_description(u->source, t = pa_sprintf_malloc("Solaris PCM on '%s'", p));
|
|
|
|
|
pa_xfree(t);
|
2006-07-16 17:28:41 +00:00
|
|
|
u->source->is_hardware = 1;
|
2006-01-10 17:51:06 +00:00
|
|
|
} else
|
|
|
|
|
u->source = NULL;
|
|
|
|
|
|
|
|
|
|
if (mode != O_RDONLY) {
|
2006-04-27 05:41:18 +00:00
|
|
|
u->sink = pa_sink_new(c, __FILE__, pa_modargs_get_value(ma, "sink_name", DEFAULT_SINK_NAME), 0, &ss, &map);
|
2006-01-10 17:51:06 +00:00
|
|
|
assert(u->sink);
|
|
|
|
|
u->sink->get_latency = sink_get_latency_cb;
|
2006-02-20 16:13:10 +00:00
|
|
|
u->sink->get_hw_volume = sink_get_hw_volume_cb;
|
|
|
|
|
u->sink->set_hw_volume = sink_set_hw_volume_cb;
|
2006-02-24 10:17:41 +00:00
|
|
|
u->sink->get_hw_mute = sink_get_hw_mute_cb;
|
|
|
|
|
u->sink->set_hw_mute = sink_set_hw_mute_cb;
|
2006-01-10 17:51:06 +00:00
|
|
|
u->sink->userdata = u;
|
|
|
|
|
pa_sink_set_owner(u->sink, m);
|
2006-08-11 23:58:55 +00:00
|
|
|
pa_sink_set_description(u->sink, t = pa_sprintf_malloc("Solaris PCM on '%s'", p));
|
|
|
|
|
pa_xfree(t);
|
2006-07-16 17:28:41 +00:00
|
|
|
u->sink->is_hardware = 1;
|
2006-01-10 17:51:06 +00:00
|
|
|
} else
|
|
|
|
|
u->sink = NULL;
|
|
|
|
|
|
|
|
|
|
assert(u->source || u->sink);
|
|
|
|
|
|
|
|
|
|
u->io = pa_iochannel_new(c->mainloop, u->source ? fd : -1, u->sink ? fd : 0);
|
|
|
|
|
assert(u->io);
|
|
|
|
|
pa_iochannel_set_callback(u->io, io_callback, u);
|
|
|
|
|
u->fd = fd;
|
|
|
|
|
|
|
|
|
|
u->memchunk.memblock = NULL;
|
|
|
|
|
u->memchunk.length = 0;
|
2006-04-19 15:37:52 +00:00
|
|
|
u->frame_size = pa_frame_size(&ss);
|
2006-01-19 10:24:49 +00:00
|
|
|
u->buffer_size = buffer_size;
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
u->silence.memblock = pa_memblock_new(u->silence.length = CHUNK_SIZE, u->core->memblock_stat);
|
|
|
|
|
assert(u->silence.memblock);
|
|
|
|
|
pa_silence_memblock(u->silence.memblock, &ss);
|
|
|
|
|
u->silence.index = 0;
|
|
|
|
|
|
|
|
|
|
u->written_bytes = 0;
|
|
|
|
|
u->read_bytes = 0;
|
|
|
|
|
|
|
|
|
|
u->module = m;
|
|
|
|
|
m->userdata = u;
|
|
|
|
|
|
2006-04-19 14:30:42 +00:00
|
|
|
u->poll_timeout = pa_bytes_to_usec(u->buffer_size / 10, &ss);
|
|
|
|
|
|
|
|
|
|
pa_gettimeofday(&tv);
|
|
|
|
|
pa_timeval_add(&tv, u->poll_timeout);
|
|
|
|
|
|
|
|
|
|
u->timer = c->mainloop->time_new(c->mainloop, &tv, timer_cb, u);
|
|
|
|
|
assert(u->timer);
|
|
|
|
|
|
2006-01-19 10:24:49 +00:00
|
|
|
u->sig = pa_signal_new(SIGPOLL, sig_callback, u);
|
|
|
|
|
assert(u->sig);
|
|
|
|
|
ioctl(u->fd, I_SETSIG, S_MSG);
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
|
2006-02-23 09:07:49 +00:00
|
|
|
/* Read mixer settings */
|
2006-02-23 09:44:50 +00:00
|
|
|
if (u->source)
|
2006-02-24 10:18:53 +00:00
|
|
|
source_get_hw_volume_cb(u->source);
|
2006-02-24 10:17:41 +00:00
|
|
|
if (u->sink) {
|
2006-02-23 09:08:06 +00:00
|
|
|
sink_get_hw_volume_cb(u->sink);
|
2006-02-24 10:17:41 +00:00
|
|
|
sink_get_hw_mute_cb(u->sink);
|
|
|
|
|
}
|
2006-02-23 09:07:49 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
if (fd >= 0)
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
|
|
if (ma)
|
|
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa__done(pa_core *c, pa_module*m) {
|
2006-01-10 17:51:06 +00:00
|
|
|
struct userdata *u;
|
|
|
|
|
assert(c && m);
|
|
|
|
|
|
|
|
|
|
if (!(u = m->userdata))
|
|
|
|
|
return;
|
2006-01-19 10:24:49 +00:00
|
|
|
|
2006-04-19 14:30:42 +00:00
|
|
|
if (u->timer)
|
|
|
|
|
c->mainloop->time_free(u->timer);
|
2006-01-19 10:24:49 +00:00
|
|
|
ioctl(u->fd, I_SETSIG, 0);
|
|
|
|
|
pa_signal_free(u->sig);
|
2006-01-10 17:51:06 +00:00
|
|
|
|
|
|
|
|
if (u->memchunk.memblock)
|
|
|
|
|
pa_memblock_unref(u->memchunk.memblock);
|
|
|
|
|
if (u->silence.memblock)
|
|
|
|
|
pa_memblock_unref(u->silence.memblock);
|
|
|
|
|
|
|
|
|
|
if (u->sink) {
|
|
|
|
|
pa_sink_disconnect(u->sink);
|
|
|
|
|
pa_sink_unref(u->sink);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (u->source) {
|
|
|
|
|
pa_source_disconnect(u->source);
|
|
|
|
|
pa_source_unref(u->source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_iochannel_free(u->io);
|
|
|
|
|
pa_xfree(u);
|
|
|
|
|
}
|