2004-07-06 00:08:44 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
#include "simple.h"
|
|
|
|
|
#include "polyp-error.h"
|
|
|
|
|
|
|
|
|
|
#define BUFSIZE 1024
|
|
|
|
|
|
|
|
|
|
int main(int argc, char*argv[]) {
|
|
|
|
|
static const struct pa_sample_spec ss = {
|
|
|
|
|
.format = PA_SAMPLE_S16LE,
|
|
|
|
|
.rate = 44100,
|
|
|
|
|
.channels = 2
|
|
|
|
|
};
|
|
|
|
|
struct pa_simple *s = NULL;
|
|
|
|
|
int ret = 1;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
if (!(s = pa_simple_new(NULL, argv[0], PA_STREAM_PLAYBACK, NULL, "playback", &ss, NULL, &error))) {
|
2004-07-07 00:22:46 +00:00
|
|
|
fprintf(stderr, __FILE__": pa_simple_new() failed: %s\n", pa_strerror(error));
|
2004-07-06 00:08:44 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
|
uint8_t buf[BUFSIZE];
|
|
|
|
|
ssize_t r;
|
|
|
|
|
|
|
|
|
|
if ((r = read(STDIN_FILENO, buf, sizeof(buf))) <= 0) {
|
|
|
|
|
if (r == 0) /* eof */
|
|
|
|
|
break;
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
fprintf(stderr, __FILE__": read() failed: %s\n", strerror(errno));
|
2004-07-06 00:08:44 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pa_simple_write(s, buf, r, &error) < 0) {
|
2004-07-07 00:22:46 +00:00
|
|
|
fprintf(stderr, __FILE__": pa_simple_write() failed: %s\n", pa_strerror(error));
|
2004-07-06 00:08:44 +00:00
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-07-07 00:22:46 +00:00
|
|
|
|
2004-07-07 22:02:15 +00:00
|
|
|
/* Make sure that every single sample way played */
|
|
|
|
|
if (pa_simple_drain(s, &error) < 0) {
|
|
|
|
|
fprintf(stderr, __FILE__": pa_simple_drain() failed: %s\n", pa_strerror(error));
|
|
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-06 00:08:44 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
finish:
|
|
|
|
|
|
|
|
|
|
if (s)
|
|
|
|
|
pa_simple_free(s);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|