| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Latency test program | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     Author: Jaroslav Kysela <perex@suse.cz> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2002-03-12 20:14:33 +00:00
										 |  |  |  *     Author of bandpass filter sweep effect: | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  |  *	       Maarten de Boer <mdeboer@iua.upf.es> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This small demo program can be used for measuring latency between | 
					
						
							|  |  |  |  *  capture and playback. This latency is measured from driver (diff when | 
					
						
							|  |  |  |  *  playback and capture was started). Scheduler is set to SCHED_RR. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2001-12-30 09:22:54 +00:00
										 |  |  |  *   This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  *   it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  *   the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  *   (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  *   This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							| 
									
										
										
										
											2001-12-30 09:22:54 +00:00
										 |  |  |  *   GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2001-12-30 09:22:54 +00:00
										 |  |  |  *   You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  *   along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <sched.h>
 | 
					
						
							| 
									
										
										
										
											1999-11-19 19:05:22 +00:00
										 |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | #include <getopt.h>
 | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | #include "../include/asoundlib.h"
 | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | #include <sys/time.h>
 | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | #include <math.h>
 | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | char *pdevice = "hw:0,0"; | 
					
						
							|  |  |  | char *cdevice = "hw:0,0"; | 
					
						
							|  |  |  | snd_pcm_format_t format = SND_PCM_FORMAT_S16_LE; | 
					
						
							|  |  |  | int rate = 22050; | 
					
						
							|  |  |  | int channels = 2; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | int latency_min = 32;		/* in frames / 2 */ | 
					
						
							|  |  |  | int latency_max = 2048;		/* in frames / 2 */ | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | int loop_sec = 30;		/* seconds */ | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | int block = 0;			/* block mode */ | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | int tick_time = 0;		/* disabled, otherwise in us */ | 
					
						
							|  |  |  | int tick_time_ok = 0; | 
					
						
							|  |  |  | int use_poll = 0; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | unsigned long loop_limit; | 
					
						
							| 
									
										
										
										
											2000-02-22 17:36:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | snd_output_t *output = NULL; | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | int setparams_stream(snd_pcm_t *handle, | 
					
						
							|  |  |  | 		     snd_pcm_hw_params_t *params, | 
					
						
							|  |  |  | 		     const char *id) | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2002-09-17 12:33:05 +00:00
										 |  |  | 	unsigned int rrate; | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	err = snd_pcm_hw_params_any(handle, params); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Broken configuration for %s PCM: no configurations available: %s\n", snd_strerror(err), id); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = snd_pcm_hw_params_set_access(handle, params, SND_PCM_ACCESS_RW_INTERLEAVED); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Access type not available for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = snd_pcm_hw_params_set_format(handle, params, format); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Sample format not available for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = snd_pcm_hw_params_set_channels(handle, params, channels); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Channels count (%i) not available for %s: %s\n", channels, id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-17 12:33:05 +00:00
										 |  |  | 	rrate = rate; | 
					
						
							|  |  |  | 	err = snd_pcm_hw_params_set_rate_near(handle, params, &rrate, 0); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Rate %iHz not available for %s: %s\n", rate, id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-17 12:33:05 +00:00
										 |  |  | 	if (rrate != rate) { | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		printf("Rate doesn't match (requested %iHz, get %iHz)\n", rate, err); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int setparams_bufsize(snd_pcm_t *handle, | 
					
						
							|  |  |  | 		      snd_pcm_hw_params_t *params, | 
					
						
							|  |  |  | 		      snd_pcm_hw_params_t *tparams, | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		      snd_pcm_uframes_t bufsize, | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		      const char *id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	snd_pcm_uframes_t periodsize; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	snd_pcm_hw_params_copy(params, tparams); | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	periodsize = bufsize * 2; | 
					
						
							|  |  |  | 	err = snd_pcm_hw_params_set_buffer_size_near(handle, params, &periodsize); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		printf("Unable to set buffer size %li for %s: %s\n", bufsize * 2, id, snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	periodsize /= 2; | 
					
						
							| 
									
										
										
										
											2002-09-17 12:33:05 +00:00
										 |  |  | 	err = snd_pcm_hw_params_set_period_size_near(handle, params, &periodsize, 0); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if (err < 0) { | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		printf("Unable to set period size %li for %s: %s\n", periodsize, id, snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int setparams_set(snd_pcm_t *handle, | 
					
						
							|  |  |  | 		  snd_pcm_hw_params_t *params, | 
					
						
							|  |  |  | 		  snd_pcm_sw_params_t *swparams, | 
					
						
							|  |  |  | 		  const char *id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 	snd_pcm_uframes_t val; | 
					
						
							|  |  |  | 	unsigned int sleep_min = 0; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = snd_pcm_hw_params(handle, params); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set hw params for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = snd_pcm_sw_params_current(handle, swparams); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Unable to determine current swparams for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = snd_pcm_sw_params_set_start_threshold(handle, swparams, 0x7fffffff); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set start threshold mode for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	tick_time_ok = 0; | 
					
						
							|  |  |  | 	if (tick_time > 0) { | 
					
						
							|  |  |  | 		int time, ttime; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 		snd_pcm_hw_params_get_period_time(params, &time, NULL); | 
					
						
							|  |  |  | 		 snd_pcm_hw_params_get_tick_time(params, &ttime, NULL); | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		if (time < ttime) { | 
					
						
							|  |  |  | 			printf("Skipping to set minimal sleep: period time < tick time\n"); | 
					
						
							|  |  |  | 		} else if (ttime <= 0) { | 
					
						
							|  |  |  | 			printf("Skipping to set minimal sleep: tick time <= 0 (%i)\n", ttime); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			sleep_min = tick_time / ttime; | 
					
						
							|  |  |  | 			if (sleep_min <= 0) | 
					
						
							|  |  |  | 				sleep_min = 1; | 
					
						
							|  |  |  | 			err = snd_pcm_sw_params_set_sleep_min(handle, swparams, sleep_min); | 
					
						
							|  |  |  | 			if (err < 0) { | 
					
						
							|  |  |  | 				printf("Unable to set minimal sleep %i for %s: %s\n", sleep_min, id, snd_strerror(err)); | 
					
						
							|  |  |  | 				return err; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			tick_time_ok = sleep_min * ttime; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	if (!block) | 
					
						
							|  |  |  | 		val = 4; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		snd_pcm_hw_params_get_period_size(params, &val, NULL); | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	if (tick_time_ok > 0) | 
					
						
							|  |  |  | 		val = 16; | 
					
						
							|  |  |  | 	err = snd_pcm_sw_params_set_avail_min(handle, swparams, val); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set avail min for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	val = !block ? 4 : 1; | 
					
						
							|  |  |  | 	err = snd_pcm_sw_params_set_xfer_align(handle, swparams, val); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set transfer align for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = snd_pcm_sw_params(handle, swparams); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set sw params for %s: %s\n", id, snd_strerror(err)); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | int setparams(snd_pcm_t *phandle, snd_pcm_t *chandle, int *bufsize) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	int err, last_bufsize = *bufsize; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	snd_pcm_hw_params_t *pt_params, *ct_params;	/* templates with rate, format and channels */ | 
					
						
							|  |  |  | 	snd_pcm_hw_params_t *p_params, *c_params; | 
					
						
							|  |  |  | 	snd_pcm_sw_params_t *p_swparams, *c_swparams; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	snd_pcm_uframes_t size, p_size, c_size, p_psize, c_psize; | 
					
						
							|  |  |  | 	unsigned int p_time, c_time; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	snd_pcm_hw_params_alloca(&p_params); | 
					
						
							|  |  |  | 	snd_pcm_hw_params_alloca(&c_params); | 
					
						
							|  |  |  | 	snd_pcm_hw_params_alloca(&pt_params); | 
					
						
							|  |  |  | 	snd_pcm_hw_params_alloca(&ct_params); | 
					
						
							|  |  |  | 	snd_pcm_sw_params_alloca(&p_swparams); | 
					
						
							|  |  |  | 	snd_pcm_sw_params_alloca(&c_swparams); | 
					
						
							|  |  |  | 	if ((err = setparams_stream(phandle, pt_params, "playback")) < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set parameters for playback stream: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if ((err = setparams_stream(chandle, ct_params, "capture")) < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set parameters for playback stream: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       __again: | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  |       	if (last_bufsize == *bufsize) | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		*bufsize += 4; | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	last_bufsize = *bufsize; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if (*bufsize > latency_max) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	if ((err = setparams_bufsize(phandle, p_params, pt_params, *bufsize, "playback")) < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set sw parameters for playback stream: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if ((err = setparams_bufsize(chandle, c_params, ct_params, *bufsize, "capture")) < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set sw parameters for playback stream: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	snd_pcm_hw_params_get_period_size(p_params, &size, NULL); | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	if (size > *bufsize) | 
					
						
							|  |  |  | 		*bufsize = size; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	snd_pcm_hw_params_get_period_size(c_params, &size, NULL); | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	if (size > *bufsize) | 
					
						
							|  |  |  | 		*bufsize = size; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	snd_pcm_hw_params_get_period_time(p_params, &p_time, NULL); | 
					
						
							|  |  |  | 	snd_pcm_hw_params_get_period_time(c_params, &c_time, NULL); | 
					
						
							|  |  |  | 	if (p_time != c_time) | 
					
						
							| 
									
										
										
										
											2001-11-16 10:59:29 +00:00
										 |  |  | 		goto __again; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	snd_pcm_hw_params_get_period_size(p_params, &p_psize, NULL); | 
					
						
							|  |  |  | 	snd_pcm_hw_params_get_buffer_size(p_params, &p_size); | 
					
						
							|  |  |  | 	if (p_psize * 2 < p_size) | 
					
						
							| 
									
										
										
										
											2001-11-16 10:59:29 +00:00
										 |  |  | 		goto __again; | 
					
						
							| 
									
										
										
										
											2002-09-19 16:12:13 +00:00
										 |  |  | 	snd_pcm_hw_params_get_period_size(c_params, &c_psize, NULL); | 
					
						
							|  |  |  | 	snd_pcm_hw_params_get_buffer_size(c_params, &c_size); | 
					
						
							|  |  |  | 	if (c_psize * 2 < c_size) | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 		goto __again; | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	if ((err = setparams_set(phandle, p_params, p_swparams, "playback")) < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set sw parameters for playback stream: %s\n", snd_strerror(err)); | 
					
						
							|  |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if ((err = setparams_set(chandle, c_params, c_swparams, "capture")) < 0) { | 
					
						
							|  |  |  | 		printf("Unable to set sw parameters for playback stream: %s\n", snd_strerror(err)); | 
					
						
							|  |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 	if ((err = snd_pcm_prepare(phandle)) < 0) { | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		printf("Prepare error: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-07-24 09:17:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	snd_pcm_dump(phandle, output); | 
					
						
							|  |  |  | 	snd_pcm_dump(chandle, output); | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 	fflush(stdout); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | void showstat(snd_pcm_t *handle, size_t frames) | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	snd_pcm_status_t *status; | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	snd_pcm_status_alloca(&status); | 
					
						
							|  |  |  | 	if ((err = snd_pcm_status(handle, status)) < 0) { | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 		printf("Stream status error: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	printf("*** frames = %li ***\n", (long)frames); | 
					
						
							|  |  |  | 	snd_pcm_status_dump(status, output); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | void showlatency(size_t latency) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	double d; | 
					
						
							|  |  |  | 	latency *= 2; | 
					
						
							|  |  |  | 	d = (double)latency / (double)rate; | 
					
						
							|  |  |  | 	printf("Trying latency %li frames, %.3fus, %.6fms (%.4fHz)\n", (long)latency, d * 1000000, d * 1000, (double)1 / d); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void showinmax(size_t in_max) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	double d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	printf("Maximum read: %li frames\n", (long)in_max); | 
					
						
							|  |  |  | 	d = (double)in_max / (double)rate; | 
					
						
							|  |  |  | 	printf("Maximum read latency: %.3fus, %.6fms (%.4fHz)\n", d * 1000000, d * 1000, (double)1 / d); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | void gettimestamp(snd_pcm_t *handle, snd_timestamp_t *timestamp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	snd_pcm_status_t *status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_pcm_status_alloca(&status); | 
					
						
							|  |  |  | 	if ((err = snd_pcm_status(handle, status)) < 0) { | 
					
						
							|  |  |  | 		printf("Stream status error: %s\n", snd_strerror(err)); | 
					
						
							|  |  |  | 		exit(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_pcm_status_get_trigger_tstamp(status, timestamp); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void setscheduler(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct sched_param sched_param; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-27 15:07:56 +00:00
										 |  |  | 	if (sched_getparam(0, &sched_param) < 0) { | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		printf("Scheduler getparam failed...\n"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	sched_param.sched_priority = sched_get_priority_max(SCHED_RR); | 
					
						
							|  |  |  | 	if (!sched_setscheduler(0, SCHED_RR, &sched_param)) { | 
					
						
							|  |  |  | 		printf("Scheduler set to Round Robin with priority %i...\n", sched_param.sched_priority); | 
					
						
							|  |  |  | 		fflush(stdout); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	printf("!!!Scheduler set to Round Robin with priority %i FAILED!!!\n", sched_param.sched_priority); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | long timediff(snd_timestamp_t t1, snd_timestamp_t t2) | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	signed long l; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	t1.tv_sec -= t2.tv_sec; | 
					
						
							| 
									
										
										
										
											1998-11-27 15:07:56 +00:00
										 |  |  | 	l = (signed long) t1.tv_usec - (signed long) t2.tv_usec; | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 	if (l < 0) { | 
					
						
							|  |  |  | 		t1.tv_sec--; | 
					
						
							|  |  |  | 		l = -l; | 
					
						
							|  |  |  | 		l %= 1000000; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return (t1.tv_sec * 1000000) + l; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | long readbuf(snd_pcm_t *handle, char *buf, long len, size_t *frames, size_t *max) | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	long r; | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!block) { | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			r = snd_pcm_readi(handle, buf, len); | 
					
						
							|  |  |  | 		} while (r == -EAGAIN); | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		if (r > 0) { | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 			*frames += r; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 			if (*max < r) | 
					
						
							|  |  |  | 				*max = r; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		// printf("read = %li\n", r);
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		int frame_bytes = (snd_pcm_format_width(format) / 8) * channels; | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			r = snd_pcm_readi(handle, buf, len); | 
					
						
							|  |  |  | 			if (r > 0) { | 
					
						
							|  |  |  | 				buf += r * frame_bytes; | 
					
						
							|  |  |  | 				len -= r; | 
					
						
							|  |  |  | 				*frames += r; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 				if (*max < r) | 
					
						
							|  |  |  | 					*max = r; | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			// printf("r = %li, len = %li\n", r, len);
 | 
					
						
							|  |  |  | 		} while (r >= 1 && len > 0); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	// showstat(handle, 0);
 | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | long writebuf(snd_pcm_t *handle, char *buf, long len, size_t *frames) | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	long r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (len > 0) { | 
					
						
							| 
									
										
										
										
											2000-09-24 09:57:26 +00:00
										 |  |  | 		r = snd_pcm_writei(handle, buf, len); | 
					
						
							| 
									
										
										
										
											1999-11-19 19:05:22 +00:00
										 |  |  | 		if (r == -EAGAIN) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		// printf("write = %li\n", r);
 | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 		if (r < 0) | 
					
						
							|  |  |  | 			return r; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		// showstat(handle, 0);
 | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 		buf += r * 4; | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 		len -= r; | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 		*frames += r; | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 			 | 
					
						
							|  |  |  | #define FILTERSWEEP_LFO_CENTER 2000.
 | 
					
						
							|  |  |  | #define FILTERSWEEP_LFO_DEPTH 1800.
 | 
					
						
							|  |  |  | #define FILTERSWEEP_LFO_FREQ 0.2
 | 
					
						
							|  |  |  | #define FILTER_BANDWIDTH 50
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-12 20:14:33 +00:00
										 |  |  | /* filter the sweep variables */ | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | float lfo,dlfo,fs,fc,BW,C,D,a0,a1,a2,b1,b2,*x[3],*y[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void applyeffect(char* buffer,int r) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	short* samples = (short*) buffer; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	for (i=0;i<r;i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		int chn; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		fc = sin(lfo)*FILTERSWEEP_LFO_DEPTH+FILTERSWEEP_LFO_CENTER; | 
					
						
							|  |  |  | 		lfo += dlfo; | 
					
						
							|  |  |  | 		if (lfo>2.*M_PI) lfo -= 2.*M_PI; | 
					
						
							|  |  |  | 		C = 1./tan(M_PI*BW/fs); | 
					
						
							|  |  |  | 		D = 2.*cos(2*M_PI*fc/fs); | 
					
						
							|  |  |  | 		a0 = 1./(1.+C); | 
					
						
							|  |  |  | 		a1 = 0; | 
					
						
							|  |  |  | 		a2 = -a0; | 
					
						
							|  |  |  | 		b1 = -C*D*a0; | 
					
						
							|  |  |  | 		b2 = (C-1)*a0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (chn=0;chn<channels;chn++) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			x[chn][2] = x[chn][1]; | 
					
						
							|  |  |  | 			x[chn][1] = x[chn][0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			y[chn][2] = y[chn][1]; | 
					
						
							|  |  |  | 			y[chn][1] = y[chn][0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			x[chn][0] = samples[i*channels+chn]; | 
					
						
							|  |  |  | 			y[chn][0] = a0*x[chn][0] + a1*x[chn][1] + a2*x[chn][2]  | 
					
						
							|  |  |  | 				- b1*y[chn][1] - b2*y[chn][2]; | 
					
						
							|  |  |  | 			samples[i*channels+chn] = y[chn][0]; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | void help(void) | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 	int k; | 
					
						
							| 
									
										
										
										
											2003-07-14 10:22:39 +00:00
										 |  |  | 	printf( | 
					
						
							|  |  |  | "Usage: latency [OPTION]... [FILE]...\n" | 
					
						
							|  |  |  | "-h,--help      help\n" | 
					
						
							|  |  |  | "-P,--pdevice   playback device\n" | 
					
						
							|  |  |  | "-C,--cdevice   capture device\n" | 
					
						
							|  |  |  | "-m,--min       minimum latency in frames\n" | 
					
						
							|  |  |  | "-M,--max       maximum latency in frames\n" | 
					
						
							|  |  |  | "-F,--frames    frames to transfer\n" | 
					
						
							|  |  |  | "-f,--format    sample format\n" | 
					
						
							|  |  |  | "-c,--channels  channels\n" | 
					
						
							|  |  |  | "-r,--rate      rate\n" | 
					
						
							|  |  |  | "-s,--seconds   duration of test in seconds\n" | 
					
						
							|  |  |  | "-b,--block     block mode\n" | 
					
						
							|  |  |  | "-t,--time      maximal tick time in us\n" | 
					
						
							|  |  |  | "-p,--poll      use poll (wait for event - reduces CPU usage)\n" | 
					
						
							|  |  |  | "-e,--effect    apply an effect (bandpass filter sweep)\n" | 
					
						
							|  |  |  | ); | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  |         printf("Recognized sample formats are:"); | 
					
						
							|  |  |  |         for (k = 0; k < SND_PCM_FORMAT_LAST; ++(unsigned long) k) { | 
					
						
							|  |  |  |                 const char *s = snd_pcm_format_name(k); | 
					
						
							|  |  |  |                 if (s) | 
					
						
							|  |  |  |                         printf(" %s", s); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  |         printf("\n\n"); | 
					
						
							| 
									
										
										
										
											2003-07-14 10:22:39 +00:00
										 |  |  |         printf( | 
					
						
							|  |  |  | "Tip #1 (usable latency with large periods, non-blocking mode, good CPU usage,\n" | 
					
						
							|  |  |  | "        superb xrun prevention):\n" | 
					
						
							|  |  |  | "  latency -m 8192 -M 8192 -t 1 -p\n" | 
					
						
							|  |  |  | "Tip #2 (superb latency, non-blocking mode, but heavy CPU usage):\n" | 
					
						
							|  |  |  | "  latency -m 128 -M 128\n" | 
					
						
							|  |  |  | ); | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char *argv[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct option long_option[] = | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		{"help", 0, NULL, 'h'}, | 
					
						
							|  |  |  | 		{"pdevice", 1, NULL, 'P'}, | 
					
						
							|  |  |  | 		{"cdevice", 1, NULL, 'C'}, | 
					
						
							|  |  |  | 		{"min", 1, NULL, 'm'}, | 
					
						
							|  |  |  | 		{"max", 1, NULL, 'M'}, | 
					
						
							|  |  |  | 		{"frames", 1, NULL, 'F'}, | 
					
						
							|  |  |  | 		{"format", 1, NULL, 'f'}, | 
					
						
							|  |  |  | 		{"channels", 1, NULL, 'c'}, | 
					
						
							|  |  |  | 		{"rate", 1, NULL, 'r'}, | 
					
						
							| 
									
										
										
										
											2001-10-15 12:36:55 +00:00
										 |  |  | 		{"seconds", 1, NULL, 's'}, | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		{"block", 0, NULL, 'b'}, | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		{"time", 1, NULL, 't'}, | 
					
						
							|  |  |  | 		{"poll", 0, NULL, 'p'}, | 
					
						
							|  |  |  | 		{"effect", 0, NULL, 'e'}, | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 		{NULL, 0, NULL, 0}, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 	snd_pcm_t *phandle, *chandle; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	char *buffer; | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 	int err, latency, morehelp; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	int ok; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	snd_timestamp_t p_tstamp, c_tstamp; | 
					
						
							| 
									
										
										
										
											2000-05-08 18:53:38 +00:00
										 |  |  | 	ssize_t r; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	size_t frames_in, frames_out, in_max; | 
					
						
							|  |  |  | 	int effect = 0; | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 	morehelp = 0; | 
					
						
							|  |  |  | 	while (1) { | 
					
						
							|  |  |  | 		int c; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		if ((c = getopt_long(argc, argv, "hP:C:m:M:F:f:c:r:s:bt:pe", long_option, NULL)) < 0) | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		switch (c) { | 
					
						
							|  |  |  | 		case 'h': | 
					
						
							|  |  |  | 			morehelp++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'P': | 
					
						
							|  |  |  | 			pdevice = strdup(optarg); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'C': | 
					
						
							|  |  |  | 			cdevice = strdup(optarg); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'm': | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 			err = atoi(optarg) / 2; | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 			latency_min = err >= 4 ? err : 4; | 
					
						
							|  |  |  | 			if (latency_max < latency_min) | 
					
						
							|  |  |  | 				latency_max = latency_min; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'M': | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 			err = atoi(optarg) / 2; | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 			latency_max = latency_min > err ? latency_min : err; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2003-02-17 18:01:16 +00:00
										 |  |  | 		case 'f': | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 			format = snd_pcm_format_value(optarg); | 
					
						
							|  |  |  | 			if (format == SND_PCM_FORMAT_UNKNOWN) { | 
					
						
							|  |  |  | 				printf("Unknown format, setting to default S16_LE\n"); | 
					
						
							|  |  |  | 				format = SND_PCM_FORMAT_S16_LE; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'c': | 
					
						
							|  |  |  | 			err = atoi(optarg); | 
					
						
							|  |  |  | 			channels = err >= 1 && err < 1024 ? err : 1; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'r': | 
					
						
							|  |  |  | 			err = atoi(optarg); | 
					
						
							|  |  |  | 			rate = err >= 4000 && err < 200000 ? err : 44100; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2001-10-15 12:36:55 +00:00
										 |  |  | 		case 's': | 
					
						
							|  |  |  | 			err = atoi(optarg); | 
					
						
							|  |  |  | 			loop_sec = err >= 1 && err <= 100000 ? err : 30; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		case 'b': | 
					
						
							|  |  |  | 			block = 1; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		case 't': | 
					
						
							|  |  |  | 			tick_time = atoi(optarg); | 
					
						
							|  |  |  | 			tick_time = tick_time < 0 ? 0 : tick_time; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'p': | 
					
						
							|  |  |  | 			use_poll = 1; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 'e': | 
					
						
							|  |  |  | 			effect = 1; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (morehelp) { | 
					
						
							|  |  |  | 		help(); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 	err = snd_output_stdio_attach(&output, stdout, 0); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		printf("Output failed: %s\n", snd_strerror(err)); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	loop_limit = loop_sec * rate; | 
					
						
							|  |  |  | 	latency = latency_min - 4; | 
					
						
							|  |  |  | 	buffer = malloc((latency_max * snd_pcm_format_width(format) / 8) * 2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 	setscheduler(); | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	printf("Playback device is %s\n", pdevice); | 
					
						
							|  |  |  | 	printf("Capture device is %s\n", cdevice); | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	printf("Parameters are %iHz, %s, %i channels, %s mode\n", rate, snd_pcm_format_name(format), channels, block ? "blocking" : "non-blocking"); | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	printf("Wanted tick time: %ius, poll mode: %s\n", tick_time, use_poll ? "yes" : "no"); | 
					
						
							|  |  |  | 	printf("Loop limit is %li frames, minimum latency = %i, maximum latency = %i\n", loop_limit, latency_min * 2, latency_max * 2); | 
					
						
							| 
									
										
										
										
											2001-08-10 16:44:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	if ((err = snd_pcm_open(&phandle, pdevice, SND_PCM_STREAM_PLAYBACK, block ? 0 : SND_PCM_NONBLOCK)) < 0) { | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		printf("Playback open error: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1999-06-03 21:41:29 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 	if ((err = snd_pcm_open(&chandle, cdevice, SND_PCM_STREAM_CAPTURE, block ? 0 : SND_PCM_NONBLOCK)) < 0) { | 
					
						
							| 
									
										
										
										
											1998-11-27 15:07:56 +00:00
										 |  |  | 		printf("Record open error: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											1999-06-03 21:41:29 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-12 20:14:33 +00:00
										 |  |  | 	/* initialize the filter sweep variables */ | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 	if (effect) { | 
					
						
							|  |  |  | 		fs = (float) rate; | 
					
						
							|  |  |  | 		BW = FILTER_BANDWIDTH; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		lfo = 0; | 
					
						
							|  |  |  | 		dlfo = 2.*M_PI*FILTERSWEEP_LFO_FREQ/fs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		x[0] = (float*) malloc(channels*sizeof(float));		 | 
					
						
							|  |  |  | 		x[1] = (float*) malloc(channels*sizeof(float));		 | 
					
						
							|  |  |  | 		x[2] = (float*) malloc(channels*sizeof(float));		 | 
					
						
							|  |  |  | 		y[0] = (float*) malloc(channels*sizeof(float));		 | 
					
						
							|  |  |  | 		y[1] = (float*) malloc(channels*sizeof(float));		 | 
					
						
							|  |  |  | 		y[2] = (float*) malloc(channels*sizeof(float));		 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 			   | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 	while (1) { | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 		frames_in = frames_out = 0; | 
					
						
							| 
									
										
										
										
											2000-07-24 09:17:14 +00:00
										 |  |  | 		if (setparams(phandle, chandle, &latency) < 0) | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		showlatency(latency); | 
					
						
							|  |  |  | 		if (tick_time_ok) | 
					
						
							|  |  |  | 			printf("Using tick time %ius\n", tick_time_ok); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		if ((err = snd_pcm_link(chandle, phandle)) < 0) { | 
					
						
							|  |  |  | 			printf("Streams link error: %s\n", snd_strerror(err)); | 
					
						
							|  |  |  | 			exit(0); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (snd_pcm_format_set_silence(format, buffer, latency*channels) < 0) { | 
					
						
							| 
									
										
										
										
											2000-05-08 18:53:38 +00:00
										 |  |  | 			fprintf(stderr, "silence error\n"); | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2000-05-08 18:53:38 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-10-15 11:47:53 +00:00
										 |  |  | 		if (writebuf(phandle, buffer, latency, &frames_out) < 0) { | 
					
						
							| 
									
										
										
										
											2000-05-08 18:53:38 +00:00
										 |  |  | 			fprintf(stderr, "write error\n"); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-10-15 11:49:36 +00:00
										 |  |  | 		if (writebuf(phandle, buffer, latency, &frames_out) < 0) { | 
					
						
							|  |  |  | 			fprintf(stderr, "write error\n"); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		if ((err = snd_pcm_start(chandle)) < 0) { | 
					
						
							| 
									
										
										
										
											2000-07-24 09:17:14 +00:00
										 |  |  | 			printf("Go error: %s\n", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 			exit(0); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		gettimestamp(phandle, &p_tstamp); | 
					
						
							|  |  |  | 		gettimestamp(chandle, &c_tstamp); | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 		printf("Playback:\n"); | 
					
						
							|  |  |  | 		showstat(phandle, frames_out); | 
					
						
							|  |  |  | 		printf("Capture:\n"); | 
					
						
							|  |  |  | 		showstat(chandle, frames_in); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 		ok = 1; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		in_max = 0; | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		while (ok && frames_in < loop_limit) { | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 			if (use_poll) { | 
					
						
							|  |  |  | 				/* use poll to wait for next event */ | 
					
						
							|  |  |  | 				snd_pcm_wait(chandle, 1000); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if ((r = readbuf(chandle, buffer, latency, &frames_in, &in_max)) < 0) | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 				ok = 0; | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 			else { | 
					
						
							|  |  |  | 				if (effect) | 
					
						
							|  |  |  | 					applyeffect(buffer,r); | 
					
						
							|  |  |  | 			 	if (writebuf(phandle, buffer, r, &frames_out) < 0) | 
					
						
							|  |  |  | 					ok = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		if (ok) | 
					
						
							|  |  |  | 			printf("Success\n"); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			printf("Failure\n"); | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 		printf("Playback:\n"); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		showstat(phandle, frames_out); | 
					
						
							| 
									
										
										
										
											2000-07-18 13:38:58 +00:00
										 |  |  | 		printf("Capture:\n"); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		showstat(chandle, frames_in); | 
					
						
							| 
									
										
										
										
											2001-10-31 16:03:33 +00:00
										 |  |  | 		showinmax(in_max); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		if (p_tstamp.tv_sec == p_tstamp.tv_sec && | 
					
						
							|  |  |  | 		    p_tstamp.tv_usec == c_tstamp.tv_usec) | 
					
						
							| 
									
										
										
										
											2000-07-24 09:17:14 +00:00
										 |  |  | 			printf("Hardware sync\n"); | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		snd_pcm_drop(chandle); | 
					
						
							|  |  |  | 		snd_pcm_nonblock(phandle, 0); | 
					
						
							| 
									
										
										
										
											2000-09-29 20:49:18 +00:00
										 |  |  | 		snd_pcm_drain(phandle); | 
					
						
							| 
									
										
										
										
											2001-10-26 16:12:01 +00:00
										 |  |  | 		snd_pcm_nonblock(phandle, !block ? 1 : 0); | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 		if (ok) { | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | #if 1
 | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 			printf("Playback time = %li.%i, Record time = %li.%i, diff = %li\n", | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 			       p_tstamp.tv_sec, | 
					
						
							|  |  |  | 			       (int)p_tstamp.tv_usec, | 
					
						
							|  |  |  | 			       c_tstamp.tv_sec, | 
					
						
							|  |  |  | 			       (int)c_tstamp.tv_usec, | 
					
						
							|  |  |  | 			       timediff(p_tstamp, c_tstamp)); | 
					
						
							| 
									
										
										
										
											2000-07-24 09:17:14 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-08-10 08:56:25 +00:00
										 |  |  | 		snd_pcm_unlink(chandle); | 
					
						
							|  |  |  | 		snd_pcm_hw_free(phandle); | 
					
						
							|  |  |  | 		snd_pcm_hw_free(chandle); | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	snd_pcm_close(phandle); | 
					
						
							| 
									
										
										
										
											1999-11-06 23:47:07 +00:00
										 |  |  | 	snd_pcm_close(chandle); | 
					
						
							| 
									
										
										
										
											1999-06-03 21:41:29 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1998-11-27 00:13:09 +00:00
										 |  |  | } |