resolved memory leak issue introduced in 0.9
This commit is contained in:
parent
35d21539b6
commit
17bf419804
|
@ -11,4 +11,6 @@ with contributions by:
|
|||
Michael Smith, <msmith@labyrinth.net.au>
|
||||
Julius O. Smith, <jos@ccrma.stanford.edu>
|
||||
the OSALP team, http://osalp.sourceforge.net
|
||||
Kristjan G. Bjarnason <kgb@gangverk.is>
|
||||
Nicu Pavel <npavel@ituner.com>
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
09-04-2001: DarkIce 0.9.1 released
|
||||
|
||||
o bugfix: a memory leak was introduced in 0.9, which is fixed thanks to
|
||||
Kristjan G. Bjarnason <kgb@gangverk.is> and Nicu Pavel <npavel@ituner.com>
|
||||
o minor documentation fix
|
||||
|
||||
28-03-2002: DarkIce 0.9 released
|
||||
|
||||
o added possibility to simply read from the soundcard, encode, and
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(src/DarkIce.cpp)
|
||||
AM_INIT_AUTOMAKE(darkice, 0.9)
|
||||
AM_INIT_AUTOMAKE(darkice, 0.9.1)
|
||||
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ Summary : DarkIce live IceCast / ShoutCast streamer
|
|||
Name: darkice
|
||||
Vendor: Tyrell Hungary
|
||||
Packager: Akos Maroy <darkeye@tyrell.hu>
|
||||
Version: 0.9
|
||||
Version: 0.9.1
|
||||
Release: 1
|
||||
Copyright: GPL
|
||||
Group: Applications/Multimedia
|
||||
|
@ -97,6 +97,9 @@ make clean
|
|||
# =================================================================== change log
|
||||
#
|
||||
# $Log$
|
||||
# Revision 1.13 2002/04/09 13:10:43 darkeye
|
||||
# resolved memory leak issue introduced in 0.9
|
||||
#
|
||||
# Revision 1.12 2002/03/28 17:11:18 darkeye
|
||||
# added file AUTHORS to set of distributed files
|
||||
#
|
||||
|
|
|
@ -78,8 +78,7 @@ CastSink :: init ( TcpSocket * socket,
|
|||
int bufferSize = bitRate ? (bitRate * 1024 / 8) * bufferDuration
|
||||
: (128 * 1024 / 8) * bufferDuration;
|
||||
|
||||
bufferedSink = socket ? new BufferedSink( socket,
|
||||
(bufferSize * 1024 / 8) * bufferDuration)
|
||||
bufferedSink = socket ? new BufferedSink( socket, bufferSize)
|
||||
: 0;
|
||||
}
|
||||
|
||||
|
@ -146,6 +145,9 @@ CastSink :: open ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.9 2002/04/09 13:10:43 darkeye
|
||||
resolved memory leak issue introduced in 0.9
|
||||
|
||||
Revision 1.8 2002/03/28 16:40:55 darkeye
|
||||
slight changes to allow for variable bitrate streams
|
||||
(where the value of bitrate is 0)
|
||||
|
|
Loading…
Reference in New Issue