summaryrefslogtreecommitdiff
path: root/libopie2/opiemm/osoundsystem.cpp
Unidiff
Diffstat (limited to 'libopie2/opiemm/osoundsystem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiemm/osoundsystem.cpp112
1 files changed, 45 insertions, 67 deletions
diff --git a/libopie2/opiemm/osoundsystem.cpp b/libopie2/opiemm/osoundsystem.cpp
index 09fd28f..6c03203 100644
--- a/libopie2/opiemm/osoundsystem.cpp
+++ b/libopie2/opiemm/osoundsystem.cpp
@@ -1,7 +1,6 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3 3              (C) 2003-2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
4              (C) 2003 Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
5 =. 4 =.
6 .=l. 5 .=l.
7           .>+-= 6           .>+-=
@@ -40,6 +39,8 @@
40#include <sys/soundcard.h> 39#include <sys/soundcard.h>
41#include <sys/stat.h> 40#include <sys/stat.h>
42 41
42static const char* device_label[] = SOUND_DEVICE_LABELS;
43static int max_device_nr = sizeof device_label / sizeof (const char*);
43 44
44using namespace Opie::Core; 45using namespace Opie::Core;
45using namespace Opie::MM; 46using namespace Opie::MM;
@@ -63,8 +64,7 @@ void OSoundSystem::synchronize()
63 64
64 _interfaces.clear(); 65 _interfaces.clear();
65 _interfaces.insert( "soundcard", new OSoundCard( this, "soundcard" ) ); 66 _interfaces.insert( "soundcard", new OSoundCard( this, "soundcard" ) );
66 67
67
68 /* 68 /*
69 69
70 QString str; 70 QString str;
@@ -176,7 +176,7 @@ void OAudioInterface::init()
176 *======================================================================================*/ 176 *======================================================================================*/
177 177
178OMixerInterface::OMixerInterface( QObject* parent, const char* name ) 178OMixerInterface::OMixerInterface( QObject* parent, const char* name )
179 :QObject( parent, name ) 179 :QObject( parent, name ), _devmask( 0 ), _recmask( 0 ), _stmask( 0 )
180{ 180{
181 odebug << "OMixerInterface::OMixerInterface()" << oendl; 181 odebug << "OMixerInterface::OMixerInterface()" << oendl;
182 init(); 182 init();
@@ -199,60 +199,32 @@ void OMixerInterface::init()
199 } 199 }
200 200
201 // construct the device capabilities 201 // construct the device capabilities
202 int devmask = 0; 202 if ( ioctl( _fd, SOUND_MIXER_READ_CAPS, &_capmask ) != -1 )
203 if ( ioctl( _fd, SOUND_MIXER_READ_DEVMASK, &devmask ) != -1 )
204 { 203 {
205 if ( devmask & ( 1 << SOUND_MIXER_VOLUME ) ) _channels.insert( "PlayVolume", SOUND_MIXER_VOLUME ); 204 odebug << "OMixerInterface::init() - capmask = " << _capmask << oendl;
206 if ( devmask & ( 1 << SOUND_MIXER_BASS ) ) _channels.insert( "PlayBass", SOUND_MIXER_BASS );
207 if ( devmask & ( 1 << SOUND_MIXER_TREBLE ) ) _channels.insert( "PlayTreble", SOUND_MIXER_TREBLE );
208 if ( devmask & ( 1 << SOUND_MIXER_SYNTH ) ) _channels.insert( "PlaySynth", SOUND_MIXER_SYNTH );
209 if ( devmask & ( 1 << SOUND_MIXER_PCM ) ) _channels.insert( "PlayPCM", SOUND_MIXER_PCM );
210 if ( devmask & ( 1 << SOUND_MIXER_SPEAKER ) ) _channels.insert( "PlaySpeaker", SOUND_MIXER_SPEAKER );
211 if ( devmask & ( 1 << SOUND_MIXER_LINE ) ) _channels.insert( "PlayLine", SOUND_MIXER_LINE );
212 if ( devmask & ( 1 << SOUND_MIXER_MIC ) ) _channels.insert( "PlayMic", SOUND_MIXER_MIC );
213 if ( devmask & ( 1 << SOUND_MIXER_CD ) ) _channels.insert( "PlayCD", SOUND_MIXER_CD );
214 if ( devmask & ( 1 << SOUND_MIXER_IMIX ) ) _channels.insert( "PlayInputMix", SOUND_MIXER_IMIX );
215 if ( devmask & ( 1 << SOUND_MIXER_ALTPCM ) ) _channels.insert( "PlayAltPCM", SOUND_MIXER_ALTPCM );
216 if ( devmask & ( 1 << SOUND_MIXER_RECLEV ) ) _channels.insert( "PlayRecord", SOUND_MIXER_RECLEV );
217 if ( devmask & ( 1 << SOUND_MIXER_IGAIN ) ) _channels.insert( "PlayInputGain", SOUND_MIXER_IGAIN );
218 if ( devmask & ( 1 << SOUND_MIXER_OGAIN ) ) _channels.insert( "PlayOutputGain", SOUND_MIXER_OGAIN );
219 //odebug << "devmask available and constructed." << oendl;
220 } 205 }
221 206 if ( ioctl( _fd, SOUND_MIXER_READ_DEVMASK, &_devmask ) != -1 )
222 devmask = 0;
223 if ( ioctl( _fd, SOUND_MIXER_READ_RECMASK, &devmask ) != -1 )
224 { 207 {
225 if ( devmask & ( 1 << SOUND_MIXER_VOLUME ) ) _channels.insert( "RecVolume", SOUND_MIXER_VOLUME ); 208 odebug << "OMixerInterface::init() - devmask = " << _devmask << oendl;
226 if ( devmask & ( 1 << SOUND_MIXER_BASS ) ) _channels.insert( "RecBass", SOUND_MIXER_BASS );
227 if ( devmask & ( 1 << SOUND_MIXER_TREBLE ) ) _channels.insert( "RecTreble", SOUND_MIXER_TREBLE );
228 if ( devmask & ( 1 << SOUND_MIXER_SYNTH ) ) _channels.insert( "RecSynth", SOUND_MIXER_SYNTH );
229 if ( devmask & ( 1 << SOUND_MIXER_PCM ) ) _channels.insert( "RecPCM", SOUND_MIXER_PCM );
230 if ( devmask & ( 1 << SOUND_MIXER_SPEAKER ) ) _channels.insert( "RecSpeaker", SOUND_MIXER_SPEAKER );
231 if ( devmask & ( 1 << SOUND_MIXER_LINE ) ) _channels.insert( "RecLine", SOUND_MIXER_LINE );
232 if ( devmask & ( 1 << SOUND_MIXER_MIC ) ) _channels.insert( "RecMic", SOUND_MIXER_MIC );
233 if ( devmask & ( 1 << SOUND_MIXER_CD ) ) _channels.insert( "RecCD", SOUND_MIXER_CD );
234 if ( devmask & ( 1 << SOUND_MIXER_IMIX ) ) _channels.insert( "RecInputMix", SOUND_MIXER_IMIX );
235 if ( devmask & ( 1 << SOUND_MIXER_ALTPCM ) ) _channels.insert( "RecAltPCM", SOUND_MIXER_ALTPCM );
236 if ( devmask & ( 1 << SOUND_MIXER_RECLEV ) ) _channels.insert( "RecRecord", SOUND_MIXER_RECLEV );
237 if ( devmask & ( 1 << SOUND_MIXER_IGAIN ) ) _channels.insert( "RecInputGain", SOUND_MIXER_IGAIN );
238 if ( devmask & ( 1 << SOUND_MIXER_OGAIN ) ) _channels.insert( "RecOutputGain", SOUND_MIXER_OGAIN );
239 //odebug << "recmask available and constructed." << oendl;
240 } 209 }
241 210 if ( ioctl( _fd, SOUND_MIXER_READ_RECMASK, &_recmask ) != -1 )
242 devmask = 0;
243 if ( ioctl( _fd, SOUND_MIXER_READ_STEREODEVS, &devmask ) != -1 )
244 { 211 {
245 odebug << "stereomask = " << devmask << oendl; 212 odebug << "OMixerInterface::init() - recmask = " << _recmask << oendl;
246 } 213 }
247 214 if ( ioctl( _fd, SOUND_MIXER_READ_STEREODEVS, &_stmask ) != -1 )
248/* ChannelIterator it;
249 for ( it = _channels.begin(); it != _channels.end(); ++it )
250 { 215 {
251 odebug << "Channel " << it.key() << " available (bit " << it.data() << ")" << oendl; 216 odebug << "OMixerInterface::init() - stereomask = " << _stmask << oendl;
252 odebug << " +--- Volume: " << volume( it.key() ) & 0xff << " | " << volume( it.key() ) >> 8 << "" << oendl;
253 } 217 }
254*/ 218 for ( int i = 0; i < max_device_nr; ++i )
255} 219 {
220 if ( _devmask & ( 1 << i ) )
221 {
222 _channels.insert( QString( device_label[i] ).stripWhiteSpace(), i );
223 odebug << "OMixerInterface::init() - channel '" << device_label[i] << "'" << oendl;
224 }
225 }
226}
227
256 228
257QStringList OMixerInterface::allChannels() const 229QStringList OMixerInterface::allChannels() const
258{ 230{
@@ -260,8 +232,7 @@ QStringList OMixerInterface::allChannels() const
260 QStringList channels; 232 QStringList channels;
261 while ( it != _channels.end() ) 233 while ( it != _channels.end() )
262 { 234 {
263 channels += it.key(); 235 channels += it++.key();
264 it++;
265 } 236 }
266 return channels; 237 return channels;
267} 238}
@@ -269,15 +240,25 @@ QStringList OMixerInterface::allChannels() const
269 240
270QStringList OMixerInterface::recChannels() const 241QStringList OMixerInterface::recChannels() const
271{ 242{
272 owarn << "NYI" << oendl; 243 ChannelIterator it = _channels.begin();
273 return QStringList(); 244 QStringList channels;
245 while ( it != _channels.end() )
246 {
247 if ( _recmask & ( 1 << _channels[it.key()] ) ) channels += it++.key();
248 }
249 return channels;
274} 250}
275 251
276 252
277QStringList OMixerInterface::playChannels() const 253QStringList OMixerInterface::playChannels() const
278{ 254{
279 owarn << "NYI" << oendl; 255 return allChannels();
280 return QStringList(); 256}
257
258
259bool OMixerInterface::hasMultipleRecording() const
260{
261 return !( _capmask & SOUND_CAP_EXCL_INPUT );
281} 262}
282 263
283 264
@@ -289,16 +270,13 @@ bool OMixerInterface::hasChannel( const QString& channel ) const
289 270
290bool OMixerInterface::isStereo( const QString& channel ) const 271bool OMixerInterface::isStereo( const QString& channel ) const
291{ 272{
292 bool result = false; 273 return _channels.contains( channel ) && ( _stmask & ( 1 << _channels[channel] ) );
293 if ( _channels.contains( channel ) ) 274}
294 { 275
295 int devmask = 0; 276
296 if ( ioctl( _fd, SOUND_MIXER_READ_STEREODEVS, &devmask ) != -1 ) 277bool OMixerInterface::isRecordable( const QString& channel ) const
297 { 278{
298 result = devmask & ( 1 << _channels[channel] ); 279 return _channels.contains( channel ) && ( _recmask & ( 1 << _channels[channel] ) );
299 }
300 }
301 return result;
302} 280}
303 281
304 282