Add missing header.
[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
36 #ifdef HAVE_PTHREAD
37 #include <pthread.h>
38 #endif
39
40 #ifdef HAVE_WINDOWS_H
41 #include <windows.h>
42 #endif
43
44 #include <pulse/pulseaudio.h>
45 #include <pulse/mainloop.h>
46
47 static pa_context *context = NULL;
48 static pa_stream *stream = NULL;
49 static pa_mainloop_api *mainloop_api = NULL;
50
51 static void stream_write_cb(pa_stream *p, size_t length, void *userdata) {
52
53     /* Just some silence */
54     pa_stream_write(p, pa_xmalloc0(length), length, pa_xfree, 0, PA_SEEK_RELATIVE);
55 }
56
57 /* This is called whenever the context status changes */
58 static void context_state_callback(pa_context *c, void *userdata) {
59     assert(c);
60
61     switch (pa_context_get_state(c)) {
62         case PA_CONTEXT_CONNECTING:
63         case PA_CONTEXT_AUTHORIZING:
64         case PA_CONTEXT_SETTING_NAME:
65             break;
66         
67         case PA_CONTEXT_READY: {
68
69             static const pa_sample_spec ss = {
70                 .format = PA_SAMPLE_S16LE,
71                 .rate = 44100,
72                 .channels = 1
73             };
74             
75             fprintf(stderr, "Connection established.\n");
76
77             stream = pa_stream_new(c, "interpol-test", &ss, NULL);
78             assert(stream);
79             
80             pa_stream_connect_playback(stream, NULL, NULL, PA_STREAM_INTERPOLATE_TIMING|PA_STREAM_AUTO_TIMING_UPDATE, NULL, NULL);
81             pa_stream_set_write_callback(stream, stream_write_cb, NULL);
82                 
83             break;
84         }
85             
86         case PA_CONTEXT_TERMINATED:
87             break;
88
89         case PA_CONTEXT_FAILED:
90         default:
91             fprintf(stderr, "Context error: %s\n", pa_strerror(pa_context_errno(c)));
92             abort();
93     }
94 }
95
96 int main(int argc, char *argv[]) {
97     pa_threaded_mainloop* m = NULL;
98     int k, r;
99     struct timeval start, last_info = { 0, 0 };
100     pa_usec_t old_t = 0, old_rtc = 0;
101
102     /* Set up a new main loop */
103     m = pa_threaded_mainloop_new();
104     assert(m);
105
106     mainloop_api = pa_threaded_mainloop_get_api(m);
107
108     context = pa_context_new(mainloop_api, argv[0]);
109     assert(context);
110
111     pa_context_set_state_callback(context, context_state_callback, NULL);
112
113     r = pa_context_connect(context, NULL, 0, NULL);
114     assert(r >= 0);
115
116     pa_gettimeofday(&start);
117     
118     pa_threaded_mainloop_start(m);
119
120     for (k = 0; k < 5000; k++) {
121         int success = 0, changed = 0;
122         pa_usec_t t, rtc;
123         struct timeval now, tv;
124         
125         pa_threaded_mainloop_lock(m);
126
127         if (stream) {
128             const pa_timing_info *info;
129             
130             if (pa_stream_get_time(stream, &t) >= 0)
131                 success = 1;
132
133             if ((info = pa_stream_get_timing_info(stream)))
134                 if (last_info.tv_usec != info->timestamp.tv_usec || last_info.tv_sec != info->timestamp.tv_sec) {
135                     changed = 1;
136                     last_info = info->timestamp;
137                 }
138         }
139         
140         pa_threaded_mainloop_unlock(m);
141         
142         if (success) {
143             pa_gettimeofday(&now);
144
145             rtc = pa_timeval_diff(&now, &start);
146             printf("%i\t%llu\t%llu\t%llu\t%llu\t%u\n", k, rtc, t, rtc-old_rtc, t-old_t, changed);
147             old_t = t;
148             old_rtc = rtc;
149         }
150
151         /* Spin loop, ugly but normal usleep() is just too badly grained */
152
153         tv = now;
154         while (pa_timeval_diff(pa_gettimeofday(&now), &tv) < 1000)
155 #ifdef HAVE_PTHREAD_YIELD
156             pthread_yield();
157 #elif defined(OS_IS_WIN32)
158             Sleep(0);
159 #else
160             ;
161 #endif
162     }
163
164     if (m)
165         pa_threaded_mainloop_stop(m);
166
167     if (stream) {
168         pa_stream_disconnect(stream);
169         pa_stream_unref(stream);
170     }
171     
172     if (context) {
173         pa_context_disconnect(context);
174         pa_context_unref(context);
175     }
176
177     if (m)
178         pa_threaded_mainloop_free(m);
179     
180     return 0;
181 }