From c3b5d1ebb51848a679f96ac3bb1c8acb1b06138e Mon Sep 17 00:00:00 2001 From: mickeyl Date: Sun, 30 Jan 2005 19:00:38 +0000 Subject: improve mixer code --- (limited to 'examples') diff --git a/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp b/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp index f74a1b9..b18d719 100644 --- a/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp +++ b/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp @@ -48,17 +48,23 @@ int main( int argc, char** argv ) */ OSoundCard* card = it.current(); - OMixerInterface* mixer = card->mixer(); + odebug << "This device " << ( mixer->hasMultipleRecording() ? "does" : "does not" ) << " feature multiple recording sources." << oendl; QStringList channels = mixer->allChannels(); for ( QStringList::Iterator it = channels.begin(); it != channels.end(); ++it ) { bool stereo = mixer->isStereo( *it ); - odebug << "OSSDEMO: Mixer has channel " << *it << ( stereo ? "[stereo]" : "[mono]" ) << oendl; - odebug << "OSSDEMO: +--- volume " << ( mixer->volume( *it ) & 0xff ) - << " (left) | " << ( mixer->volume( *it ) >> 8 ) << " (right)" << oendl; + bool recsrc = mixer->isRecordable( *it ); + QString line = "OSSDEMO: Mixer has channel " + *it + " "; + line = line.leftJustify( 50 ) + ( stereo ? "[stereo]" : "[mono]" ); + line = line.leftJustify( 60 ) + ( recsrc ? "[recsrc]" : "[ ]" ); + line = line.leftJustify( 70 ); + line += " [ " + QString::number( mixer->volume( *it ) & 0xff ).rightJustify( 3 ); + if ( stereo ) line += " | " + QString::number( mixer->volume( *it ) >> 8 ).rightJustify( 3 ); + line += " ]"; + odebug << line << oendl; } return 0; -- cgit v0.9.0.2