2023-02-08 18:12:00 +01:00
|
|
|
/* PipeWire */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2018-03-14 11:24:23 +01:00
|
|
|
|
2021-10-09 23:25:29 +03:00
|
|
|
/*
|
|
|
|
|
[title]
|
|
|
|
|
Audio source using \ref pw_stream "pw_stream".
|
|
|
|
|
[title]
|
|
|
|
|
*/
|
|
|
|
|
|
2018-03-14 11:24:23 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <math.h>
|
2020-06-03 15:26:54 +02:00
|
|
|
#include <signal.h>
|
2018-03-14 11:24:23 +01:00
|
|
|
|
|
|
|
|
#include <spa/param/audio/format-utils.h>
|
|
|
|
|
|
|
|
|
|
#include <pipewire/pipewire.h>
|
|
|
|
|
|
|
|
|
|
#define M_PI_M2 ( M_PI + M_PI )
|
|
|
|
|
|
2023-08-21 17:47:32 +03:00
|
|
|
#define DEFAULT_QUANTUM 1764
|
2018-03-14 11:24:23 +01:00
|
|
|
#define DEFAULT_RATE 44100
|
2018-04-12 10:12:40 +02:00
|
|
|
#define DEFAULT_CHANNELS 2
|
2018-06-22 17:30:19 +02:00
|
|
|
#define DEFAULT_VOLUME 0.7
|
2018-03-14 11:24:23 +01:00
|
|
|
|
|
|
|
|
struct data {
|
|
|
|
|
struct pw_main_loop *loop;
|
|
|
|
|
struct pw_stream *stream;
|
|
|
|
|
|
|
|
|
|
double accumulator;
|
2023-08-21 17:47:32 +03:00
|
|
|
uint64_t outputSample;
|
2018-03-14 11:24:23 +01:00
|
|
|
};
|
|
|
|
|
|
2019-01-31 11:58:35 +01:00
|
|
|
static void fill_f32(struct data *d, void *dest, int n_frames)
|
2018-03-14 11:24:23 +01:00
|
|
|
{
|
2018-03-22 18:07:57 +01:00
|
|
|
float *dst = dest, val;
|
2018-03-14 11:24:23 +01:00
|
|
|
int i, c;
|
|
|
|
|
|
2019-01-31 11:58:35 +01:00
|
|
|
for (i = 0; i < n_frames; i++) {
|
2018-03-22 18:07:57 +01:00
|
|
|
d->accumulator += M_PI_M2 * 440 / DEFAULT_RATE;
|
2018-03-14 11:24:23 +01:00
|
|
|
if (d->accumulator >= M_PI_M2)
|
|
|
|
|
d->accumulator -= M_PI_M2;
|
|
|
|
|
|
2018-06-22 17:30:19 +02:00
|
|
|
val = sin(d->accumulator) * DEFAULT_VOLUME;
|
2018-03-22 18:07:57 +01:00
|
|
|
for (c = 0; c < DEFAULT_CHANNELS; c++)
|
2018-03-14 11:24:23 +01:00
|
|
|
*dst++ = val;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-31 11:58:35 +01:00
|
|
|
/* our data processing function is in general:
|
|
|
|
|
*
|
|
|
|
|
* struct pw_buffer *b;
|
|
|
|
|
* b = pw_stream_dequeue_buffer(stream);
|
|
|
|
|
*
|
|
|
|
|
* .. generate stuff in the buffer ...
|
|
|
|
|
*
|
|
|
|
|
* pw_stream_queue_buffer(stream, b);
|
|
|
|
|
*/
|
2018-03-22 16:40:27 +01:00
|
|
|
static void on_process(void *userdata)
|
2018-03-14 11:24:23 +01:00
|
|
|
{
|
|
|
|
|
struct data *data = userdata;
|
2018-03-22 16:40:27 +01:00
|
|
|
struct pw_buffer *b;
|
2018-03-14 11:24:23 +01:00
|
|
|
struct spa_buffer *buf;
|
2019-01-31 11:58:35 +01:00
|
|
|
int n_frames, stride;
|
2018-03-14 11:24:23 +01:00
|
|
|
uint8_t *p;
|
|
|
|
|
|
2023-08-21 17:47:32 +03:00
|
|
|
struct pw_time streamTime;
|
|
|
|
|
uint64_t driverSample;
|
|
|
|
|
int64_t queued;
|
|
|
|
|
|
|
|
|
|
pw_stream_get_time_n(data->stream, &streamTime, sizeof(streamTime));
|
|
|
|
|
|
2020-03-02 17:27:00 +01:00
|
|
|
if ((b = pw_stream_dequeue_buffer(data->stream)) == NULL) {
|
|
|
|
|
pw_log_warn("out of buffers: %m");
|
2018-03-14 11:24:23 +01:00
|
|
|
return;
|
2020-03-02 17:27:00 +01:00
|
|
|
}
|
2018-03-14 11:24:23 +01:00
|
|
|
|
2023-08-21 17:47:32 +03:00
|
|
|
/* calculate the current sample in the driver's timeline */
|
|
|
|
|
driverSample = streamTime.ticks * DEFAULT_RATE * streamTime.rate.num / streamTime.rate.denom;
|
|
|
|
|
|
|
|
|
|
/* find how many samples we have queued but have not yet appeared in the driver's timeline;
|
|
|
|
|
these are queued in the audioadapter but pw_stream doesn't report them accurately */
|
|
|
|
|
queued = data->outputSample - driverSample;
|
|
|
|
|
if (queued < 0) {
|
|
|
|
|
/* XRun, resync our timeline */
|
|
|
|
|
pw_log_info("XRun! resync, data->outputSample += %"PRIi64, -queued);
|
|
|
|
|
data->outputSample += -queued;
|
|
|
|
|
queued = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pw_log_info("process, b.req %"PRIu64", s.ticks %"PRIu64 ", sample(our) %"PRIu64", sample(dr) %"PRIu64",\n"
|
|
|
|
|
" s.buf %"PRIu64 ", s.queued %"PRIu64 ", queued (real) %"PRIi64 ", s.delay %"PRIu64,
|
|
|
|
|
b->requested, streamTime.ticks, data->outputSample, driverSample,
|
|
|
|
|
streamTime.buffered, streamTime.queued, queued, streamTime.delay);
|
|
|
|
|
|
2018-03-22 16:40:27 +01:00
|
|
|
buf = b->buffer;
|
2018-03-14 11:24:23 +01:00
|
|
|
if ((p = buf->datas[0].data) == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2019-01-31 11:58:35 +01:00
|
|
|
stride = sizeof(float) * DEFAULT_CHANNELS;
|
2023-08-21 17:47:32 +03:00
|
|
|
n_frames = SPA_MIN((uint64_t) DEFAULT_QUANTUM, buf->datas[0].maxsize / stride);
|
2018-03-14 11:24:23 +01:00
|
|
|
|
2019-01-31 11:58:35 +01:00
|
|
|
fill_f32(data, p, n_frames);
|
|
|
|
|
|
|
|
|
|
buf->datas[0].chunk->offset = 0;
|
|
|
|
|
buf->datas[0].chunk->stride = stride;
|
|
|
|
|
buf->datas[0].chunk->size = n_frames * stride;
|
2018-03-14 11:24:23 +01:00
|
|
|
|
2023-08-21 17:47:32 +03:00
|
|
|
b->size = n_frames;
|
|
|
|
|
data->outputSample += n_frames;
|
|
|
|
|
|
2018-03-22 16:40:27 +01:00
|
|
|
pw_stream_queue_buffer(data->stream, b);
|
2018-03-14 11:24:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct pw_stream_events stream_events = {
|
|
|
|
|
PW_VERSION_STREAM_EVENTS,
|
2018-03-22 16:40:27 +01:00
|
|
|
.process = on_process,
|
2018-03-14 11:24:23 +01:00
|
|
|
};
|
|
|
|
|
|
2020-06-03 15:26:54 +02:00
|
|
|
static void do_quit(void *userdata, int signal_number)
|
|
|
|
|
{
|
|
|
|
|
struct data *data = userdata;
|
|
|
|
|
pw_main_loop_quit(data->loop);
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-14 11:24:23 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
struct data data = { 0, };
|
2023-08-21 17:47:32 +03:00
|
|
|
const struct spa_pod *params[2];
|
2018-03-22 18:07:57 +01:00
|
|
|
uint8_t buffer[1024];
|
2022-01-16 19:48:43 +02:00
|
|
|
struct pw_properties *props;
|
2018-03-22 18:07:57 +01:00
|
|
|
struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer));
|
2018-03-14 11:24:23 +01:00
|
|
|
|
|
|
|
|
pw_init(&argc, &argv);
|
|
|
|
|
|
2019-01-31 11:58:35 +01:00
|
|
|
/* make a main loop. If you already have another main loop, you can add
|
|
|
|
|
* the fd of this pipewire mainloop to it. */
|
2018-03-14 11:24:23 +01:00
|
|
|
data.loop = pw_main_loop_new(NULL);
|
|
|
|
|
|
2020-06-03 15:26:54 +02:00
|
|
|
pw_loop_add_signal(pw_main_loop_get_loop(data.loop), SIGINT, do_quit, &data);
|
|
|
|
|
pw_loop_add_signal(pw_main_loop_get_loop(data.loop), SIGTERM, do_quit, &data);
|
|
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
/* Create a simple stream, the simple stream manages the core and remote
|
|
|
|
|
* objects for you if you don't need to deal with them.
|
2019-01-31 11:58:35 +01:00
|
|
|
*
|
|
|
|
|
* If you plan to autoconnect your stream, you need to provide at least
|
2019-05-24 15:47:48 +02:00
|
|
|
* media, category and role properties.
|
2019-01-31 11:58:35 +01:00
|
|
|
*
|
2019-05-24 15:47:48 +02:00
|
|
|
* Pass your events and a user_data pointer as the last arguments. This
|
2019-01-31 11:58:35 +01:00
|
|
|
* will inform you about the stream state. The most important event
|
|
|
|
|
* you need to listen to is the process event where you need to produce
|
|
|
|
|
* the data.
|
|
|
|
|
*/
|
2022-01-16 19:48:43 +02:00
|
|
|
props = pw_properties_new(PW_KEY_MEDIA_TYPE, "Audio",
|
|
|
|
|
PW_KEY_MEDIA_CATEGORY, "Playback",
|
|
|
|
|
PW_KEY_MEDIA_ROLE, "Music",
|
2023-08-21 17:47:32 +03:00
|
|
|
PW_KEY_NODE_LATENCY, SPA_STRINGIFY (DEFAULT_QUANTUM) "/" SPA_STRINGIFY (DEFAULT_RATE),
|
2022-01-16 19:48:43 +02:00
|
|
|
NULL);
|
|
|
|
|
if (argc > 1)
|
|
|
|
|
/* Set stream target if given on command line */
|
|
|
|
|
pw_properties_set(props, PW_KEY_TARGET_OBJECT, argv[1]);
|
2018-03-22 18:07:57 +01:00
|
|
|
data.stream = pw_stream_new_simple(
|
|
|
|
|
pw_main_loop_get_loop(data.loop),
|
|
|
|
|
"audio-src",
|
2022-01-16 19:48:43 +02:00
|
|
|
props,
|
2018-03-22 18:07:57 +01:00
|
|
|
&stream_events,
|
|
|
|
|
&data);
|
2018-03-14 11:24:23 +01:00
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
/* Make one parameter with the supported formats. The SPA_PARAM_EnumFormat
|
|
|
|
|
* id means that this is a format enumeration (of 1 value). */
|
2018-08-29 15:53:26 +02:00
|
|
|
params[0] = spa_format_audio_raw_build(&b, SPA_PARAM_EnumFormat,
|
|
|
|
|
&SPA_AUDIO_INFO_RAW_INIT(
|
|
|
|
|
.format = SPA_AUDIO_FORMAT_F32,
|
|
|
|
|
.channels = DEFAULT_CHANNELS,
|
|
|
|
|
.rate = DEFAULT_RATE ));
|
2023-08-21 17:47:32 +03:00
|
|
|
params[1] = spa_pod_builder_add_object(&b,
|
|
|
|
|
SPA_TYPE_OBJECT_ParamBuffers, SPA_PARAM_Buffers,
|
|
|
|
|
SPA_PARAM_BUFFERS_buffers, SPA_POD_Int(4),
|
|
|
|
|
SPA_PARAM_BUFFERS_blocks, SPA_POD_Int(1),
|
|
|
|
|
SPA_PARAM_BUFFERS_size, SPA_POD_Int(DEFAULT_QUANTUM * sizeof(float) * DEFAULT_CHANNELS),
|
|
|
|
|
SPA_PARAM_BUFFERS_stride, SPA_POD_Int(sizeof(float) * DEFAULT_CHANNELS),
|
|
|
|
|
SPA_PARAM_BUFFERS_dataType, SPA_POD_CHOICE_FLAGS_Int((1<<SPA_DATA_MemPtr)));
|
2018-03-22 18:07:57 +01:00
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
/* Now connect this stream. We ask that our process function is
|
2019-01-31 11:58:35 +01:00
|
|
|
* called in a realtime thread. */
|
2018-03-22 18:07:57 +01:00
|
|
|
pw_stream_connect(data.stream,
|
|
|
|
|
PW_DIRECTION_OUTPUT,
|
2022-01-16 19:48:43 +02:00
|
|
|
PW_ID_ANY,
|
2018-03-22 18:07:57 +01:00
|
|
|
PW_STREAM_FLAG_AUTOCONNECT |
|
2023-08-21 17:47:32 +03:00
|
|
|
PW_STREAM_FLAG_MAP_BUFFERS,
|
|
|
|
|
params, 2);
|
2018-03-14 11:24:23 +01:00
|
|
|
|
2019-05-24 15:47:48 +02:00
|
|
|
/* and wait while we let things run */
|
2018-03-14 11:24:23 +01:00
|
|
|
pw_main_loop_run(data.loop);
|
|
|
|
|
|
2018-03-22 18:07:57 +01:00
|
|
|
pw_stream_destroy(data.stream);
|
2018-03-14 11:24:23 +01:00
|
|
|
pw_main_loop_destroy(data.loop);
|
2020-06-03 15:26:54 +02:00
|
|
|
pw_deinit();
|
2018-03-14 11:24:23 +01:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|