Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 520 → Rev 521

/programy/C/ix86/sound/capture.c
3,12 → 3,13
#include <alsa/asoundlib.h>
 
int exact_rate = 44100;
#define BUFFER_SIZE 1024
 
main (int argc, char *argv[])
{
int i;
int i,j;
int err;
short buf[128];
short buf[BUFFER_SIZE];
snd_pcm_t *capture_handle;
snd_pcm_hw_params_t *hw_params;
19,7 → 20,7
exit (1);
}
fprintf (stdout,"nastaveni formatu");
fprintf (stdout,"nastaveni formatu\n");
 
if ((err = snd_pcm_hw_params_malloc (&hw_params)) < 0) {
fprintf (stderr, "cannot allocate hardware parameter structure (%s)\n",
44,7 → 45,7
snd_strerror (err));
exit (1);
}
fprintf (stdout,"nastaveni formatu");
fprintf (stdout,"nastaveni formatu\n");
if ((err = snd_pcm_hw_params_set_rate_near (capture_handle, hw_params, &exact_rate, 0)) < 0) {
fprintf (stderr, "cannot set sample rate (%s)\n",
51,7 → 52,7
snd_strerror (err));
exit (1);
}
fprintf (stdout,"nastaveni vzorkovani");
fprintf (stdout,"nastaveni vzorkovani\n");
if ((err = snd_pcm_hw_params_set_channels (capture_handle, hw_params, 2)) < 0) {
fprintf (stderr, "cannot set channel count (%s)\n",
59,7 → 60,7
exit (1);
}
fprintf (stdout,"nastaveni poctu kanalu");
fprintf (stdout,"nastaveni poctu kanalu\n");
 
if ((err = snd_pcm_hw_params (capture_handle, hw_params)) < 0) {
fprintf (stderr, "cannot set parameters (%s)\n",
67,7 → 68,7
exit (1);
}
 
fprintf (stdout,"nastaveni parametru");
fprintf (stdout,"nastaveni parametru\n");
snd_pcm_hw_params_free (hw_params);
76,17 → 77,18
snd_strerror (err));
exit (1);
}
fprintf (stdout,"povoleni audia");
fprintf (stdout,"povoleni audia\n");
for (i = 0; i < 10; ++i) {
if ((err = snd_pcm_readi (capture_handle, buf, 128)) != 128) {
 
if ((err = snd_pcm_readi (capture_handle, buf, BUFFER_SIZE)) != BUFFER_SIZE) {
fprintf (stderr, "read from audio interface failed (%s)\n",
snd_strerror (err));
exit (1);
 
}
}
}
for (j=0; j < 500; j=j+2) fprintf (stdout,"%u:%d %d\n ",j,buf[j], buf[j+1]);
 
snd_pcm_close (capture_handle);
exit (0);
}
 
/programy/C/ix86/sound/duplex.c
4,174 → 4,163
#include <poll.h>
#include <alsa/asoundlib.h>
 
int exact_rate;
int rate = 44100;
snd_pcm_t *playback_handle;
short buf[4096];
/* you allocate these in heap */
int restarting;
int fragments = 2;
int channels = 1;
int buffer_size = 512;
int sample_rate = 48000;
int frame_size = 1024;
int bits = 16;
 
FILE *random;
char *snd_device_in = "plughw:0,0";
char *snd_device_out = "plughw:0,0";
snd_pcm_t *playback_handle;
snd_pcm_t *capture_handle;
 
