fixed public stream reporting
This commit is contained in:
parent
52748eb65c
commit
03215d74f8
|
@ -7,4 +7,5 @@ with contributions by:
|
|||
Jim Crilly, <JCrilly@MSA.com>
|
||||
aNa|0Gue, <analogue@glop.org>
|
||||
Robin P. Blanchard, <Robin_Blanchard@gactr.uga.edu>
|
||||
Tom Gray, <tomg@future-i.com>
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@ DarkIce 0.8
|
|||
|
||||
o added possibility to disable lowpass and highpass filtering for lame
|
||||
o fixed incorrect vorbis bitrate setting
|
||||
o fix: DarkIce now reports public streams correctly
|
||||
thanks to Tom Gray, <tomg@future-i.com>
|
||||
|
||||
19-10-2001: DarkIce 0.7 released
|
||||
|
||||
|
|
|
@ -72,6 +72,8 @@ Akos Maroy
|
|||
.SH ACKNOWLEDGEMENTS
|
||||
Some contributions by Jim Crilly
|
||||
.I <JCrilly@MSA.com>
|
||||
and Tom Gray
|
||||
.I <tomg@future-i.com>
|
||||
|
||||
Ogg Vorbis encoding code based on the contribution of aNa|0Gue
|
||||
.I <analogue@glop.org>
|
||||
|
|
|
@ -146,7 +146,7 @@ IceCast :: sendLogin ( void ) throw ( Exception )
|
|||
|
||||
str = "\nx-audiocast-public: ";
|
||||
sink->write( str, strlen( str));
|
||||
str = getIsPublic() ? "yes" : "no";
|
||||
str = getIsPublic() ? "1" : "0";
|
||||
sink->write( str, strlen( str));
|
||||
|
||||
if ( getName() ) {
|
||||
|
@ -211,6 +211,9 @@ IceCast :: sendLogin ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.9 2001/11/20 09:06:18 darkeye
|
||||
fixed public stream reporting
|
||||
|
||||
Revision 1.8 2001/09/14 19:31:06 darkeye
|
||||
added IceCast2 / vorbis support
|
||||
|
||||
|
|
|
@ -143,7 +143,7 @@ IceCast2 :: sendLogin ( void ) throw ( Exception )
|
|||
|
||||
str = "\nice-public: ";
|
||||
sink->write( str, strlen( str));
|
||||
str = getIsPublic() ? "yes" : "no";
|
||||
str = getIsPublic() ? "1" : "0";
|
||||
sink->write( str, strlen( str));
|
||||
|
||||
if ( getName() ) {
|
||||
|
@ -188,6 +188,9 @@ IceCast2 :: sendLogin ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.2 2001/11/20 09:06:18 darkeye
|
||||
fixed public stream reporting
|
||||
|
||||
Revision 1.1 2001/09/14 19:31:06 darkeye
|
||||
added IceCast2 / vorbis support
|
||||
|
||||
|
|
|
@ -186,7 +186,7 @@ ShoutCast :: sendLogin ( void ) throw ( Exception )
|
|||
|
||||
str = "\nicy-pub:";
|
||||
sink->write( str, strlen( str));
|
||||
str = getIsPublic() ? "yes" : "no";
|
||||
str = getIsPublic() ? "1" : "0";
|
||||
sink->write( str, strlen( str));
|
||||
|
||||
str = "\n\n";
|
||||
|
@ -215,6 +215,9 @@ ShoutCast :: sendLogin ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$Log$
|
||||
Revision 1.2 2001/11/20 09:06:18 darkeye
|
||||
fixed public stream reporting
|
||||
|
||||
Revision 1.1 2001/09/09 11:27:31 darkeye
|
||||
added support for ShoutCast servers
|
||||
|
||||
|
|
Loading…
Reference in New Issue