mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
* Cleaned the alsa.conf syntax:
- added pcm.front, pcm.rear, pcm.center_lfe blocks * Added configuration for EMU10K1 (it's fully working one!!!) * snd_config_redirect_load->snd_config_refer_load rename * snd_config_search_alias code change (works also with pairs base.key) * cleanups in the evaluate function (the function prototype has been changed)
This commit is contained in:
parent
1b8d405606
commit
977a9a33f0
25 changed files with 468 additions and 266 deletions
|
|
@ -165,10 +165,10 @@ int main(int argc, char** argv)
|
|||
err = snd_rawmidi_status(handle_out, ostat);
|
||||
if (err < 0)
|
||||
fprintf(stderr, "output stream status error: %d\n", err);
|
||||
printf("input.status.avail = %li\n", snd_rawmidi_status_get_avail(istat));
|
||||
printf("input.status.xruns = %li\n", snd_rawmidi_status_get_xruns(istat));
|
||||
printf("output.status.avail = %li\n", snd_rawmidi_status_get_avail(ostat));
|
||||
printf("output.status.xruns = %li\n", snd_rawmidi_status_get_xruns(ostat));
|
||||
printf("input.status.avail = %i\n", snd_rawmidi_status_get_avail(istat));
|
||||
printf("input.status.xruns = %i\n", snd_rawmidi_status_get_xruns(istat));
|
||||
printf("output.status.avail = %i\n", snd_rawmidi_status_get_avail(ostat));
|
||||
printf("output.status.xruns = %i\n", snd_rawmidi_status_get_xruns(ostat));
|
||||
|
||||
diff = timediff(end, start);
|
||||
printf("Time diff: %Liusec (%Li bytes/sec)\n", diff, ((long long)opos * 1000000) / diff);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue