2006-06-19 11:27:00 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2006-06-19 11:27:00 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2006-06-19 11:27:00 +00:00
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2006-06-19 11:27:00 +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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2014-11-26 14:14:51 +01:00
|
|
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
2006-06-19 11:27:00 +00:00
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2006-06-20 13:49:30 +00:00
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
#include <check.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/pulseaudio.h>
|
|
|
|
|
#include <pulse/mainloop.h>
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2011-10-04 14:01:03 +02:00
|
|
|
#include <pulsecore/log.h>
|
2011-10-28 16:30:05 +02:00
|
|
|
#include <pulsecore/macro.h>
|
2006-09-04 22:38:41 +00:00
|
|
|
#include <pulsecore/thread.h>
|
|
|
|
|
|
2009-04-05 03:04:22 +02:00
|
|
|
#define INTERPOLATE
|
2009-04-10 01:10:59 +02:00
|
|
|
//#define CORK
|
2009-04-05 03:04:22 +02:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
static pa_context *context = NULL;
|
|
|
|
|
static pa_stream *stream = NULL;
|
|
|
|
|
static pa_mainloop_api *mainloop_api = NULL;
|
2013-06-27 19:28:09 +02:00
|
|
|
static bool playback = true;
|
2009-07-24 20:22:19 +02:00
|
|
|
static pa_usec_t latency = 0;
|
2012-07-29 06:12:53 +08:00
|
|
|
static const char *bname = NULL;
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
static void stream_write_cb(pa_stream *p, size_t nbytes, void *userdata) {
|
2006-06-19 11:27:00 +00:00
|
|
|
/* Just some silence */
|
2009-07-24 20:22:19 +02:00
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
|
void *data;
|
|
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless((nbytes = pa_stream_writable_size(p)) != (size_t) -1);
|
2009-07-24 20:22:19 +02:00
|
|
|
|
|
|
|
|
if (nbytes <= 0)
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless(pa_stream_begin_write(p, &data, &nbytes) == 0);
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_memzero(data, nbytes);
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless(pa_stream_write(p, data, nbytes, NULL, 0, PA_SEEK_RELATIVE) == 0);
|
2009-07-24 20:22:19 +02:00
|
|
|
}
|
2009-02-19 03:59:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void stream_read_cb(pa_stream *p, size_t nbytes, void *userdata) {
|
2009-07-24 20:22:19 +02:00
|
|
|
/* We don't care about the data, just drop it */
|
2009-02-19 03:59:56 +01:00
|
|
|
|
2009-07-24 20:22:19 +02:00
|
|
|
for (;;) {
|
|
|
|
|
const void *data;
|
2009-02-19 03:59:56 +01:00
|
|
|
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_assert_se((nbytes = pa_stream_readable_size(p)) != (size_t) -1);
|
|
|
|
|
|
|
|
|
|
if (nbytes <= 0)
|
|
|
|
|
break;
|
|
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless(pa_stream_peek(p, &data, &nbytes) == 0);
|
|
|
|
|
fail_unless(pa_stream_drop(p) == 0);
|
2009-02-19 03:59:56 +01:00
|
|
|
}
|
2006-06-19 11:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-04-05 03:04:22 +02:00
|
|
|
static void stream_latency_cb(pa_stream *p, void *userdata) {
|
|
|
|
|
#ifndef INTERPOLATE
|
|
|
|
|
pa_operation *o;
|
|
|
|
|
|
|
|
|
|
o = pa_stream_update_timing_info(p, NULL, NULL);
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
/* This is called whenever the context status changes */
|
|
|
|
|
static void context_state_callback(pa_context *c, void *userdata) {
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless(c != NULL);
|
2006-06-19 11:27:00 +00:00
|
|
|
|
|
|
|
|
switch (pa_context_get_state(c)) {
|
|
|
|
|
case PA_CONTEXT_CONNECTING:
|
|
|
|
|
case PA_CONTEXT_AUTHORIZING:
|
|
|
|
|
case PA_CONTEXT_SETTING_NAME:
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
case PA_CONTEXT_READY: {
|
2009-04-05 03:04:22 +02:00
|
|
|
pa_stream_flags_t flags = PA_STREAM_AUTO_TIMING_UPDATE;
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_buffer_attr attr;
|
2006-06-19 11:27:00 +00:00
|
|
|
static const pa_sample_spec ss = {
|
|
|
|
|
.format = PA_SAMPLE_S16LE,
|
|
|
|
|
.rate = 44100,
|
2008-05-15 23:34:41 +00:00
|
|
|
.channels = 2
|
2006-06-19 11:27:00 +00:00
|
|
|
};
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_zero(attr);
|
|
|
|
|
attr.maxlength = (uint32_t) -1;
|
|
|
|
|
attr.tlength = latency > 0 ? (uint32_t) pa_usec_to_bytes(latency, &ss) : (uint32_t) -1;
|
|
|
|
|
attr.prebuf = (uint32_t) -1;
|
|
|
|
|
attr.minreq = (uint32_t) -1;
|
|
|
|
|
attr.fragsize = (uint32_t) -1;
|
|
|
|
|
|
2009-04-05 03:04:22 +02:00
|
|
|
#ifdef INTERPOLATE
|
|
|
|
|
flags |= PA_STREAM_INTERPOLATE_TIMING;
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-07-24 20:22:19 +02:00
|
|
|
if (latency > 0)
|
|
|
|
|
flags |= PA_STREAM_ADJUST_LATENCY;
|
|
|
|
|
|
2011-10-04 14:01:03 +02:00
|
|
|
pa_log("Connection established");
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
stream = pa_stream_new(c, "interpol-test", &ss, NULL);
|
|
|
|
|
fail_unless(stream != NULL);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-02-19 03:59:56 +01:00
|
|
|
if (playback) {
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_assert_se(pa_stream_connect_playback(stream, NULL, &attr, flags, NULL, NULL) == 0);
|
2009-02-19 03:59:56 +01:00
|
|
|
pa_stream_set_write_callback(stream, stream_write_cb, NULL);
|
|
|
|
|
} else {
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_assert_se(pa_stream_connect_record(stream, NULL, &attr, flags) == 0);
|
2009-02-19 03:59:56 +01:00
|
|
|
pa_stream_set_read_callback(stream, stream_read_cb, NULL);
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-04-05 03:04:22 +02:00
|
|
|
pa_stream_set_latency_update_callback(stream, stream_latency_cb, NULL);
|
|
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
case PA_CONTEXT_TERMINATED:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PA_CONTEXT_FAILED:
|
|
|
|
|
default:
|
2011-10-04 14:01:03 +02:00
|
|
|
pa_log_error("Context error: %s", pa_strerror(pa_context_errno(c)));
|
2016-02-17 19:47:05 +05:30
|
|
|
ck_abort();
|
2006-06-19 11:27:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
START_TEST (interpol_test) {
|
2006-06-19 11:27:00 +00:00
|
|
|
pa_threaded_mainloop* m = NULL;
|
2009-07-24 20:22:19 +02:00
|
|
|
int k;
|
2006-06-19 11:27:00 +00:00
|
|
|
struct timeval start, last_info = { 0, 0 };
|
|
|
|
|
pa_usec_t old_t = 0, old_rtc = 0;
|
2009-04-10 01:10:59 +02:00
|
|
|
#ifdef CORK
|
2013-06-27 19:28:09 +02:00
|
|
|
bool corked = false;
|
2009-04-10 01:10:59 +02:00
|
|
|
#endif
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2009-07-24 20:22:19 +02:00
|
|
|
/* Set up a new main loop */
|
2012-07-29 06:12:53 +08:00
|
|
|
m = pa_threaded_mainloop_new();
|
|
|
|
|
fail_unless(m != NULL);
|
|
|
|
|
mainloop_api = pa_threaded_mainloop_get_api(m);
|
|
|
|
|
fail_unless(mainloop_api != NULL);
|
|
|
|
|
context = pa_context_new(mainloop_api, bname);
|
|
|
|
|
fail_unless(context != NULL);
|
2006-06-19 11:27:00 +00:00
|
|
|
|
|
|
|
|
pa_context_set_state_callback(context, context_state_callback, NULL);
|
|
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless(pa_context_connect(context, NULL, 0, NULL) >= 0);
|
2006-06-19 11:27:00 +00:00
|
|
|
|
|
|
|
|
pa_gettimeofday(&start);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
fail_unless(pa_threaded_mainloop_start(m) >= 0);
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2009-04-10 01:10:59 +02:00
|
|
|
/* #ifdef CORK */
|
|
|
|
|
for (k = 0; k < 20000; k++)
|
|
|
|
|
/* #else */
|
|
|
|
|
/* for (k = 0; k < 2000; k++) */
|
|
|
|
|
/* #endif */
|
|
|
|
|
{
|
2013-06-27 19:28:09 +02:00
|
|
|
bool success = false, changed = false;
|
2009-07-24 20:22:19 +02:00
|
|
|
pa_usec_t t, rtc, d;
|
2006-06-19 11:27:00 +00:00
|
|
|
struct timeval now, tv;
|
2013-06-27 19:28:09 +02:00
|
|
|
bool playing = false;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
pa_threaded_mainloop_lock(m);
|
|
|
|
|
|
|
|
|
|
if (stream) {
|
|
|
|
|
const pa_timing_info *info;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2009-07-24 20:22:19 +02:00
|
|
|
if (pa_stream_get_time(stream, &t) >= 0 &&
|
|
|
|
|
pa_stream_get_latency(stream, &d, NULL) >= 0)
|
2013-06-27 19:28:09 +02:00
|
|
|
success = true;
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
if ((info = pa_stream_get_timing_info(stream))) {
|
|
|
|
|
if (memcmp(&last_info, &info->timestamp, sizeof(struct timeval))) {
|
2013-06-27 19:28:09 +02:00
|
|
|
changed = true;
|
2006-06-19 11:27:00 +00:00
|
|
|
last_info = info->timestamp;
|
|
|
|
|
}
|
2008-05-15 23:34:41 +00:00
|
|
|
if (info->playing)
|
2013-06-27 19:28:09 +02:00
|
|
|
playing = true;
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
2006-06-19 11:27:00 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
pa_threaded_mainloop_unlock(m);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_gettimeofday(&now);
|
2006-06-19 11:27:00 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
if (success) {
|
2009-04-10 01:10:59 +02:00
|
|
|
#ifdef CORK
|
2013-06-27 19:28:09 +02:00
|
|
|
bool cork_now;
|
2009-04-10 01:10:59 +02:00
|
|
|
#endif
|
2006-06-19 11:27:00 +00:00
|
|
|
rtc = pa_timeval_diff(&now, &start);
|
2016-08-16 07:03:25 +02:00
|
|
|
pa_log_info("%i\t%llu\t%llu\t%llu\t%llu\t%lli\t%u\t%u\t%llu\t%llu", k,
|
2009-02-19 03:59:56 +01:00
|
|
|
(unsigned long long) rtc,
|
|
|
|
|
(unsigned long long) t,
|
|
|
|
|
(unsigned long long) (rtc-old_rtc),
|
|
|
|
|
(unsigned long long) (t-old_t),
|
2009-04-01 23:05:43 +02:00
|
|
|
(signed long long) rtc - (signed long long) t,
|
2009-02-19 03:59:56 +01:00
|
|
|
changed,
|
2009-07-24 20:22:19 +02:00
|
|
|
playing,
|
|
|
|
|
(unsigned long long) latency,
|
|
|
|
|
(unsigned long long) d);
|
2009-02-19 03:59:56 +01:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
fflush(stdout);
|
2006-06-19 11:27:00 +00:00
|
|
|
old_t = t;
|
|
|
|
|
old_rtc = rtc;
|
2009-03-05 04:32:16 +01:00
|
|
|
|
2009-04-10 01:10:59 +02:00
|
|
|
#ifdef CORK
|
2009-03-05 04:32:16 +01:00
|
|
|
cork_now = (rtc / (2*PA_USEC_PER_SEC)) % 2 == 1;
|
|
|
|
|
|
|
|
|
|
if (corked != cork_now) {
|
|
|
|
|
pa_threaded_mainloop_lock(m);
|
|
|
|
|
pa_operation_unref(pa_stream_cork(stream, cork_now, NULL, NULL));
|
|
|
|
|
pa_threaded_mainloop_unlock(m);
|
|
|
|
|
|
|
|
|
|
pa_log(cork_now ? "Corking" : "Uncorking");
|
|
|
|
|
|
|
|
|
|
corked = cork_now;
|
|
|
|
|
}
|
2009-04-10 01:10:59 +02:00
|
|
|
#endif
|
2006-06-19 11:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
2006-06-19 12:20:10 +00:00
|
|
|
/* Spin loop, ugly but normal usleep() is just too badly grained */
|
2006-06-19 11:27:00 +00:00
|
|
|
tv = now;
|
|
|
|
|
while (pa_timeval_diff(pa_gettimeofday(&now), &tv) < 1000)
|
2006-09-04 22:38:41 +00:00
|
|
|
pa_thread_yield();
|
2006-06-19 11:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m)
|
|
|
|
|
pa_threaded_mainloop_stop(m);
|
|
|
|
|
|
|
|
|
|
if (stream) {
|
|
|
|
|
pa_stream_disconnect(stream);
|
|
|
|
|
pa_stream_unref(stream);
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 11:27:00 +00:00
|
|
|
if (context) {
|
|
|
|
|
pa_context_disconnect(context);
|
|
|
|
|
pa_context_unref(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m)
|
|
|
|
|
pa_threaded_mainloop_free(m);
|
2012-07-29 06:12:53 +08:00
|
|
|
}
|
|
|
|
|
END_TEST
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
int failed = 0;
|
|
|
|
|
Suite *s;
|
|
|
|
|
TCase *tc;
|
|
|
|
|
SRunner *sr;
|
|
|
|
|
|
|
|
|
|
if (!getenv("MAKE_CHECK"))
|
|
|
|
|
pa_log_set_level(PA_LOG_DEBUG);
|
|
|
|
|
|
|
|
|
|
bname = argv[0];
|
|
|
|
|
playback = argc <= 1 || !pa_streq(argv[1], "-r");
|
|
|
|
|
latency = (argc >= 2 && !pa_streq(argv[1], "-r")) ? atoi(argv[1]) : (argc >= 3 ? atoi(argv[2]) : 0);
|
|
|
|
|
|
|
|
|
|
s = suite_create("Interpol");
|
|
|
|
|
tc = tcase_create("interpol");
|
|
|
|
|
tcase_add_test(tc, interpol_test);
|
|
|
|
|
tcase_set_timeout(tc, 5 * 60);
|
|
|
|
|
suite_add_tcase(s, tc);
|
|
|
|
|
|
|
|
|
|
sr = srunner_create(s);
|
|
|
|
|
srunner_run_all(sr, CK_NORMAL);
|
|
|
|
|
failed = srunner_ntests_failed(sr);
|
|
|
|
|
srunner_free(sr);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2012-07-29 06:12:53 +08:00
|
|
|
return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
|
2006-06-19 11:27:00 +00:00
|
|
|
}
|