diff --git a/darkice/trunk/AUTHORS b/darkice/trunk/AUTHORS index fb766d8..a2ac9f2 100644 --- a/darkice/trunk/AUTHORS +++ b/darkice/trunk/AUTHORS @@ -7,4 +7,5 @@ with contributions by: Jim Crilly, aNa|0Gue, Robin P. Blanchard, + Tom Gray, diff --git a/darkice/trunk/ChangeLog b/darkice/trunk/ChangeLog index 32eb362..6228a36 100644 --- a/darkice/trunk/ChangeLog +++ b/darkice/trunk/ChangeLog @@ -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, 19-10-2001: DarkIce 0.7 released diff --git a/darkice/trunk/man/darkice.1 b/darkice/trunk/man/darkice.1 index 41140a5..44777a8 100644 --- a/darkice/trunk/man/darkice.1 +++ b/darkice/trunk/man/darkice.1 @@ -72,6 +72,8 @@ Akos Maroy .SH ACKNOWLEDGEMENTS Some contributions by Jim Crilly .I +and Tom Gray +.I Ogg Vorbis encoding code based on the contribution of aNa|0Gue .I diff --git a/darkice/trunk/src/IceCast.cpp b/darkice/trunk/src/IceCast.cpp index 2e6d97b..8be0628 100644 --- a/darkice/trunk/src/IceCast.cpp +++ b/darkice/trunk/src/IceCast.cpp @@ -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 diff --git a/darkice/trunk/src/IceCast2.cpp b/darkice/trunk/src/IceCast2.cpp index 207a0cb..fcd99b8 100644 --- a/darkice/trunk/src/IceCast2.cpp +++ b/darkice/trunk/src/IceCast2.cpp @@ -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 diff --git a/darkice/trunk/src/ShoutCast.cpp b/darkice/trunk/src/ShoutCast.cpp index 8ee6b2f..c7324ce 100644 --- a/darkice/trunk/src/ShoutCast.cpp +++ b/darkice/trunk/src/ShoutCast.cpp @@ -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