diff --git a/sflphone-gtk/src/calltree.c b/sflphone-gtk/src/calltree.c
index dd205d3f099a39f380bcec71775097e706393aa0..591f276ca0a91642aaf6cc3b18536017da73983f 100644
--- a/sflphone-gtk/src/calltree.c
+++ b/sflphone-gtk/src/calltree.c
@@ -691,7 +691,6 @@ update_call_tree (calltab_t* tab, call_t * c)
 	}
 	else
 	{
-          g_print("Stuff to be printed  %s  %s \n",call_get_number(c),call_get_name(c));
 	  description = g_markup_printf_escaped("<b>%s</b> <i>%s</i>", 
 	      call_get_number(c),
 	      call_get_name(c)); 
diff --git a/sflphone-gtk/src/dbus.c b/sflphone-gtk/src/dbus.c
index b58b4d667374ec1ca284dda6f251aaa1c64b7ab6..428333e55943631d14c7a46afb0a816554c1da3c 100644
--- a/sflphone-gtk/src/dbus.c
+++ b/sflphone-gtk/src/dbus.c
@@ -66,7 +66,7 @@ curent_selected_codec (DBusGProxy *proxy UNUSED,
                   const gchar* codecName,
                   void * foo  UNUSED )
 {
-  g_print ("Codec decided! %s\n",codecName);
+  g_print ("%s codec decided for call %s\n",codecName,callID);
   sflphone_display_selected_codec (codecName);
 }
 
diff --git a/src/plug-in/audiorecorder/audiorecord.h b/src/plug-in/audiorecorder/audiorecord.h
index 532c96e4bd784dc96dfe31a05bf099f9d1380685..ba1701f0cf3dbdcb2b3504cf9b4a228b8ef1d5fc 100644
--- a/src/plug-in/audiorecorder/audiorecord.h
+++ b/src/plug-in/audiorecorder/audiorecord.h
@@ -26,7 +26,7 @@
 #include <sstream>
 
 #include "plug-in/plugin.h"
-#include "audiodsp.h"
+// #include "audiodsp.h"
 
 // class AudioDSP;
 
@@ -189,11 +189,6 @@ protected:
   std::string savePath_;
 
   std::string call_id_;
-  
-  /**
-   * AudioDSP test (compute RMS value)
-   */
-  AudioDSP dsp;
  
 };
 
diff --git a/src/samplerateconverter.cpp b/src/samplerateconverter.cpp
index 52d047ca4cb5c5da507b1d91b4a7851b49cea9b9..a4e8474d37127fac823216486bd550cff6a711c5 100644
--- a/src/samplerateconverter.cpp
+++ b/src/samplerateconverter.cpp
@@ -64,8 +64,8 @@ void SamplerateConverter::init( void ) {
   // libSamplerateConverter-related
   // Set the converter type for the upsampling and the downsampling
   // interpolator SRC_SINC_BEST_QUALITY
-  _src_state_mic  = src_new(SRC_SINC_BEST_QUALITY, 1, &_src_err);
-  _src_state_spkr = src_new(SRC_SINC_BEST_QUALITY, 1, &_src_err);
+  _src_state_mic  = src_new(SRC_LINEAR, 1, &_src_err);
+  _src_state_spkr = src_new(SRC_LINEAR, 1, &_src_err);
 
   int nbSamplesMax = (int) ( getFrequence() * getFramesize() / 1000 );
   _floatBufferDownMic  = new float32[nbSamplesMax];