int
playback_callback (snd_pcm_sframes_t nframes)
{
int err;
int err;
 
printf ("playback callback called with %u frames\n", nframes);
int configure_alsa_audio(snd_pcm_t *device, int channels)
{
snd_pcm_hw_params_t *hw_params;
int err;
int tmp;
 
fread(buf,1,4096,random);
/* ... fill buf with data ... */
if ((err = snd_pcm_writei (playback_handle, buf, nframes)) < 0) {
fprintf (stderr, "write failed (%s)\n", snd_strerror (err));
}
return err;
}
snd_pcm_uframes_t frames;
 
/* allocate memory for hardware parameter structure */
if ((err = snd_pcm_hw_params_malloc(&hw_params)) < 0) {
fprintf (stderr, "cannot allocate parameter structure (%s)\n",
snd_strerror(err));
return 1;
}
/* fill structure from current audio parameters */
if ((err = snd_pcm_hw_params_any(device, hw_params)) < 0) {
fprintf (stderr, "cannot initialize parameter structure (%s)\n",
snd_strerror(err));
return 1;
}
 
/* set access type, sample rate, sample format, channels */
if ((err = snd_pcm_hw_params_set_access(device, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED)) < 0) {
fprintf (stderr, "cannot set access type: %s\n",
snd_strerror(err));
return 1;
}
// bits = 16
if ((err = snd_pcm_hw_params_set_format(device, hw_params, SND_PCM_FORMAT_S16_LE)) < 0) {
fprintf (stderr, "cannot set sample format: %s\n",
snd_strerror(err));
return 1;
}
tmp = sample_rate;
if ((err = snd_pcm_hw_params_set_rate_near(device, hw_params, &tmp, 0)) < 0) {
fprintf (stderr, "cannot set sample rate: %s\n",
snd_strerror(err));
return 1;
}
if (tmp != sample_rate) {
fprintf(stderr, "Could not set requested sample rate, asked for %d got %d\n", sample_rate, tmp);
sample_rate = tmp;
}
if ((err = snd_pcm_hw_params_set_channels(device, hw_params, channels)) < 0) {
fprintf (stderr, "cannot set channel count: %s\n",
snd_strerror(err));
return 1;
}
 
if ((err = snd_pcm_hw_params_set_periods_near(device, hw_params, &fragments, 0)) < 0) {
fprintf(stderr, "Error setting # fragments to %d: %s\n", fragments,
snd_strerror(err));
return 1;
}
 
frame_size = channels * (bits / 8);
frames = buffer_size / frame_size * fragments;
if ((err = snd_pcm_hw_params_set_buffer_size_near(device, hw_params, &frames)) < 0) {
fprintf(stderr, "Error setting buffer_size %d frames: %s\n", frames,
snd_strerror(err));
return 1;
}
if (buffer_size != frames * frame_size / fragments) {
fprintf(stderr, "Could not set requested buffer size, asked for %d got %d\n", buffer_size, frames * frame_size / fragments);
buffer_size = frames * frame_size / fragments;
}
if ((err = snd_pcm_hw_params(device, hw_params)) < 0) {
fprintf(stderr, "Error setting HW params: %s\n",
snd_strerror(err));
return 1;
}
return 0;
}
main (int argc, char *argv[])
{
main (void)
{
random = fopen("/dev/urandom","r");
int i,frames, inframes, outframes, frame_size;
 
snd_pcm_hw_params_t *hw_params;
snd_pcm_sw_params_t *sw_params;
snd_pcm_sframes_t frames_to_deliver;
int nfds;
int err;
struct pollfd *pfds;
if ((err = snd_pcm_open (&playback_handle, argv[1], SND_PCM_STREAM_PLAYBACK, 0)) < 0) {
fprintf (stderr, "cannot open audio device %s (%s)\n",
argv[1],
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_hw_params_malloc (&hw_params)) < 0) {
fprintf (stderr, "cannot allocate hardware parameter structure (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_hw_params_any (playback_handle, hw_params)) < 0) {
fprintf (stderr, "cannot initialize hardware parameter structure (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_hw_params_set_access (playback_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED)) < 0) {
fprintf (stderr, "cannot set access type (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_hw_params_set_format (playback_handle, hw_params, SND_PCM_FORMAT_S16_LE)) < 0) {
fprintf (stderr, "cannot set sample format (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_open(&playback_handle, snd_device_out, SND_PCM_STREAM_PLAYBACK, 0)) < 0) {
fprintf(stderr, "cannot open output audio device %s: %s\n", snd_device_in, snd_strerror(err));
exit(1);
}
 
exact_rate = rate;
if ((err = snd_pcm_hw_params_set_rate_near (playback_handle, hw_params, &exact_rate, 0)) < 0) {
fprintf (stderr, "cannot set sample rate (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_open(&capture_handle, snd_device_in, SND_PCM_STREAM_CAPTURE, 0)) < 0) {
fprintf(stderr, "cannot open input audio device %s: %s\n", snd_device_out, snd_strerror(err));
exit(1);
}
 
configure_alsa_audio(snd_device_in, channels);
configure_alsa_audio(snd_device_out, channels);
 
restarting = 1;
 
while (1) {
frame_size = channels * (bits / 8);
frames = buffer_size / frame_size;
 
if (restarting) {
restarting = 0;
/* drop any output we might got and stop */
snd_pcm_drop(capture_handle);
snd_pcm_drop(playback_handle);
/* prepare for use */
snd_pcm_prepare(capture_handle);
snd_pcm_prepare(playback_handle);
 
/* fill the whole output buffer */
for (i = 0; i < fragments; i += 1)
snd_pcm_writei(playback_handle, rdbuf, frames);
}
 
while ((inframes = snd_pcm_readi(capture_handle, rdbuf, frames)) < 0) {
if (inframes == -EAGAIN)
continue;
// by the way, writing to terminal emulator is costly if you use
// bad emulators like gnome-terminal, so don't do this.
fprintf(stderr, "Input buffer overrun\n");
restarting = 1;
snd_pcm_prepare(capture_handle);
}
if (inframes != frames)
fprintf(stderr, "Short read from capture device: %d, expecting %d\n", inframes, frames);
 
/* now processes the frames */
do_something(rdbuf, inframes);
 
while ((outframes = snd_pcm_writei(playback_handle, rdbuf, inframes)) < 0) {
if (outframes == -EAGAIN)
continue;
fprintf(stderr, "Output buffer underrun\n");
restarting = 1;
snd_pcm_prepare(playback_handle);
}
if (outframes != inframes)
fprintf(stderr, "Short write to playback device: %d, expecting %d\n", outframes, frames);
 
 
if ((err = snd_pcm_hw_params_set_channels (playback_handle, hw_params, 2)) < 0) {
fprintf (stderr, "cannot set channel count (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_hw_params (playback_handle, hw_params)) < 0) {
fprintf (stderr, "cannot set parameters (%s)\n",
snd_strerror (err));
exit (1);
}
snd_pcm_hw_params_free (hw_params);
/* tell ALSA to wake us up whenever 4096 or more frames
of playback data can be delivered. Also, tell
ALSA that we'll start the device ourselves.
*/
if ((err = snd_pcm_sw_params_malloc (&sw_params)) < 0) {
fprintf (stderr, "cannot allocate software parameters structure (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_sw_params_current (playback_handle, sw_params)) < 0) {
fprintf (stderr, "cannot initialize software parameters structure (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_sw_params_set_avail_min (playback_handle, sw_params, 4096)) < 0) {
fprintf (stderr, "cannot set minimum available count (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_sw_params_set_start_threshold (playback_handle, sw_params, 0U)) < 0) {
fprintf (stderr, "cannot set start mode (%s)\n",
snd_strerror (err));
exit (1);
}
if ((err = snd_pcm_sw_params (playback_handle, sw_params)) < 0) {
fprintf (stderr, "cannot set software parameters (%s)\n",
snd_strerror (err));
exit (1);
}
/* the interface will interrupt the kernel every 4096 frames, and ALSA
will wake up this program very soon after that.
*/
if ((err = snd_pcm_prepare (playback_handle)) < 0) {
fprintf (stderr, "cannot prepare audio interface for use (%s)\n",
snd_strerror (err));
exit (1);
}
while (1) {
/* wait till the interface is ready for data, or 1 second
has elapsed.
*/
if ((err = snd_pcm_wait (playback_handle, 1000)) < 0) {
fprintf (stderr, "poll failed (%s)\n", strerror (errno));
break;
}
/* find out how much space is available for playback data */
if ((frames_to_deliver = snd_pcm_avail_update (playback_handle)) < 0) {
if (frames_to_deliver == -EPIPE) {
fprintf (stderr, "an xrun occured\n");
break;
} else {
fprintf (stderr, "unknown ALSA avail update return value (%d)\n",
frames_to_deliver);
break;
}
}
frames_to_deliver = frames_to_deliver > 4096 ? 4096 : frames_to_deliver;
/* deliver the data */
if (playback_callback (frames_to_deliver) != frames_to_deliver) {
fprintf (stderr, "playback callback failed\n");
break;
}
}
snd_pcm_close (playback_handle);
fclose(random);
snd_pcm_close(snd_device_out);
snd_pcm_close(snd_device_in);
exit (0);
}
}