From 573c1fb8bdafdb287053e9f3745b0b998b4fb3c1 Mon Sep 17 00:00:00 2001 From: darkeye Date: Sun, 15 Feb 2004 22:26:16 +0000 Subject: [PATCH] fixed typo, minimal cosmetic change --- darkice/trunk/src/AudioSource.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/darkice/trunk/src/AudioSource.cpp b/darkice/trunk/src/AudioSource.cpp index e9b8d2e..3a26819 100644 --- a/darkice/trunk/src/AudioSource.cpp +++ b/darkice/trunk/src/AudioSource.cpp @@ -67,13 +67,13 @@ AudioSource :: createDspSource( const char * deviceName, { if ( Util::strEq( deviceName, "/dev", 4) ) { #if defined( SUPPORT_OSS_DSP ) - Reporter::reportEvent( 1, "using OSS DSP input device:", deviceName); + Reporter::reportEvent( 1, "Using OSS DSP input device:", deviceName); return new OssDspSource( deviceName, sampleRate, bitsPerSample, channel); #elif defined( SUPPORT_SOLARIS_DSP ) - Reporter::reportEvent( 1, "using Solaris DSP input device:",deviceName); + Reporter::reportEvent( 1, "Using Solaris DSP input device:",deviceName); return new SolarisDspSource( deviceName, sampleRate, bitsPerSample, @@ -85,7 +85,7 @@ AudioSource :: createDspSource( const char * deviceName, #endif } else { #if defined( SUPPORT_ALSA_DSP ) - Reporter::reportEvent( 1, "using ALSA DSP input device:", deviceName); + Reporter::reportEvent( 1, "Using ALSA DSP input device:", deviceName); return new AlsaDspSource( deviceName, sampleRate, bitsPerSample, @@ -104,6 +104,9 @@ AudioSource :: createDspSource( const char * deviceName, $Source$ $Log$ + Revision 1.2 2004/02/15 22:26:16 darkeye + fixed typo, minimal cosmetic change + Revision 1.1 2004/02/15 12:06:29 darkeye added ALSA support, thanks to Christian Forster