1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*
rtBe.c:
Copyright (C) 2000 Jens Kilian
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA
*/
/* RTAUDIO.C for BeOS */
/* This module is included when RTAUDIO is defined at compile time.
It provides an interface between Csound realtime record/play calls
and the device-driver code that controls the actual hardware.
*/
#include "cs.h"
#include "soundio.h"
#include <OS.h>
#include "BeAudio.h"
static char *adcBuffer;
const bigtime_t portTimeout = 5000000;
static int oMaxLag;
extern OPARMS O;
#ifdef PIPES
#define _pclose pclose
#endif
void recopen_(int nchanls, int dsize, float esr, int scale)
/* open for audio input */
{
oMaxLag = O.oMaxLag; /* import DAC setting from command line */
if (oMaxLag <= 0) /* if DAC sampframes ndef in command line */
oMaxLag = IODACSAMPS; /* use the default value */
if (nchanls != 1 && nchanls != 2) {
die(Str(X_1154,"recopen: BeOS supports either one or two channels."));
} else if (!(adcBuffer = malloc(oMaxLag))) {
die(Str(X_1155,"recopen: Cannot allocate ADC buffer."));
} else if (openADCPort(nchanls, O.informat, esr, oMaxLag) < B_NO_ERROR) {
die(Str(X_1156,"recopen: cannot open ADC."));
}
}
void playopen_(int nchanls, int dsize, float esr, int scale)
/* open for audio output */
{
oMaxLag = O.oMaxLag; /* import DAC setting from command line */
if (oMaxLag <= 0) /* if DAC sampframes ndef in command line */
oMaxLag = IODACSAMPS; /* use the default value */
if (nchanls != 1 && nchanls != 2) {
die(Str(X_1128,"playopen: BeOS supports either one or two channels."));
} else if (openDACPort(nchanls, O.outformat, esr, oMaxLag) < B_NO_ERROR) {
die(Str(X_1129,"playopen: cannot open DAC."));
}
}
int rtrecord_(char *inbuf, int nbytes) /* get samples from ADC */
{
static size_t bufStart = 0;
static size_t bufLimit = 0;
size_t toRead = nbytes;
while (toRead > 0) {
size_t bufSize = bufLimit - bufStart;
if (bufSize > toRead) {
memcpy(inbuf, adcBuffer + bufStart, toRead);
bufStart += toRead;
toRead -= toRead;
} else {
int32 dummy;
ssize_t nRead;
memcpy(inbuf, adcBuffer + bufStart, bufSize);
inbuf += bufSize;
toRead -= bufSize;
nRead =
read_port_etc(gADCPort, &dummy, adcBuffer, oMaxLag,
B_TIMEOUT, portTimeout);
if (nRead < B_NO_ERROR) {
die(Str(X_1171,"rtrecord: error reading from ADC port"));
}
bufStart = 0;
bufLimit = (size_t)nRead;
}
}
return(nbytes);
}
void rtplay_(char *outbuf, int nbytes) /* put samples to DAC */
/* N.B. This routine serves as a THROTTLE in Csound Realtime Performance, */
/* delaying the actual writes and return until the hardware output buffer */
/* passes a sample-specific THRESHOLD. If the I/O BLOCKING functionality */
/* is implemented ACCURATELY by the vendor-supplied audio-library write, */
/* that is sufficient. Otherwise, requires some kind of IOCTL from here. */
/* This functionality is IMPORTANT when other realtime I/O is occurring, */
/* such as when external MIDI data is being collected from a serial port. */
/* Since Csound polls for MIDI input at the software synthesis K-rate */
/* (the resolution of all software-synthesised events), the user can */
/* eliminate MIDI jitter by requesting that both be made synchronous with */
/* the above audio I/O blocks, i.e. by setting -b to some 1 or 2 K-prds. */
{
while (nbytes > 0) {
size_t toWrite = (nbytes < oMaxLag) ? nbytes : oMaxLag;
if (write_port_etc(gDACPort, 0, outbuf, toWrite,
B_TIMEOUT, portTimeout) < B_NO_ERROR) {
printf(Str(X_1170,"rtplay: failed write to DAC port\n"));
}
outbuf += toWrite;
nbytes -= toWrite;
}
nrecs++;
}
void rtclose_(void) /* close the I/O device entirely */
{ /* called only when both complete */
closeADCPort();
closeDACPort();
if (O.Linein) {
#ifdef PIPES
if (O.Linename[0]=='|') _pclose(Linepipe);
else
#endif
if (strcmp(O.Linename, "stdin")!=0) close(Linefd);
}
}
|