alsa-utils/aplay/aplay.c

1482 lines
39 KiB
C
Raw Normal View History

1998-08-13 17:43:39 +02:00
/*
1999-06-13 12:09:54 +02:00
* aplay.c - plays and records
1998-08-13 17:43:39 +02:00
*
1998-11-27 16:17:45 +01:00
* CREATIVE LABS VOICE-files
* Microsoft WAVE-files
1998-08-13 17:43:39 +02:00
* SPARC AUDIO .AU-files
* Raw Data
*
* Copyright (c) by Jaroslav Kysela <perex@suse.cz>
1998-08-13 17:43:39 +02:00
* Based on vplay program by Michael Beck
*
*
* 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.
*
* 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
* GNU General Public License for more details.
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <stdio.h>
#include <malloc.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include <fcntl.h>
#include <ctype.h>
#include <errno.h>
1998-11-04 19:08:08 +01:00
#include <netinet/in.h>
1998-08-30 23:10:35 +02:00
#include <sys/asoundlib.h>
2000-04-12 22:44:14 +02:00
#include <assert.h>
2000-05-08 20:54:14 +02:00
#include <sys/poll.h>
#include "aconfig.h"
1998-08-13 17:43:39 +02:00
#include "formats.h"
1999-01-30 20:12:34 +01:00
#include "version.h"
1998-08-13 17:43:39 +02:00
#define DEFAULT_SPEED 8000
#define FORMAT_DEFAULT -1
#define FORMAT_RAW 0
#define FORMAT_VOC 1
#define FORMAT_WAVE 2
#define FORMAT_AU 3
/* global data */
2000-05-08 20:54:14 +02:00
static ssize_t (*read_func)(snd_pcm_t *handle, void *buffer, size_t size);
static ssize_t (*write_func)(snd_pcm_t *handle, const void *buffer, size_t size);
static char *command;
static snd_pcm_t *pcm_handle;
static snd_pcm_channel_info_t cinfo;
static snd_pcm_format_t rformat, format;
static snd_pcm_channel_setup_t setup;
static int timelimit = 0;
static int quiet_mode = 0;
static int verbose_mode = 0;
static int format_change = 0;
static int active_format = FORMAT_DEFAULT;
static int mode = SND_PCM_MODE_BLOCK;
static int direction = SND_PCM_OPEN_PLAYBACK;
static int channel = SND_PCM_CHANNEL_PLAYBACK;
static int mmap_flag = 0;
static snd_pcm_mmap_control_t *mmap_control = NULL;
static char *mmap_data = NULL;
static int noplugin = 0;
static int nonblock = 0;
static char *audiobuf = NULL;
static int align = 1;
static int buffer_size = -1;
/* 250 ms */
static int frag_length = 250;
static int show_setup = 0;
static int buffer_pos = 0;
static int count;
static int vocmajor, vocminor;
1998-08-13 17:43:39 +02:00
/* needed prototypes */
1998-11-27 16:17:45 +01:00
static void playback(char *filename);
1999-06-13 12:09:54 +02:00
static void capture(char *filename);
1998-08-13 17:43:39 +02:00
1998-11-27 16:17:45 +01:00
static void begin_voc(int fd, u_long count);
static void end_voc(int fd);
static void begin_wave(int fd, u_long count);
static void end_wave(int fd);
static void begin_au(int fd, u_long count);
1998-08-13 17:43:39 +02:00
1999-06-13 12:09:54 +02:00
struct fmt_capture {
1998-11-27 16:17:45 +01:00
void (*start) (int fd, u_long count);
void (*end) (int fd);
char *what;
1998-08-13 17:43:39 +02:00
} fmt_rec_table[] = {
1998-11-27 16:17:45 +01:00
{ NULL, end_wave, "raw data" },
{ begin_voc, end_voc, "VOC" },
{ begin_wave, end_wave, "WAVE" },
{ begin_au, end_wave, "Sparc Audio" }
};
1998-08-13 17:43:39 +02:00
2000-05-08 20:54:14 +02:00
typedef struct {
int value;
const char* desc;
} assoc_t;
static const char *assoc(int value, assoc_t *alist)
{
while (alist->desc) {
if (value == alist->value)
return alist->desc;
alist++;
}
return "UNKNOWN";
}
1999-12-25 16:27:50 +01:00
2000-05-08 20:54:14 +02:00
#define CHN(v) { SND_PCM_CHANNEL_##v, #v }
#define MODE(v) { SND_PCM_MODE_##v, #v }
#define FMT(v) { SND_PCM_SFMT_##v, #v }
#define XRUN(v) { SND_PCM_XRUN_##v, #v }
#define START(v) { SND_PCM_START_##v, #v }
#define FILL(v) { SND_PCM_FILL_##v, #v }
#define END { 0, NULL }
static assoc_t chns[] = { CHN(PLAYBACK), CHN(CAPTURE), END };
static assoc_t modes[] = { MODE(STREAM), MODE(BLOCK), END };
static assoc_t fmts[] = { FMT(S8), FMT(U8),
FMT(S16_LE), FMT(S16_BE), FMT(U16_LE), FMT(U16_BE),
FMT(S24_LE), FMT(S24_BE), FMT(U24_LE), FMT(U24_BE),
FMT(S32_LE), FMT(S32_BE), FMT(U32_LE), FMT(U32_BE),
FMT(FLOAT_LE), FMT(FLOAT_BE), FMT(FLOAT64_LE), FMT(FLOAT64_BE),
FMT(IEC958_SUBFRAME_LE), FMT(IEC958_SUBFRAME_BE),
FMT(MU_LAW), FMT(A_LAW), FMT(IMA_ADPCM),
FMT(MPEG), FMT(GSM), FMT(SPECIAL), END };
static assoc_t starts[] = { START(GO), START(DATA), START(FULL), END };
static assoc_t xruns[] = { XRUN(FLUSH), XRUN(DRAIN), END };
static assoc_t fills[] = { FILL(NONE), FILL(SILENCE_WHOLE), FILL(SILENCE), END };
static assoc_t onoff[] = { {0, "OFF"}, {1, "ON"}, {-1, "ON"}, END };
1999-12-25 16:27:50 +01:00
1998-11-27 16:17:45 +01:00
static void check_new_format(snd_pcm_format_t * format)
1998-08-13 17:43:39 +02:00
{
2000-05-08 20:54:14 +02:00
if (cinfo.rates & (SND_PCM_RATE_CONTINUOUS|SND_PCM_RATE_KNOT)) {
if (format->rate < cinfo.min_rate ||
format->rate > cinfo.max_rate) {
fprintf(stderr, "%s: unsupported rate %iHz (valid range is %iHz-%iHz)\n", command, format->rate, cinfo.min_rate, cinfo.max_rate);
exit(EXIT_FAILURE);
}
} else {
unsigned int r;
switch (format->rate) {
case 8000: r = SND_PCM_RATE_8000; break;
case 11025: r = SND_PCM_RATE_11025; break;
case 16000: r = SND_PCM_RATE_16000; break;
case 22050: r = SND_PCM_RATE_22050; break;
case 32000: r = SND_PCM_RATE_32000; break;
case 44100: r = SND_PCM_RATE_44100; break;
case 48000: r = SND_PCM_RATE_48000; break;
case 88200: r = SND_PCM_RATE_88200; break;
case 96000: r = SND_PCM_RATE_96000; break;
case 176400: r = SND_PCM_RATE_176400; break;
case 192000: r = SND_PCM_RATE_192000; break;
default: r = 0; break;
}
if (!(cinfo.rates & r)) {
fprintf(stderr, "%s: unsupported rate %iHz\n", command, format->rate);
exit(EXIT_FAILURE);
}
}
if (cinfo.min_voices > format->voices || cinfo.max_voices < format->voices) {
fprintf(stderr, "%s: unsupported number of voices %i (valid range is %i-%i)\n", command, format->voices, cinfo.min_voices, cinfo.max_voices);
exit(EXIT_FAILURE);
}
if (!(cinfo.formats & (1 << format->format))) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "%s: unsupported format %s\n", command, snd_pcm_get_format_name(format->format));
exit(EXIT_FAILURE);
}
if (format->voices > 1) {
if (format->interleave) {
if (!(cinfo.flags & SND_PCM_CHNINFO_INTERLEAVE)) {
fprintf(stderr, "%s: unsupported interleaved format\n", command);
exit(EXIT_FAILURE);
}
} else if (!(cinfo.flags & SND_PCM_CHNINFO_NONINTERLEAVE)) {
fprintf(stderr, "%s: unsupported non interleaved format\n", command);
exit(EXIT_FAILURE);
}
1998-11-27 16:17:45 +01:00
}
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
static void usage(char *command)
1998-08-13 17:43:39 +02:00
{
2000-05-08 20:54:14 +02:00
assoc_t *f;
1998-11-27 16:17:45 +01:00
fprintf(stderr,
"Usage: %s [switches] [filename] <filename> ...\n"
"Available switches:\n"
"\n"
" -h,--help help\n"
" -V,--version print current version\n"
" -l list all soundcards and digital audio devices\n"
1999-03-08 17:51:53 +01:00
" -c <card> select card # or card id (0-%i), defaults to 0\n"
1998-11-27 16:17:45 +01:00
" -d <device> select device #, defaults to 0\n"
" -q quiet mode\n"
" -v file format Voc\n"
" -w file format Wave\n"
" -r file format Raw\n"
" -o <voices> voices (1-N)\n"
1998-11-27 16:17:45 +01:00
" -s <Hz> speed (Hz)\n"
1999-12-25 16:27:50 +01:00
" -f <format> data format\n"
2000-05-08 20:54:14 +02:00
" -F <msec> fragment length\n"
2000-01-11 14:28:15 +01:00
" -m set CD-ROM quality (44100Hz,stereo,16-bit linear,little endian)\n"
" -M set DAT quality (48000Hz,stereo,16-bit linear,little endian)\n"
1999-12-25 16:27:50 +01:00
" -t <secs> timelimit (seconds)\n"
2000-01-11 14:28:15 +01:00
" -e stream mode\n"
" -E mmap mode\n"
2000-04-17 19:40:06 +02:00
" -N Don't use plugins\n"
2000-05-08 20:54:14 +02:00
" -B Nonblocking mode\n"
" -S Show setup\n"
1999-03-08 17:51:53 +01:00
,command, snd_cards()-1);
1999-12-25 16:27:50 +01:00
fprintf(stderr, "\nRecognized data formats are:");
2000-05-08 20:54:14 +02:00
for (f = fmts; f->desc; ++f)
fprintf(stderr, " %s", f->desc);
2000-01-11 14:28:15 +01:00
fprintf(stderr, " (some of these may not be available on selected hardware)\n");
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
static void device_list(void)
1998-08-13 17:43:39 +02:00
{
snd_ctl_t *handle;
1998-11-27 16:17:45 +01:00
int card, err, dev, idx;
unsigned int mask;
2000-05-08 20:54:14 +02:00
snd_ctl_hw_info_t info;
1998-11-27 16:17:45 +01:00
snd_pcm_info_t pcminfo;
snd_pcm_channel_info_t chninfo;
1998-11-27 16:17:45 +01:00
mask = snd_cards_mask();
if (!mask) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "%s: no soundcards found...\n", command);
1998-11-27 16:17:45 +01:00
return;
}
for (card = 0; card < SND_CARDS; card++) {
if (!(mask & (1 << card)))
continue;
if ((err = snd_ctl_open(&handle, card)) < 0) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "Error: control open (%i): %s\n", card, snd_strerror(err));
1998-11-27 16:17:45 +01:00
continue;
}
if ((err = snd_ctl_hw_info(handle, &info)) < 0) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "Error: control hardware info (%i): %s\n", card, snd_strerror(err));
1998-11-27 16:17:45 +01:00
snd_ctl_close(handle);
continue;
}
for (dev = 0; dev < info.pcmdevs; dev++) {
if ((err = snd_ctl_pcm_info(handle, dev, &pcminfo)) < 0) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "Error: control digital audio info (%i): %s\n", card, snd_strerror(err));
1998-11-27 16:17:45 +01:00
continue;
}
2000-05-08 20:54:14 +02:00
fprintf(stderr, "%s: %i [%s] / #%i: %s\n",
1998-11-27 16:17:45 +01:00
info.name,
card + 1,
info.id,
dev,
pcminfo.name);
2000-05-08 20:54:14 +02:00
fprintf(stderr, " Directions: %s%s%s\n",
1998-11-27 16:17:45 +01:00
pcminfo.flags & SND_PCM_INFO_PLAYBACK ? "playback " : "",
1999-06-13 12:09:54 +02:00
pcminfo.flags & SND_PCM_INFO_CAPTURE ? "capture " : "",
1998-11-27 16:17:45 +01:00
pcminfo.flags & SND_PCM_INFO_DUPLEX ? "duplex " : "");
2000-05-08 20:54:14 +02:00
fprintf(stderr, " Playback subdevices: %i\n", pcminfo.playback + 1);
fprintf(stderr, " Capture subdevices: %i\n", pcminfo.capture + 1);
1998-11-27 16:17:45 +01:00
if (pcminfo.flags & SND_PCM_INFO_PLAYBACK) {
for (idx = 0; idx <= pcminfo.playback; idx++) {
memset(&chninfo, 0, sizeof(chninfo));
chninfo.channel = SND_PCM_CHANNEL_PLAYBACK;
if ((err = snd_ctl_pcm_channel_info(handle, dev, SND_PCM_CHANNEL_PLAYBACK, idx, &chninfo)) < 0) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "Error: control digital audio playback info (%i): %s\n", card, snd_strerror(err));
} else {
2000-05-08 20:54:14 +02:00
fprintf(stderr, " Playback subdevice #%i: %s\n", idx, chninfo.subname);
1999-07-29 20:00:14 +02:00
}
1998-11-27 16:17:45 +01:00
}
}
1999-06-13 12:09:54 +02:00
if (pcminfo.flags & SND_PCM_INFO_CAPTURE) {
for (idx = 0; idx <= pcminfo.capture; idx++) {
memset(&chninfo, 0, sizeof(chninfo));
chninfo.channel = SND_PCM_CHANNEL_CAPTURE;
if ((err = snd_ctl_pcm_channel_info(handle, dev, SND_PCM_CHANNEL_CAPTURE, 0, &chninfo)) < 0) {
2000-05-08 20:54:14 +02:00
fprintf(stderr, "Error: control digital audio capture info (%i): %s\n", card, snd_strerror(err));
} else {
2000-05-08 20:54:14 +02:00
fprintf(stderr, " Capture subdevice #%i: %s\n", idx, chninfo.subname);
1999-07-29 20:00:14 +02:00
}
1998-11-27 16:17:45 +01:00
}
}
}
snd_ctl_close(handle);
}
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
static void version(void)
1998-08-13 17:43:39 +02:00
{
fprintf(stderr, "%s: version " SND_UTIL_VERSION_STR " by Jaroslav Kysela <perex@suse.cz>\n", command);
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
int main(int argc, char *argv[])
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
int card, dev, tmp, err, c;
card = 0;
dev = 0;
command = argv[0];
active_format = FORMAT_DEFAULT;
if (strstr(argv[0], "arecord")) {
1999-06-13 12:09:54 +02:00
direction = SND_PCM_OPEN_CAPTURE;
channel = SND_PCM_CHANNEL_CAPTURE;
1998-11-27 16:17:45 +01:00
active_format = FORMAT_WAVE;
command = "Arecord";
} else if (strstr(argv[0], "aplay")) {
direction = SND_PCM_OPEN_PLAYBACK;
channel = SND_PCM_CHANNEL_PLAYBACK;
1998-11-27 16:17:45 +01:00
command = "Aplay";
} else {
fprintf(stderr, "Error: command should be named either arecord or aplay\n");
return 1;
}
buffer_size = -1;
memset(&rformat, 0, sizeof(rformat));
rformat.interleave = 1;
1998-11-27 16:17:45 +01:00
rformat.format = SND_PCM_SFMT_U8;
rformat.rate = DEFAULT_SPEED;
rformat.voices = 1;
1998-11-27 16:17:45 +01:00
if (argc > 1 && !strcmp(argv[1], "--help")) {
usage(command);
return 0;
}
if (argc > 1 && !strcmp(argv[1], "--version")) {
version();
return 0;
1998-08-13 17:43:39 +02:00
}
2000-05-08 20:54:14 +02:00
while ((c = getopt(argc, argv, "hlc:d:qs:o:t:vrwxc:p:mMVeEf:NBF:S")) != EOF)
1998-11-27 16:17:45 +01:00
switch (c) {
case 'h':
usage(command);
return 0;
case 'l':
device_list();
return 0;
case 'c':
card = snd_card_name(optarg);
if (card < 0) {
fprintf(stderr, "Error: soundcard '%s' not found\n", optarg);
return 1;
}
break;
case 'd':
dev = atoi(optarg);
if (dev < 0 || dev > 32) {
fprintf(stderr, "Error: device %i is invalid\n", dev);
return 1;
}
break;
case 'o':
tmp = atoi(optarg);
if (tmp < 1 || tmp > 32) {
fprintf(stderr, "Error: value %i for voices is invalid\n", tmp);
1998-11-27 16:17:45 +01:00
return 1;
}
rformat.voices = tmp;
1998-11-27 16:17:45 +01:00
break;
case 'q':
quiet_mode = 1;
break;
case 'r':
active_format = FORMAT_RAW;
break;
case 'v':
active_format = FORMAT_VOC;
break;
case 'w':
active_format = FORMAT_WAVE;
break;
case 's':
tmp = atoi(optarg);
if (tmp < 300)
tmp *= 1000;
rformat.rate = tmp;
if (tmp < 2000 || tmp > 128000) {
fprintf(stderr, "Error: bad speed value %i\n", tmp);
return 1;
}
break;
case 't':
timelimit = atoi(optarg);
break;
case 'x':
verbose_mode = 1;
quiet_mode = 0;
break;
2000-05-08 20:54:14 +02:00
case 'f': {
assoc_t *f;
for (f = fmts; f->desc; ++f) {
if (!strcasecmp(optarg, f->desc)) {
1999-12-25 16:27:50 +01:00
break;
}
1998-11-27 16:17:45 +01:00
}
2000-05-08 20:54:14 +02:00
if (!f->desc) {
1999-12-25 16:27:50 +01:00
fprintf(stderr, "Error: wrong extended format '%s'\n", optarg);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1999-11-28 19:04:29 +01:00
}
2000-05-08 20:54:14 +02:00
rformat.format = f->value;
active_format = FORMAT_RAW;
1999-12-25 16:27:50 +01:00
break;
2000-05-08 20:54:14 +02:00
}
1998-11-27 16:17:45 +01:00
case 'm':
case 'M':
rformat.format = SND_PCM_SFMT_S16_LE;
rformat.rate = c == 'M' ? 48000 : 44100;
rformat.voices = 2;
1998-11-27 16:17:45 +01:00
break;
case 'V':
version();
return 0;
case 'e':
2000-05-08 20:54:14 +02:00
mode = SND_PCM_MODE_STREAM;
break;
case 'E':
2000-05-08 20:54:14 +02:00
mmap_flag = 1;
break;
2000-04-17 19:40:06 +02:00
case 'N':
noplugin = 1;
break;
2000-05-08 20:54:14 +02:00
case 'B':
nonblock = 1;
break;
case 'F':
frag_length = atoi(optarg);
break;
case 'S':
show_setup = 1;
break;
1998-11-27 16:17:45 +01:00
default:
usage(command);
return 1;
}
if (!quiet_mode)
version();
1999-12-11 12:43:22 +01:00
if (!quiet_mode) {
char *cardname;
if ((err = snd_card_get_longname(card, &cardname)) < 0) {
fprintf(stderr, "Error: unable to obtain longname: %s\n", snd_strerror(err));
return 1;
}
fprintf(stderr, "Using soundcard '%s'\n", cardname);
1999-12-11 12:43:22 +01:00
free(cardname);
}
2000-05-08 20:54:14 +02:00
if (noplugin)
err = snd_pcm_open(&pcm_handle, card, dev, direction);
else
err = snd_pcm_plug_open(&pcm_handle, card, dev, direction);
if (err < 0) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "Error: audio open error: %s\n", snd_strerror(err));
return 1;
1998-08-13 17:43:39 +02:00
}
2000-05-08 20:54:14 +02:00
if (nonblock) {
err = snd_pcm_channel_nonblock(pcm_handle, channel, 1);
if (err < 0) {
fprintf(stderr, "nonblock setting error: %s\n", snd_strerror(err));
return 1;
}
}
memset(&cinfo, 0, sizeof(cinfo));
cinfo.channel = channel;
2000-05-08 20:54:14 +02:00
if ((err = snd_pcm_channel_info(pcm_handle, &cinfo)) < 0) {
fprintf(stderr, "Error: channel info error: %s\n", snd_strerror(err));
1998-11-27 16:17:45 +01:00
return 1;
}
buffer_size = 1024;
1998-11-27 16:17:45 +01:00
format = rformat;
audiobuf = (char *)malloc(1024);
if (audiobuf == NULL) {
fprintf(stderr, "Error: not enough memory\n");
1998-11-27 16:17:45 +01:00
return 1;
}
2000-05-08 20:54:14 +02:00
if (mmap_flag) {
write_func = snd_pcm_mmap_write;
read_func = snd_pcm_mmap_read;
} else {
write_func = snd_pcm_write;
read_func = snd_pcm_read;
}
1998-11-27 16:17:45 +01:00
if (optind > argc - 1) {
if (channel == SND_PCM_CHANNEL_PLAYBACK)
1998-11-27 16:17:45 +01:00
playback(NULL);
else
1999-06-13 12:09:54 +02:00
capture(NULL);
1998-11-27 16:17:45 +01:00
} else {
while (optind <= argc - 1) {
if (channel == SND_PCM_CHANNEL_PLAYBACK)
1998-11-27 16:17:45 +01:00
playback(argv[optind++]);
else
1999-06-13 12:09:54 +02:00
capture(argv[optind++]);
1998-11-27 16:17:45 +01:00
}
}
snd_pcm_close(pcm_handle);
2000-05-08 20:54:14 +02:00
return EXIT_SUCCESS;
1998-08-13 17:43:39 +02:00
}
/*
* Test, if it is a .VOC file and return >=0 if ok (this is the length of rest)
* < 0 if not
*/
static int test_vocfile(void *buffer)
{
1998-11-27 16:17:45 +01:00
VocHeader *vp = buffer;
if (strstr(vp->magic, VOC_MAGIC_STRING)) {
vocminor = vp->version & 0xFF;
vocmajor = vp->version / 256;
if (vp->version != (0x1233 - vp->coded_ver))
return -2; /* coded version mismatch */
return vp->headerlen - sizeof(VocHeader); /* 0 mostly */
}
return -1; /* magic string fail */
1998-08-13 17:43:39 +02:00
}
/*
* test, if it's a .WAV file, 0 if ok (and set the speed, stereo etc.)
* < 0 if not
*/
1998-11-27 16:17:45 +01:00
static int test_wavefile(void *buffer)
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
WaveHeader *wp = buffer;
if (wp->main_chunk == WAV_RIFF && wp->chunk_type == WAV_WAVE &&
wp->sub_chunk == WAV_FMT && wp->data_chunk == WAV_DATA) {
if (LE_SHORT(wp->format) != WAV_PCM_CODE) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "%s: can't play not PCM-coded WAVE-files\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
if (LE_SHORT(wp->modus) < 1 || LE_SHORT(wp->modus) > 32) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "%s: can't play WAVE-files with %d tracks\n",
command, wp->modus);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
format.voices = LE_SHORT(wp->modus);
switch (LE_SHORT(wp->bit_p_spl)) {
1998-11-27 16:17:45 +01:00
case 8:
format.format = SND_PCM_SFMT_U8;
break;
case 16:
format.format = SND_PCM_SFMT_S16_LE;
break;
default:
fprintf(stderr, "%s: can't play WAVE-files with sample %d bits wide\n",
command, wp->bit_p_spl);
}
format.rate = LE_INT(wp->sample_fq);
count = LE_INT(wp->data_length);
1998-11-27 16:17:45 +01:00
check_new_format(&format);
return 0;
}
return -1;
1998-08-13 17:43:39 +02:00
}
/*
1998-11-27 16:17:45 +01:00
1998-08-13 17:43:39 +02:00
*/
1998-11-27 16:17:45 +01:00
static int test_au(int fd, void *buffer)
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
AuHeader *ap = buffer;
if (ntohl(ap->magic) != AU_MAGIC)
return -1;
if (ntohl(ap->hdr_size) > 128 || ntohl(ap->hdr_size) < 24)
return -1;
count = ntohl(ap->data_size);
switch (ntohl(ap->encoding)) {
case AU_FMT_ULAW:
format.format = SND_PCM_SFMT_MU_LAW;
break;
case AU_FMT_LIN8:
format.format = SND_PCM_SFMT_U8;
break;
case AU_FMT_LIN16:
format.format = SND_PCM_SFMT_U16_LE;
break;
default:
return -1;
}
format.rate = ntohl(ap->sample_rate);
if (format.rate < 2000 || format.rate > 256000)
return -1;
format.voices = ntohl(ap->channels);
if (format.voices < 1 || format.voices > 128)
1998-11-27 16:17:45 +01:00
return -1;
if (read(fd, buffer + sizeof(AuHeader), ntohl(ap->hdr_size) - sizeof(AuHeader)) < 0) {
fprintf(stderr, "%s: read error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
check_new_format(&format);
return 0;
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
2000-05-08 20:54:14 +02:00
static void setup_print(snd_pcm_channel_setup_t *setup)
1998-08-13 17:43:39 +02:00
{
2000-05-08 20:54:14 +02:00
fprintf(stderr, "channel: %s\n", assoc(setup->channel, chns));
fprintf(stderr, "mode: %s\n", assoc(setup->mode, modes));
fprintf(stderr, "format: %s\n", assoc(setup->format.format, fmts));
fprintf(stderr, "voices: %d\n", setup->format.voices);
fprintf(stderr, "rate: %d\n", setup->format.rate);
// digital
fprintf(stderr, "start_mode: %s\n", assoc(setup->start_mode, starts));
fprintf(stderr, "xrun_mode: %s\n", assoc(setup->xrun_mode, xruns));
fprintf(stderr, "time: %s\n", assoc(setup->time, onoff));
// ust_time
// sync
fprintf(stderr, "buffer_size: %d\n", setup->buffer_size);
fprintf(stderr, "frag_size: %d\n", setup->frag_size);
fprintf(stderr, "frags: %d\n", setup->frags);
fprintf(stderr, "frag_boundary: %d\n", setup->frag_boundary);
fprintf(stderr, "pos_boundary: %d\n", setup->pos_boundary);
fprintf(stderr, "msbits_per_sample: %d\n", setup->msbits_per_sample);
if (setup->mode == SND_PCM_MODE_STREAM) {
fprintf(stderr, "bytes_min: %d\n", setup->buf.stream.bytes_min);
fprintf(stderr, "bytes_align: %d\n", setup->buf.stream.bytes_align);
fprintf(stderr, "bytes_xrun_max: %d\n", setup->buf.stream.bytes_xrun_max);
fprintf(stderr, "fill: %s\n", assoc(setup->buf.stream.fill, fills));
fprintf(stderr, "bytes_fill_max: %d\n", setup->buf.stream.bytes_fill_max);
} else if (setup->mode == SND_PCM_MODE_BLOCK) {
fprintf(stderr, "frags_min: %d\n", setup->buf.block.frags_min);
fprintf(stderr, "frags_xrun_max: %d\n", setup->buf.block.frags_xrun_max);
1998-11-27 16:17:45 +01:00
}
}
1998-08-13 17:43:39 +02:00
static void set_format(void)
{
2000-05-08 20:54:14 +02:00
snd_pcm_channel_params_t params;
1998-11-27 16:17:45 +01:00
if (!format_change)
return;
2000-05-08 20:54:14 +02:00
align = (snd_pcm_format_physical_width(format.format) + 7) / 8;
if (mmap_flag)
2000-05-08 20:54:14 +02:00
snd_pcm_munmap(pcm_handle, channel);
snd_pcm_channel_flush(pcm_handle, channel); /* to be in right state */
memset(&params, 0, sizeof(params));
params.mode = mode;
params.channel = channel;
memcpy(&params.format, &format, sizeof(format));
if (channel == SND_PCM_CHANNEL_PLAYBACK) {
params.start_mode = SND_PCM_START_FULL;
1998-11-27 16:17:45 +01:00
} else {
params.start_mode = SND_PCM_START_DATA;
}
2000-05-08 20:54:14 +02:00
params.xrun_mode = SND_PCM_XRUN_FLUSH;
params.frag_size = snd_pcm_format_bytes_per_second(&format) / 1000.0 * frag_length;
params.buffer_size = params.frag_size * 4;
if (mode == SND_PCM_MODE_BLOCK) {
params.buf.block.frags_min = 1;
2000-05-08 20:54:14 +02:00
params.buf.block.frags_xrun_max = 0;
} else {
params.buf.stream.fill = SND_PCM_FILL_SILENCE;
2000-05-08 20:54:14 +02:00
params.buf.stream.bytes_fill_max = 1024;
params.buf.stream.bytes_min = 1024;
params.buf.stream.bytes_xrun_max = 0;
}
2000-05-08 20:54:14 +02:00
if (snd_pcm_channel_params(pcm_handle, &params) < 0) {
fprintf(stderr, "%s: unable to set channel params\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
}
if (mmap_flag) {
2000-05-08 20:54:14 +02:00
if (snd_pcm_mmap(pcm_handle, channel, &mmap_control, (void **)&mmap_data)<0) {
fprintf(stderr, "%s: unable to mmap memory\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
2000-05-08 20:54:14 +02:00
if (snd_pcm_channel_prepare(pcm_handle, channel) < 0) {
fprintf(stderr, "%s: unable to prepare channel\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
}
memset(&setup, 0, sizeof(setup));
setup.channel = channel;
2000-05-08 20:54:14 +02:00
if (snd_pcm_channel_setup(pcm_handle, &setup) < 0) {
fprintf(stderr, "%s: unable to obtain setup\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
}
2000-05-08 20:54:14 +02:00
if (show_setup)
setup_print(&setup);
buffer_size = setup.frag_size;
audiobuf = (char *)realloc(audiobuf, buffer_size > 1024 ? buffer_size : 1024);
if (audiobuf == NULL) {
fprintf(stderr, "%s: not enough memory\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
}
2000-05-08 20:54:14 +02:00
// fprintf(stderr, "real buffer_size = %i, frags = %i, total = %i\n", buffer_size, setup.buf.block.frags, setup.buf.block.frags * buffer_size);
format_change = 0;
1998-08-13 17:43:39 +02:00
}
2000-05-08 20:54:14 +02:00
/* playback write error hander */
void playback_write_error(void)
{
snd_pcm_channel_status_t status;
memset(&status, 0, sizeof(status));
status.channel = channel;
if (snd_pcm_channel_status(pcm_handle, &status)<0) {
fprintf(stderr, "playback channel status error\n");
exit(EXIT_FAILURE);
}
if (status.status == SND_PCM_STATUS_XRUN) {
printf("underrun at position %u!!!\n", status.pos_io);
2000-05-08 20:54:14 +02:00
if (snd_pcm_channel_prepare(pcm_handle, SND_PCM_CHANNEL_PLAYBACK)<0) {
fprintf(stderr, "underrun: playback channel prepare error\n");
exit(EXIT_FAILURE);
}
return; /* ok, data should be accepted again */
}
fprintf(stderr, "write error\n");
exit(EXIT_FAILURE);
}
/* capture read error hander */
void capture_read_error(void)
{
snd_pcm_channel_status_t status;
memset(&status, 0, sizeof(status));
status.channel = channel;
if (snd_pcm_channel_status(pcm_handle, &status)<0) {
fprintf(stderr, "capture channel status error\n");
exit(EXIT_FAILURE);
}
if (status.status == SND_PCM_STATUS_RUNNING)
return; /* everything is ok, but the driver is waiting for data */
if (status.status == SND_PCM_STATUS_XRUN) {
printf("overrun at position %u!!!\n", status.pos_io);
2000-05-08 20:54:14 +02:00
if (snd_pcm_channel_prepare(pcm_handle, SND_PCM_CHANNEL_CAPTURE)<0) {
fprintf(stderr, "overrun: capture channel prepare error\n");
exit(EXIT_FAILURE);
}
return; /* ok, data should be accepted again */
}
fprintf(stderr, "read error\n");
exit(EXIT_FAILURE);
}
/*
* write function
*/
static ssize_t pcm_write(u_char *data, size_t count)
{
char *buf = data;
ssize_t result = count, r;
count += align - 1;
count -= count % align;
if (mode == SND_PCM_MODE_BLOCK) {
if (count != buffer_size)
snd_pcm_format_set_silence(format.format, buf + count, buffer_size - count);
while (1) {
int bytes = write_func(pcm_handle, buf, buffer_size);
if (bytes == -EAGAIN || bytes == 0) {
struct pollfd pfd;
pfd.fd = snd_pcm_file_descriptor(pcm_handle, SND_PCM_CHANNEL_PLAYBACK);
pfd.events = POLLOUT | POLLERR;
poll(&pfd, 1, 1000);
} else if (bytes == -EPIPE) {
playback_write_error();
} else if (bytes != buffer_size) {
fprintf(stderr, "write error: %s\n", snd_strerror(bytes));
exit(EXIT_FAILURE);
} else break;
}
} else {
while (count > 0) {
struct pollfd pfd;
r = write_func(pcm_handle, buf, count);
if (r == -EPIPE) {
playback_write_error();
continue;
}
if (r < 0 && r != -EAGAIN) {
fprintf(stderr, "write error: %s\n", snd_strerror(r));
exit(EXIT_FAILURE);
}
if (r != count) {
pfd.fd = snd_pcm_file_descriptor(pcm_handle, SND_PCM_CHANNEL_PLAYBACK);
pfd.events = POLLOUT | POLLERR;
#ifdef FIXED_STREAM_POLL
poll(&pfd, 1, 1000);
#else
poll(&pfd, 1, 50);
#endif
}
if (r > 0) {
count -= r;
buf += r;
}
}
}
return result;
}
/*
* read function
*/
static ssize_t pcm_read(u_char *data, size_t count)
{
ssize_t r;
size_t result = 0;
while (result < count) {
r = read_func(pcm_handle, audiobuf + result, count - result);
if (r == -EAGAIN || (r >= 0 && r < count - result)) {
struct pollfd pfd;
pfd.fd = snd_pcm_file_descriptor(pcm_handle, SND_PCM_CHANNEL_CAPTURE);
pfd.events = POLLIN | POLLERR;
#ifndef FIXED_STREAM_POLL
if (mode == SND_PCM_MODE_STREAM)
poll(&pfd, 1, 50);
else
#endif
poll(&pfd, 1, 1000);
} else if (r == -EPIPE) {
capture_read_error();
} else if (r < 0) {
fprintf(stderr, "read error: %s\n", snd_strerror(r));
exit(EXIT_FAILURE);
}
if (r > 0)
result += r;
}
return result;
}
1998-08-13 17:43:39 +02:00
/*
* ok, let's play a .voc file
1998-11-27 16:17:45 +01:00
*/
1998-08-13 17:43:39 +02:00
2000-05-08 20:54:14 +02:00
static ssize_t voc_pcm_write(u_char *data, size_t count)
{
ssize_t result = count, r;
size_t size;
while (count > 0) {
size = count;
if (size > buffer_size - buffer_pos)
size = buffer_size - buffer_pos;
memcpy(audiobuf + buffer_pos, data, size);
data += size;
count -= size;
buffer_pos += size;
if (buffer_pos == buffer_size) {
if ((r = pcm_write(audiobuf, buffer_size)) != buffer_size)
return r;
buffer_pos = 0;
}
}
return result;
}
/*
* writing zeros from the zerobuf to simulate silence,
* perhaps it's enough to use a long var instead of zerobuf ?
*/
static void voc_write_zeros(unsigned x)
{
unsigned l;
char *buf;
buf = (char *) malloc(buffer_size);
if (buf == NULL) {
fprintf(stderr, "%s: can allocate buffer for zeros\n", command);
return; /* not fatal error */
}
snd_pcm_format_set_silence(format.format, buf, buffer_size);
while (x > 0) {
l = x;
if (l > buffer_size)
l = buffer_size;
if (voc_pcm_write(buf, l) != l) {
fprintf(stderr, "%s: write error\n", command);
exit(EXIT_FAILURE);
}
x -= l;
}
}
static void voc_pcm_flush(void)
{
if (buffer_pos > 0) {
if (mode == SND_PCM_MODE_BLOCK) {
if (snd_pcm_format_set_silence(format.format, audiobuf + buffer_pos, buffer_size - buffer_pos) < 0)
fprintf(stderr, "voc_pcm_flush - silence error\n");
buffer_pos = buffer_size;
}
if (pcm_write(audiobuf, buffer_pos) != buffer_pos)
fprintf(stderr, "voc_pcm_flush error\n");
}
snd_pcm_channel_flush(pcm_handle, SND_PCM_CHANNEL_PLAYBACK);
}
1998-11-27 16:17:45 +01:00
static void voc_play(int fd, int ofs, char *name)
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
int l;
VocBlockType *bp;
VocVoiceData *vd;
VocExtBlock *eb;
u_long nextblock, in_buffer;
2000-05-08 20:54:14 +02:00
u_char *data, *buf;
1998-11-27 16:17:45 +01:00
char was_extended = 0, output = 0;
u_short *sp, repeat = 0;
u_long silence;
int filepos = 0;
1998-08-13 17:43:39 +02:00
2000-05-08 20:54:14 +02:00
#define COUNT(x) nextblock -= x; in_buffer -= x; data += x
#define COUNT1(x) in_buffer -= x; data += x
1998-08-13 17:43:39 +02:00
2000-05-08 20:54:14 +02:00
data = buf = (u_char *)malloc(64 * 1024);
buffer_pos = 0;
if (data == NULL) {
fprintf(stderr, "malloc error\n");
exit(EXIT_FAILURE);
}
1998-11-27 16:17:45 +01:00
if (!quiet_mode) {
fprintf(stderr, "Playing Creative Labs Voice file '%s'...\n", name);
}
/* first we waste the rest of header, ugly but we don't need seek */
while (ofs > buffer_size) {
2000-05-08 20:54:14 +02:00
if (read(fd, buf, buffer_size) != buffer_size) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "%s: read error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
ofs -= buffer_size;
}
2000-05-08 20:54:14 +02:00
if (ofs) {
if (read(fd, buf, ofs) != ofs) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "%s: read error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
2000-05-08 20:54:14 +02:00
}
1998-11-27 16:17:45 +01:00
format.format = SND_PCM_SFMT_U8;
format.voices = 1;
1998-11-27 16:17:45 +01:00
format.rate = DEFAULT_SPEED;
format_change = 1;
1998-11-27 16:17:45 +01:00
set_format();
in_buffer = nextblock = 0;
while (1) {
Fill_the_buffer: /* need this for repeat */
if (in_buffer < 32) {
2000-05-08 20:54:14 +02:00
/* move the rest of buffer to pos 0 and fill the buf up */
1998-11-27 16:17:45 +01:00
if (in_buffer)
2000-05-08 20:54:14 +02:00
memcpy(buf, data, in_buffer);
data = buf;
if ((l = read(fd, buf + in_buffer, buffer_size - in_buffer)) > 0)
1998-11-27 16:17:45 +01:00
in_buffer += l;
else if (!in_buffer) {
/* the file is truncated, so simulate 'Terminator'
2000-05-08 20:54:14 +02:00
and reduce the datablock for safe landing */
nextblock = buf[0] = 0;
1998-11-27 16:17:45 +01:00
if (l == -1) {
perror(name);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
}
while (!nextblock) { /* this is a new block */
if (in_buffer < sizeof(VocBlockType))
2000-05-08 20:54:14 +02:00
goto __end;
1998-11-27 16:17:45 +01:00
bp = (VocBlockType *) data;
COUNT1(sizeof(VocBlockType));
nextblock = VOC_DATALEN(bp);
if (output && !quiet_mode)
fprintf(stderr, "\n"); /* write /n after ASCII-out */
output = 0;
switch (bp->type) {
case 0:
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Terminator\n");
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
return; /* VOC-file stop */
case 1:
vd = (VocVoiceData *) data;
COUNT1(sizeof(VocVoiceData));
/* we need a SYNC, before we can set new SPEED, STEREO ... */
if (!was_extended) {
format.rate = (int) (vd->tc);
format.rate = 1000000 / (256 - format.rate);
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Voice data %d Hz\n", dsp_speed);
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
if (vd->pack) { /* /dev/dsp can't it */
fprintf(stderr, "%s: can't play packed .voc files\n", command);
return;
}
if (format.voices == 2) /* if we are in Stereo-Mode, switch back */
format.voices = 1;
1998-11-27 16:17:45 +01:00
} else { /* there was extended block */
format.voices = 2;
1998-11-27 16:17:45 +01:00
was_extended = 0;
}
format_change = 1;
1998-11-27 16:17:45 +01:00
set_format();
break;
case 2: /* nothing to do, pure data */
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Voice continuation\n");
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
break;
case 3: /* a silence block, no data, only a count */
sp = (u_short *) data;
COUNT1(sizeof(u_short));
format.rate = (int) (*data);
COUNT1(1);
format.rate = 1000000 / (256 - format.rate);
format_change = 1;
1998-11-27 16:17:45 +01:00
set_format();
silence = (((u_long) * sp) * 1000) / format.rate;
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Silence for %d ms\n", (int) silence);
1998-08-13 17:43:39 +02:00
#endif
2000-05-08 20:54:14 +02:00
voc_write_zeros(*sp);
1998-11-27 16:17:45 +01:00
break;
case 4: /* a marker for syncronisation, no effect */
sp = (u_short *) data;
COUNT1(sizeof(u_short));
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Marker %d\n", *sp);
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
break;
case 5: /* ASCII text, we copy to stderr */
output = 1;
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("ASCII - text :\n");
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
break;
case 6: /* repeat marker, says repeatcount */
/* my specs don't say it: maybe this can be recursive, but
I don't think somebody use it */
repeat = *(u_short *) data;
COUNT1(sizeof(u_short));
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Repeat loop %d times\n", repeat);
1998-08-13 17:43:39 +02:00
#endif
1999-03-09 14:54:32 +01:00
if (filepos >= 0) { /* if < 0, one seek fails, why test another */
1998-11-27 16:17:45 +01:00
if ((filepos = lseek(fd, 0, 1)) < 0) {
fprintf(stderr, "%s: can't play loops; %s isn't seekable\n",
command, name);
repeat = 0;
1999-03-09 14:54:32 +01:00
} else {
1998-11-27 16:17:45 +01:00
filepos -= in_buffer; /* set filepos after repeat */
1999-03-09 14:54:32 +01:00
}
} else {
1998-11-27 16:17:45 +01:00
repeat = 0;
1999-03-09 14:54:32 +01:00
}
1998-11-27 16:17:45 +01:00
break;
case 7: /* ok, lets repeat that be rewinding tape */
if (repeat) {
if (repeat != 0xFFFF) {
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Repeat loop %d\n", repeat);
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
--repeat;
}
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
else
d_printf("Neverending loop\n");
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
lseek(fd, filepos, 0);
in_buffer = 0; /* clear the buffer */
goto Fill_the_buffer;
}
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
else
d_printf("End repeat loop\n");
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
break;
case 8: /* the extension to play Stereo, I have SB 1.0 :-( */
was_extended = 1;
eb = (VocExtBlock *) data;
COUNT1(sizeof(VocExtBlock));
format.rate = (int) (eb->tc);
format.rate = 256000000L / (65536 - format.rate);
format.voices = eb->mode == VOC_MODE_STEREO ? 2 : 1;
if (format.voices == 2)
1998-11-27 16:17:45 +01:00
format.rate = format.rate >> 1;
if (eb->pack) { /* /dev/dsp can't it */
fprintf(stderr, "%s: can't play packed .voc files\n", command);
return;
}
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
d_printf("Extended block %s %d Hz\n",
(eb->mode ? "Stereo" : "Mono"), dsp_speed);
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
break;
default:
fprintf(stderr, "%s: unknown blocktype %d. terminate.\n",
command, bp->type);
return;
} /* switch (bp->type) */
} /* while (! nextblock) */
/* put nextblock data bytes to dsp */
l = in_buffer;
if (nextblock < l)
l = nextblock;
if (l) {
if (output && !quiet_mode) {
if (write(2, data, l) != l) { /* to stderr */
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
} else {
2000-05-08 20:54:14 +02:00
if (voc_pcm_write(data, l) != l) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
COUNT(l);
}
} /* while(1) */
2000-05-08 20:54:14 +02:00
__end:
voc_pcm_flush();
free(buf);
1998-08-13 17:43:39 +02:00
}
/* that was a big one, perhaps somebody split it :-) */
/* setting the globals for playing raw data */
static void init_raw_data(void)
{
1998-11-27 16:17:45 +01:00
format = rformat;
1998-08-13 17:43:39 +02:00
}
/* calculate the data count to read from/to dsp */
static u_long calc_count(void)
{
1998-11-27 16:17:45 +01:00
u_long count;
2000-05-08 20:54:14 +02:00
if (!timelimit) {
1998-11-27 16:17:45 +01:00
count = 0x7fffffff;
2000-05-08 20:54:14 +02:00
} else {
count = snd_pcm_format_size(format.format,
timelimit * format.rate *
format.voices);
1998-11-27 16:17:45 +01:00
}
return count;
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
/* write a .VOC-header */
static void begin_voc(int fd, u_long cnt)
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
VocHeader vh;
VocBlockType bt;
VocVoiceData vd;
VocExtBlock eb;
strncpy(vh.magic, VOC_MAGIC_STRING, 20);
vh.magic[19] = 0x1A;
vh.headerlen = sizeof(VocHeader);
vh.version = VOC_ACTUAL_VERSION;
vh.coded_ver = 0x1233 - VOC_ACTUAL_VERSION;
if (write(fd, &vh, sizeof(VocHeader)) != sizeof(VocHeader)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
if (format.voices > 1) {
1998-11-27 16:17:45 +01:00
/* write a extended block */
bt.type = 8;
bt.datalen = 4;
bt.datalen_m = bt.datalen_h = 0;
if (write(fd, &bt, sizeof(VocBlockType)) != sizeof(VocBlockType)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
eb.tc = (u_short) (65536 - 256000000L / (format.rate << 1));
eb.pack = 0;
eb.mode = 1;
if (write(fd, &eb, sizeof(VocExtBlock)) != sizeof(VocExtBlock)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
bt.type = 1;
cnt += sizeof(VocVoiceData); /* Voice_data block follows */
bt.datalen = (u_char) (cnt & 0xFF);
bt.datalen_m = (u_char) ((cnt & 0xFF00) >> 8);
bt.datalen_h = (u_char) ((cnt & 0xFF0000) >> 16);
if (write(fd, &bt, sizeof(VocBlockType)) != sizeof(VocBlockType)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
vd.tc = (u_char) (256 - (1000000 / format.rate));
vd.pack = 0;
if (write(fd, &vd, sizeof(VocVoiceData)) != sizeof(VocVoiceData)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
1998-08-13 17:43:39 +02:00
/* write a WAVE-header */
static void begin_wave(int fd, u_long cnt)
{
1998-11-27 16:17:45 +01:00
WaveHeader wh;
int bits;
bits = 8;
1998-11-27 16:17:45 +01:00
switch (format.format) {
case SND_PCM_SFMT_U8:
bits = 8;
break;
case SND_PCM_SFMT_S16_LE:
bits = 16;
break;
default:
fprintf(stderr, "%s: Wave doesn't support %s format...\n", command, snd_pcm_get_format_name(format.format));
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
wh.main_chunk = WAV_RIFF;
wh.length = cnt + sizeof(WaveHeader) - 8;
wh.chunk_type = WAV_WAVE;
wh.sub_chunk = WAV_FMT;
wh.sc_len = 16;
wh.format = WAV_PCM_CODE;
wh.modus = format.voices;
1998-11-27 16:17:45 +01:00
wh.sample_fq = format.rate;
1998-08-13 17:43:39 +02:00
#if 0
1998-11-27 16:17:45 +01:00
wh.byte_p_spl = (samplesize == 8) ? 1 : 2;
wh.byte_p_sec = dsp_speed * wh.modus * wh.byte_p_spl;
1998-08-13 17:43:39 +02:00
#else
1998-11-27 16:17:45 +01:00
wh.byte_p_spl = wh.modus * ((bits + 7) / 8);
wh.byte_p_sec = wh.byte_p_spl * format.rate;
1998-08-13 17:43:39 +02:00
#endif
1998-11-27 16:17:45 +01:00
wh.bit_p_spl = bits;
wh.data_chunk = WAV_DATA;
wh.data_length = cnt;
if (write(fd, &wh, sizeof(WaveHeader)) != sizeof(WaveHeader)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
1998-08-13 17:43:39 +02:00
}
/* write a Au-header */
static void begin_au(int fd, u_long cnt)
{
1998-11-27 16:17:45 +01:00
AuHeader ah;
ah.magic = htonl(AU_MAGIC);
ah.hdr_size = htonl(24);
ah.data_size = htonl(cnt);
switch (format.format) {
case SND_PCM_SFMT_MU_LAW:
ah.encoding = htonl(AU_FMT_ULAW);
break;
case SND_PCM_SFMT_U8:
ah.encoding = htonl(AU_FMT_LIN8);
break;
case SND_PCM_SFMT_S16_LE:
1998-11-27 16:17:45 +01:00
ah.encoding = htonl(AU_FMT_LIN16);
break;
default:
fprintf(stderr, "%s: Sparc Audio doesn't support %s format...\n", command, snd_pcm_get_format_name(format.format));
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
ah.sample_rate = htonl(format.rate);
ah.channels = htonl(format.voices);
1998-11-27 16:17:45 +01:00
if (write(fd, &ah, sizeof(AuHeader)) != sizeof(AuHeader)) {
fprintf(stderr, "%s: write error\n", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
1998-08-13 17:43:39 +02:00
}
/* closing .VOC */
static void end_voc(int fd)
{
1998-11-27 16:17:45 +01:00
char dummy = 0; /* Write a Terminator */
if (write(fd, &dummy, 1) != 1) {
fprintf(stderr, "%s: write error", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
if (fd != 1)
close(fd);
1998-08-13 17:43:39 +02:00
}
static void end_wave(int fd)
{ /* only close output */
1998-11-27 16:17:45 +01:00
if (fd != 1)
close(fd);
1998-08-13 17:43:39 +02:00
}
1998-11-27 16:17:45 +01:00
static void header(int rtype, char *name)
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
if (!quiet_mode) {
fprintf(stderr, "%s %s '%s' : ",
(channel == SND_PCM_CHANNEL_PLAYBACK) ? "Playing" : "Recording",
1998-11-27 16:17:45 +01:00
fmt_rec_table[rtype].what,
name);
fprintf(stderr, "%s, ", snd_pcm_get_format_name(format.format));
1998-11-27 16:17:45 +01:00
fprintf(stderr, "Rate %d Hz, ", format.rate);
if (format.voices == 1)
1998-11-27 16:17:45 +01:00
fprintf(stderr, "Mono");
else if (format.voices == 2)
1998-11-27 16:17:45 +01:00
fprintf(stderr, "Stereo");
else
fprintf(stderr, "Voices %i", format.voices);
1998-11-27 16:17:45 +01:00
fprintf(stderr, "\n");
}
1998-08-13 17:43:39 +02:00
}
/* playing raw data */
1998-11-27 16:17:45 +01:00
void playback_go(int fd, int loaded, u_long count, int rtype, char *name)
1998-08-13 17:43:39 +02:00
{
int l, r;
1998-11-27 16:17:45 +01:00
u_long c;
1998-08-13 17:43:39 +02:00
1998-11-27 16:17:45 +01:00
header(rtype, name);
format_change = 1;
1998-11-27 16:17:45 +01:00
set_format();
1998-08-13 17:43:39 +02:00
2000-05-08 20:54:14 +02:00
l = 0;
while (loaded > buffer_size) {
if (pcm_write(audiobuf + l, buffer_size) <= 0)
return;
l += buffer_size;
loaded -= l;
}
2000-04-12 22:44:14 +02:00
2000-05-08 20:54:14 +02:00
l = loaded;
while (count > 0) {
do {
c = count;
if (c + l > buffer_size)
c = buffer_size - l;
2000-05-08 20:54:14 +02:00
if (c == 0)
break;
r = read(fd, audiobuf + l, c);
if (r <= 0)
break;
l += r;
2000-05-08 20:54:14 +02:00
} while (mode != SND_PCM_MODE_STREAM && l < buffer_size);
l = pcm_write(audiobuf, l);
if (l <= 0)
break;
count -= l;
l = 0;
}
snd_pcm_channel_flush(pcm_handle, SND_PCM_CHANNEL_PLAYBACK);
1998-08-13 17:43:39 +02:00
}
1999-06-13 12:09:54 +02:00
/* captureing raw data, this proc handels WAVE files and .VOCs (as one block) */
1998-08-13 17:43:39 +02:00
1999-06-13 12:09:54 +02:00
void capture_go(int fd, int loaded, u_long count, int rtype, char *name)
1998-08-13 17:43:39 +02:00
{
2000-05-08 20:54:14 +02:00
size_t c;
ssize_t r;
1998-11-27 16:17:45 +01:00
header(rtype, name);
format_change = 1;
1998-11-27 16:17:45 +01:00
set_format();
2000-05-08 20:54:14 +02:00
while (count > 0) {
1998-11-27 16:17:45 +01:00
c = count;
2000-05-08 20:54:14 +02:00
if (c > buffer_size)
c = buffer_size;
if ((r = pcm_read(audiobuf, c)) <= 0)
break;
if (write(fd, audiobuf, r) != r) {
perror(name);
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
2000-05-08 20:54:14 +02:00
count -= r;
1998-11-27 16:17:45 +01:00
}
1998-08-13 17:43:39 +02:00
}
/*
1999-06-13 12:09:54 +02:00
* let's play or capture it (capture_type says VOC/WAVE/raw)
1998-08-13 17:43:39 +02:00
*/
static void playback(char *name)
{
1998-11-27 16:17:45 +01:00
int fd, ofs;
2000-05-08 20:54:14 +02:00
snd_pcm_channel_flush(pcm_handle, SND_PCM_CHANNEL_PLAYBACK);
1999-02-10 11:06:34 +01:00
if (!name || !strcmp(name, "-")) {
1998-11-27 16:17:45 +01:00
fd = 0;
name = "stdin";
} else {
if ((fd = open(name, O_RDONLY, 0)) == -1) {
perror(name);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
/* read the file header */
if (read(fd, audiobuf, sizeof(AuHeader)) != sizeof(AuHeader)) {
fprintf(stderr, "%s: read error", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
if (test_au(fd, audiobuf) >= 0) {
rformat.format = SND_PCM_SFMT_MU_LAW;
1998-11-27 16:17:45 +01:00
playback_go(fd, 0, count, FORMAT_AU, name);
goto __end;
}
if (read(fd, audiobuf + sizeof(AuHeader),
sizeof(VocHeader) - sizeof(AuHeader)) !=
sizeof(VocHeader) - sizeof(AuHeader)) {
1998-11-27 16:17:45 +01:00
fprintf(stderr, "%s: read error", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
if ((ofs = test_vocfile(audiobuf)) >= 0) {
voc_play(fd, ofs, name);
goto __end;
}
/* read bytes for WAVE-header */
if (read(fd, audiobuf + sizeof(VocHeader),
sizeof(WaveHeader) - sizeof(VocHeader)) !=
sizeof(WaveHeader) - sizeof(VocHeader)) {
fprintf(stderr, "%s: read error", command);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
if (test_wavefile(audiobuf) >= 0) {
playback_go(fd, 0, count, FORMAT_WAVE, name);
} else {
/* should be raw data */
check_new_format(&rformat);
1998-11-27 16:17:45 +01:00
init_raw_data();
count = calc_count();
playback_go(fd, sizeof(WaveHeader), count, FORMAT_RAW, name);
}
__end:
if (fd != 0)
close(fd);
}
1998-08-13 17:43:39 +02:00
1999-06-13 12:09:54 +02:00
static void capture(char *name)
1998-08-13 17:43:39 +02:00
{
1998-11-27 16:17:45 +01:00
int fd;
2000-01-10 09:16:32 +01:00
snd_pcm_capture_flush(pcm_handle);
1999-02-10 11:06:34 +01:00
if (!name || !strcmp(name, "-")) {
1998-11-27 16:17:45 +01:00
fd = 1;
name = "stdout";
} else {
remove(name);
if ((fd = open(name, O_WRONLY | O_CREAT, 0644)) == -1) {
perror(name);
2000-05-08 20:54:14 +02:00
exit(EXIT_FAILURE);
1998-11-27 16:17:45 +01:00
}
}
count = calc_count() & 0xFFFFFFFE;
/* WAVE-file should be even (I'm not sure), but wasting one byte
isn't a problem (this can only be in 8 bit mono) */
if (fmt_rec_table[active_format].start)
fmt_rec_table[active_format].start(fd, count);
check_new_format(&rformat);
1999-06-13 12:09:54 +02:00
capture_go(fd, 0, count, active_format, name);
1998-11-27 16:17:45 +01:00
fmt_rec_table[active_format].end(fd);
}