big s/polyp/pulse/g
[platform/upstream/pulseaudio.git] / src / tests / interpol-test.c
1 /* $Id$ */
2
3 /***
4   This file is part of PulseAudio.
5  
6   PulseAudio is free software; you can redistribute it and/or modify
7   it under the terms of the GNU Lesser General Public License as published
8   by the Free Software Foundation; either version 2 of the License,
9   or (at your option) any later version.
10  
11   PulseAudio is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   General Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public License
17   along with PulseAudio; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <signal.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <unistd.h>
30 #include <assert.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <getopt.h>
34 #include <math.h>
35 #include <pthread.h>
36
37 #include <pulse/pulseaudio.h>
38 #include <pulse/mainloop.h>
39
40 static pa_context *context = NULL;
41 static pa_stream *stream = NULL;
42 static pa_mainloop_api *mainloop_api = NULL;
43
44 static void stream_write_cb(pa_stream *p, size_t length, void *userdata) {
45
46     /* Just some silence */
47     pa_stream_write(p, pa_xmalloc0(length), length, pa_xfree, 0, PA_SEEK_RELATIVE);
48 }
49
50 /* This is called whenever the context status changes */
51 static void context_state_callback(pa_context *c, void *userdata) {
52     assert(c);
53
54     switch (pa_context_get_state(c)) {
55         case PA_CONTEXT_CONNECTING:
56         case PA_CONTEXT_AUTHORIZING:
57         case PA_CONTEXT_SETTING_NAME:
58             break;
59         
60         case PA_CONTEXT_READY: {
61
62             static const pa_sample_spec ss = {
63                 .format = PA_SAMPLE_S16LE,
64                 .rate = 44100,
65                 .channels = 1
66             };
67             
68             fprintf(stderr, "Connection established.\n");
69
70             stream = pa_stream_new(c, "interpol-test", &ss, NULL);
71             assert(stream);
72             
73             pa_stream_connect_playback(stream, NULL, NULL, PA_STREAM_INTERPOLATE_TIMING|PA_STREAM_AUTO_TIMING_UPDATE, NULL, NULL);
74             pa_stream_set_write_callback(stream, stream_write_cb, NULL);
75                 
76             break;
77         }
78             
79         case PA_CONTEXT_TERMINATED:
80             break;
81
82         case PA_CONTEXT_FAILED:
83         default:
84             fprintf(stderr, "Context error: %s\n", pa_strerror(pa_context_errno(c)));
85             abort();
86     }
87 }
88
89 int main(int argc, char *argv[]) {
90     pa_threaded_mainloop* m = NULL;
91     int k, r;
92     struct timeval start, last_info = { 0, 0 };
93     pa_usec_t old_t = 0, old_rtc = 0;
94
95     /* Set up a new main loop */
96     m = pa_threaded_mainloop_new();
97     assert(m);
98
99     mainloop_api = pa_threaded_mainloop_get_api(m);
100
101     context = pa_context_new(mainloop_api, argv[0]);
102     assert(context);
103
104     pa_context_set_state_callback(context, context_state_callback, NULL);
105
106     r = pa_context_connect(context, NULL, 0, NULL);
107     assert(r >= 0);
108
109     pa_gettimeofday(&start);
110     
111     pa_threaded_mainloop_start(m);
112
113     for (k = 0; k < 5000; k++) {
114         int success = 0, changed = 0;
115         pa_usec_t t, rtc;
116         struct timeval now, tv;
117         
118         pa_threaded_mainloop_lock(m);
119
120         if (stream) {
121             const pa_timing_info *info;
122             
123             if (pa_stream_get_time(stream, &t) >= 0)
124                 success = 1;
125
126             if ((info = pa_stream_get_timing_info(stream)))
127                 if (last_info.tv_usec != info->timestamp.tv_usec || last_info.tv_sec != info->timestamp.tv_sec) {
128                     changed = 1;
129                     last_info = info->timestamp;
130                 }
131         }
132         
133         pa_threaded_mainloop_unlock(m);
134         
135         if (success) {
136             pa_gettimeofday(&now);
137
138             rtc = pa_timeval_diff(&now, &start);
139             printf("%i\t%llu\t%llu\t%llu\t%llu\t%u\n", k, rtc, t, rtc-old_rtc, t-old_t, changed);
140             old_t = t;
141             old_rtc = rtc;
142         }
143
144         /* Spin loop, ugly but normal usleep() is just too badly grained */
145
146         tv = now;
147         while (pa_timeval_diff(pa_gettimeofday(&now), &tv) < 1000)
148             pthread_yield();
149     }
150
151     if (m)
152         pa_threaded_mainloop_stop(m);
153
154     if (stream) {
155         pa_stream_disconnect(stream);
156         pa_stream_unref(stream);
157     }
158     
159     if (context) {
160         pa_context_disconnect(context);
161         pa_context_unref(context);
162     }
163
164     if (m)
165         pa_threaded_mainloop_free(m);
166     
167     return 0;
168 }