r2636 - in trunk/libminisip/source: mediahandler soundcard
cesc at minisip.org
cesc at minisip.org
Mon Jun 5 20:32:26 CEST 2006
Author: cesc
Date: 2006-06-05 20:32:24 +0200 (Mon, 05 Jun 2006)
New Revision: 2636
Modified:
trunk/libminisip/source/mediahandler/AudioPlugin.cxx
trunk/libminisip/source/soundcard/AlsaSoundDriver.cxx
trunk/libminisip/source/soundcard/SoundDevice.cxx
Log:
Remove some debug messages ...
Modified: trunk/libminisip/source/mediahandler/AudioPlugin.cxx
===================================================================
--- trunk/libminisip/source/mediahandler/AudioPlugin.cxx 2006-06-04 20:24:23 UTC (rev 2635)
+++ trunk/libminisip/source/mediahandler/AudioPlugin.cxx 2006-06-05 18:32:24 UTC (rev 2636)
@@ -65,8 +65,6 @@
return NULL;
}
- cerr << "AudioPlugin: cesc: soundDevIn = " << soundDevIn << endl;
- cerr << "AudioPlugin: cesc: soundDevOut = " << soundDevOut << endl;
MRef<SoundDevice *> sounddevin = SoundDevice::create( soundDevIn );
MRef<SoundDevice *> sounddevout;
Modified: trunk/libminisip/source/soundcard/AlsaSoundDriver.cxx
===================================================================
--- trunk/libminisip/source/soundcard/AlsaSoundDriver.cxx 2006-06-04 20:24:23 UTC (rev 2635)
+++ trunk/libminisip/source/soundcard/AlsaSoundDriver.cxx 2006-06-05 18:32:24 UTC (rev 2636)
@@ -65,7 +65,7 @@
std::vector<SoundDeviceName> AlsaSoundDriver::getDeviceNames() const {
std::vector<SoundDeviceName> names;
- cerr << "AlsaSoundDriver::getDeviceNames not implemented" << endl;
+ mdbg << "AlsaSoundDriver::getDeviceNames not implemented" << end;
return names;
}
Modified: trunk/libminisip/source/soundcard/SoundDevice.cxx
===================================================================
--- trunk/libminisip/source/soundcard/SoundDevice.cxx 2006-06-04 20:24:23 UTC (rev 2635)
+++ trunk/libminisip/source/soundcard/SoundDevice.cxx 2006-06-05 18:32:24 UTC (rev 2636)
@@ -45,14 +45,12 @@
using namespace std;
MRef<SoundDevice *> SoundDevice::create( string devideId ){
- cerr << "SoundDevice: cesc: (start) deviceId = " << devideId << endl;
if( devideId == "" ){
return NULL;
}
MRef<SoundDevice*> device = SoundDriverRegistry::getInstance()->createDevice( devideId );
if( device ){
- cerr << "SoundDevice: cesc: device found in registry!" << endl;
return device;
}
@@ -77,7 +75,6 @@
#endif
#ifndef WIN32
- cerr << "WARNING: cesc: OSS device created ... default ... no other found"<<endl;
return new OssSoundDevice( devideId );
#else
cerr << "WARNING: No sound device is created! (BUG?)"<<endl;
More information about the Minisip-devel
mailing list