fixed public stream reporting

This commit is contained in:
darkeye 2001-11-20 09:06:18 +00:00
parent 52748eb65c
commit 03215d74f8
6 changed files with 17 additions and 3 deletions

View File

@ -7,4 +7,5 @@ with contributions by:
Jim Crilly, <JCrilly@MSA.com> Jim Crilly, <JCrilly@MSA.com>
aNa|0Gue, <analogue@glop.org> aNa|0Gue, <analogue@glop.org>
Robin P. Blanchard, <Robin_Blanchard@gactr.uga.edu> Robin P. Blanchard, <Robin_Blanchard@gactr.uga.edu>
Tom Gray, <tomg@future-i.com>

View File

@ -2,6 +2,8 @@ DarkIce 0.8
o added possibility to disable lowpass and highpass filtering for lame o added possibility to disable lowpass and highpass filtering for lame
o fixed incorrect vorbis bitrate setting 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 19-10-2001: DarkIce 0.7 released

View File

@ -72,6 +72,8 @@ Akos Maroy
.SH ACKNOWLEDGEMENTS .SH ACKNOWLEDGEMENTS
Some contributions by Jim Crilly Some contributions by Jim Crilly
.I <JCrilly@MSA.com> .I <JCrilly@MSA.com>
and Tom Gray
.I <tomg@future-i.com>
Ogg Vorbis encoding code based on the contribution of aNa|0Gue Ogg Vorbis encoding code based on the contribution of aNa|0Gue
.I <analogue@glop.org> .I <analogue@glop.org>

View File

@ -146,7 +146,7 @@ IceCast :: sendLogin ( void ) throw ( Exception )
str = "\nx-audiocast-public: "; str = "\nx-audiocast-public: ";
sink->write( str, strlen( str)); sink->write( str, strlen( str));
str = getIsPublic() ? "yes" : "no"; str = getIsPublic() ? "1" : "0";
sink->write( str, strlen( str)); sink->write( str, strlen( str));
if ( getName() ) { if ( getName() ) {
@ -211,6 +211,9 @@ IceCast :: sendLogin ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.8 2001/09/14 19:31:06 darkeye
added IceCast2 / vorbis support added IceCast2 / vorbis support

View File

@ -143,7 +143,7 @@ IceCast2 :: sendLogin ( void ) throw ( Exception )
str = "\nice-public: "; str = "\nice-public: ";
sink->write( str, strlen( str)); sink->write( str, strlen( str));
str = getIsPublic() ? "yes" : "no"; str = getIsPublic() ? "1" : "0";
sink->write( str, strlen( str)); sink->write( str, strlen( str));
if ( getName() ) { if ( getName() ) {
@ -188,6 +188,9 @@ IceCast2 :: sendLogin ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.1 2001/09/14 19:31:06 darkeye
added IceCast2 / vorbis support added IceCast2 / vorbis support

View File

@ -186,7 +186,7 @@ ShoutCast :: sendLogin ( void ) throw ( Exception )
str = "\nicy-pub:"; str = "\nicy-pub:";
sink->write( str, strlen( str)); sink->write( str, strlen( str));
str = getIsPublic() ? "yes" : "no"; str = getIsPublic() ? "1" : "0";
sink->write( str, strlen( str)); sink->write( str, strlen( str));
str = "\n\n"; str = "\n\n";
@ -215,6 +215,9 @@ ShoutCast :: sendLogin ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $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 Revision 1.1 2001/09/09 11:27:31 darkeye
added support for ShoutCast servers added support for ShoutCast servers