diff --git a/darkice/trunk/AUTHORS b/darkice/trunk/AUTHORS index 674c97e..dec1fee 100644 --- a/darkice/trunk/AUTHORS +++ b/darkice/trunk/AUTHORS @@ -41,3 +41,4 @@ with contributions by: Roland Hermans Sergiy Clemens Ladisch + Edwin van den Oetelaar diff --git a/darkice/trunk/ChangeLog b/darkice/trunk/ChangeLog index d812df6..81cac5f 100644 --- a/darkice/trunk/ChangeLog +++ b/darkice/trunk/ChangeLog @@ -1,14 +1,18 @@ Next release + o fixed a bug in BufferedSink.cpp that leads to some buffers + being written twice, causing corruption of datastream, + thanks to Edwin van den Oetelaar o implemented samplerate conversion for all codecs using libsamplerate, and keeping internal aflibConverter as fallback, thanks to Sergiy o bugfix: fix for alsa driver - closes ticked #8 thanks to Clemens Ladisch + 14-11-2009 Darkice 0.20.1 released o added rc.darkice init script thanks to Niels Dettenbach o bugfix: fix for gcc 4.4 - + 05-11-2009 Darkice 0.20 released o new maintainer: Rafael Diniz diff --git a/darkice/trunk/src/BufferedSink.cpp b/darkice/trunk/src/BufferedSink.cpp index aabbadd..f27b774 100644 --- a/darkice/trunk/src/BufferedSink.cpp +++ b/darkice/trunk/src/BufferedSink.cpp @@ -330,10 +330,15 @@ BufferedSink :: write ( const void * buf, // the internal buffer is empty, try to write the fresh data soFar = 0; - if ( inp != outp ) { + if ( inp == outp ) { while ( soFar < len && sink->canWrite( 0, 0) ) { - soFar += sink->write( b + soFar, len - soFar); - } + try { + soFar += sink->write( b + soFar, len - soFar); + } catch (Exception &e) { + reportEvent(3,"Exception caught in BufferedSink :: write3\n"); + throw; /* up a level */ + } + } } length = soFar;