Skip to content

Commit 429d095

Browse files
committed
Issue 417 - Allow UTF-8 characters for Mac audio device names.
1 parent 30869c7 commit 429d095

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

src/audio_portaudio.c

+17-3
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,21 @@ static int pa_devNN(char *deviceStr, char *_devName, size_t length, int *_devNo)
213213
while(*cPtr) {
214214
cVal = *cPtr++;
215215
if(cVal == ':') break;
216-
if(((cVal >= ' ') && (cVal <= '~')) && (count < length)) {
216+
217+
// See Issue 417.
218+
// Originally this copied only printable ASCII characters (space thru ~).
219+
// That is a problem for some locales that use UTF-8 characters in the device name.
220+
// original: if(((cVal >= ' ') && (cVal <= '~')) && (count < length)) {
221+
222+
// At first I was thinking we should keep the test for < ' ' but then I
223+
// remembered that char type can be signed or unsigned depending on implementation.
224+
// If characters are signed then a value above 0x7f would be considered negative.
225+
226+
// It seems to me that the test for buffer full is off by one.
227+
// count could reach length, leaving no room for a nul terminator.
228+
// Compare has been changed so count is limited to length minus 1.
229+
230+
if(count < length - 1) {
217231
_devName[count++] = cVal;
218232
}
219233

@@ -1149,7 +1163,7 @@ int audio_put (int a, int c)
11491163
static double start = 0, end = 0, diff = 0;
11501164

11511165
if(adev[a].outbuf_len == 0)
1152-
start = dtime_now();
1166+
start = dtime_monotonic();
11531167
#endif
11541168

11551169
if(c >= 0) {
@@ -1178,7 +1192,7 @@ int audio_put (int a, int c)
11781192
#ifdef __TIMED__
11791193
count += frames;
11801194
if(c < 0) { // When the Ax25 frames are flushed.
1181-
end = dtime_now();
1195+
end = dtime_monotonic();
11821196
diff = end - start;
11831197
if(count)
11841198
dw_printf ("Transfer Time:%3.9f No of Frames:%d Per frame:%3.9f speed:%f\n",

0 commit comments

Comments
 (0)