added support for unlimited time encoding
This commit is contained in:
parent
01e9d80c01
commit
03052d8258
|
@ -1,4 +1,8 @@
|
|||
DarkIce is being written by:
|
||||
|
||||
Akos Maroy, darkeye@users.sourceforge.net
|
||||
Akos Maroy, <darkeye@users.sourceforge.net>
|
||||
|
||||
with contributions by:
|
||||
|
||||
Jim Crilly, <JCrilly@MSA.com>
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
26-08-2001: DarkIce 0.3.1 released
|
||||
|
||||
o support for unlimited time encoding
|
||||
thanks to Jim Crilly, <JCrilly@MSA.com>
|
||||
|
||||
20-12-2000: DarkIce 0.3 released
|
||||
|
||||
o added POSIX real-time scheduling
|
||||
|
|
|
@ -62,7 +62,7 @@ This section describes general operational parameters.
|
|||
|
||||
Required values:
|
||||
|
||||
duration Time for DarkIce to run, in seconds.
|
||||
duration Time for DarkIce to run, in seconds. If 0, run forever.
|
||||
bufferSecs Data read from the sound card is buffered before sent to
|
||||
the mp3 encoder. Each buffer will be able to hold this
|
||||
many seconds of samples.
|
||||
|
|
|
@ -5,5 +5,4 @@ o make a master config file, and a small one
|
|||
o add support for shared object lame
|
||||
o add support for VBR encoding
|
||||
o reconnect to server if connection is dropped
|
||||
o add support for unlimited time encoding
|
||||
o add support for multiple servers for one stream
|
||||
|
|
|
@ -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.3)
|
||||
AM_INIT_AUTOMAKE(darkice, 0.3.1)
|
||||
|
||||
AM_CONFIG_HEADER(configure.h)
|
||||
|
||||
|
|
|
@ -267,7 +267,7 @@ Connector :: transfer ( unsigned long bytes,
|
|||
|
||||
reportEvent( 6, "Connector :: tranfer, bytes", bytes);
|
||||
|
||||
for ( b = 0; b < bytes; ) {
|
||||
for ( b = 0; !bytes || b < bytes; ) {
|
||||
unsigned int d = 0;
|
||||
unsigned int e = 0;
|
||||
|
||||
|
@ -333,6 +333,9 @@ Connector :: close ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.5 2001/08/26 08:43:13 darkeye
|
||||
added support for unlimited time encoding
|
||||
|
||||
Revision 1.4 2000/11/15 18:37:37 darkeye
|
||||
changed the transferable number of bytes to unsigned long
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ main (
|
|||
|
||||
cout << "DarkIce " << VERSION
|
||||
<< " live audio streamer, http://darkice.sourceforge.net" << endl;
|
||||
cout << "Copyright (C) 2000, Tyrell Hungary, http://tyrell.hu" << endl;
|
||||
cout << "Copyright (c) 2000-2001, Tyrell Hungary, http://tyrell.hu" << endl;
|
||||
cout << endl;
|
||||
|
||||
try {
|
||||
|
@ -171,6 +171,9 @@ showUsage ( ostream & os )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.6 2001/08/26 08:43:13 darkeye
|
||||
added support for unlimited time encoding
|
||||
|
||||
Revision 1.5 2000/11/15 18:08:43 darkeye
|
||||
added multiple verbosity-level event reporting and verbosity command
|
||||
line option
|
||||
|
|
Loading…
Reference in New Issue