summaryrefslogtreecommitdiff
path: root/libopie2/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp
Side-by-side diff
Diffstat (limited to 'libopie2/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/libopie2/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp b/libopie2/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp
new file mode 100644
index 0000000..79bf327
--- a/dev/null
+++ b/libopie2/examples/opiemm/osoundsystemdemo/osoundsystemdemo.cpp
@@ -0,0 +1,32 @@
+#include <opie2/osoundsystem.h>
+
+int main( int argc, char** argv )
+{
+ qDebug( "OPIE Sound System Demo" );
+
+ OSoundSystem* sound = OSoundSystem::instance();
+
+ OSoundSystem::CardIterator it = sound->iterator();
+/*
+ while ( it.current() )
+ {
+ qDebug( "DEMO: OSoundSystem contains Interface '%s'", (const char*) it.current()->name() );
+ ++it;
+ }
+
+*/
+ OSoundCard* card = it.current();
+
+ OMixerInterface* mixer = card->mixer();
+
+ QStringList channels = mixer->allChannels();
+
+ for ( QStringList::Iterator it = channels.begin(); it != channels.end(); ++it )
+ {
+ qDebug( "OSSDEMO: Mixer has channel %s", (const char*) *it );
+ qDebug( "OSSDEMO: +--- volume %d (left) | %d (right)", mixer->volume( *it ) & 0xff, mixer->volume( *it ) >> 8 );
+ }
+
+ return 0;
+
+}