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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/* hpsound.c: HP-UX sound I/O
Copyright (c) 2002-2004 Alexander Yurchenko, Russell Marks, Philip Kendall
Matan Ziv-Av, Stuart Brady
$Id: hpsound.c 3115 2007-08-19 02:49:14Z fredm $
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <config.h>
#ifdef AUDIO_FORMAT_LINEAR16BIT
#include <sys/types.h>
#include <sys/audio.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include "settings.h"
#include "sound.h"
#include "ui/ui.h"
static int soundfd = -1;
static int sixteenbit = 1;
int sound_lowlevel_init( const char *device, int *freqptr, int *stereoptr )
{
int flags, tmp, frag;
/* select a default device if we weren't explicitly given one */
if( device == NULL ) device = "/dev/audio";
/* Open the sound device non-blocking to avoid hangs if it is being
* used by something else, but then set it blocking again as that's what
* we actually want */
if( ( soundfd = open( device, O_WRONLY | O_NONBLOCK ) ) == -1 ) {
settings_current.sound = 0;
ui_error( UI_ERROR_ERROR, "Couldn't open sound device '%s'", device );
return 1;
}
if( ( flags = fcntl( soundfd, F_GETFL ) ) == -1 ) {
settings_current.sound = 0;
ui_error( UI_ERROR_ERROR, "Couldn't fcntl sound device '%s'", device );
close( soundfd );
return 1;
}
flags &= ~O_NONBLOCK;
if( fcntl( soundfd, F_SETFL, flags ) == -1 ) {
settings_current.sound = 0;
ui_error( UI_ERROR_ERROR, "Couldn't set sound device '%s' blocking",
device );
close( soundfd );
return 1;
}
tmp = AUDIO_FORMAT_LINEAR16BIT;
if( settings_current.sound_force_8bit ||
ioctl( soundfd, AUDIO_SET_DATA_FORMAT, tmp ) < 0 ) {
/* try 8-bit - may be an 8-bit only device */
tmp = AUDIO_FORMAT_LINEAR8BIT;
if( ioctl( soundfd, AUDIO_SET_DATA_FORMAT, tmp ) < 0 ) {
settings_current.sound = 0;
if( settings_current.sound_force_8bit ) {
ui_error( UI_ERROR_ERROR,
"Couldn't set sound device '%s' into 8-bit mode", device );
} else {
ui_error(
UI_ERROR_ERROR,
"Couldn't set sound device '%s' in either 16-bit or 8-bit mode",
device
);
}
close( soundfd );
return 1;
}
sixteenbit = 0;
}
tmp = ( *stereoptr ) ? 2 : 1;
if( ioctl( soundfd, AUDIO_SET_CHANNELS, tmp ) < 0 ) {
tmp = ( *stereoptr ) ? 1 : 2;
if( ioctl( soundfd, AUDIO_SET_CHANNELS, tmp ) < 0 ) {
settings_current.sound = 0;
ui_error(
UI_ERROR_ERROR,
"Couldn't set sound device '%s' into either mono or stereo mode",
device
);
close( soundfd );
return 1;
}
*stereoptr = tmp;
}
if( ioctl( soundfd, AUDIO_SET_SAMPLE_RATE, *freqptr ) < 0 ) {
settings_current.sound = 0;
ui_error( UI_ERROR_ERROR,"Couldn't set sound device '%s' speed to %d",
device, *freqptr );
close( soundfd );
return 1;
}
frag = 16384;
ioctl( soundfd, AUDIO_SET_FRAGMENT, frag );
return 0;
}
void
sound_lowlevel_end( void )
{
if( soundfd != -1 ) close( soundfd );
}
void
sound_lowlevel_frame( libspectrum_signed_word *data, int len )
{
static unsigned char buf8[4096];
unsigned char *data8=(unsigned char *)data;
int ret=0, ofs=0;
len <<= 1; /* now in bytes */
if( !sixteenbit ) {
libspectrum_signed_word *src;
unsigned char *dst;
int f;
src = data; dst = buf8;
len >>= 1;
/* TODO: confirm byteorder on IA64 */
for( f = 0; f < len; f++ )
*dst++ = 128 + (int)( (*src++) / 256 );
data8 = buf8;
}
while( len ) {
ret = write( soundfd, data8 + ofs, len );
if( ret > 0 ) {
ofs += ret;
len -= ret;
}
}
}
#endif /* #ifdef AUDIO_FORMAT_LINEAR16BIT */
|