Reencode Voice source files into UTF-8 with Unix EOL

This commit is contained in:
Cinder Roxley
2024-07-01 10:58:47 -05:00
parent 3072449a4f
commit 22d2e38df1
3 changed files with 26 additions and 26 deletions

View File

@@ -35,21 +35,21 @@ namespace LibreMetaverse.Voice
/// This is used to login a specific user account(s). It may only be called after
/// Connector initialization has completed successfully
/// </summary>
/// <param name="ConnectorHandle">Handle returned from successful Connector create request</param>
/// <param name="ConnectorHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
/// <param name="AccountName">User's account name</param>
/// <param name="AccountPassword">User's account password</param>
/// <param name="AudioSessionAnswerMode">Values may be AutoAnswer or VerifyAnswer</param>
/// <param name="AudioSessionAnswerMode">Values may be <EFBFBD>AutoAnswer<EFBFBD> or <EFBFBD>VerifyAnswer<EFBFBD></param>
/// <param name="AccountURI">""</param>
/// <param name="ParticipantPropertyFrequency">This is an integer that specifies how often
/// the daemon will send participant property events while in a channel. If this is not set
/// the default will be on state change, which means that the events will be sent when
/// the default will be <EFBFBD>on state change<EFBFBD>, which means that the events will be sent when
/// the participant starts talking, stops talking, is muted, is unmuted.
/// The valid values are:
/// 0 Never
/// 5 10 times per second
/// 10 5 times per second
/// 50 1 time per second
/// 100 on participant state change (this is the default)</param>
/// 0 <EFBFBD> Never
/// 5 <EFBFBD> 10 times per second
/// 10 <EFBFBD> 5 times per second
/// 50 <EFBFBD> 1 time per second
/// 100 <EFBFBD> on participant state change (this is the default)</param>
/// <param name="EnableBuddiesAndPresence">false</param>
/// <returns></returns>
public int AccountLogin(string ConnectorHandle, string AccountName, string AccountPassword, string AudioSessionAnswerMode, string AccountURI, int ParticipantPropertyFrequency, bool EnableBuddiesAndPresence)
@@ -69,7 +69,7 @@ namespace LibreMetaverse.Voice
/// <summary>
/// This is used to logout a user session. It should only be called with a valid AccountHandle.
/// </summary>
/// <param name="AccountHandle">Handle returned from successful Connector login request</param>
/// <param name="AccountHandle">Handle returned from successful Connector <EFBFBD>login<EFBFBD> request</param>
/// <returns></returns>
public int AccountLogout(string AccountHandle)
{

View File

@@ -65,7 +65,7 @@ namespace LibreMetaverse.Voice
/// Shutdown Connector -- Should be called when the application is shutting down
/// to gracefully release resources
/// </summary>
/// <param name="ConnectorHandle">Handle returned from successful Connector create request</param>
/// <param name="ConnectorHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
public int ConnectorInitiateShutdown(string ConnectorHandle)
{
string RequestXML = VoiceGateway.MakeXML("ConnectorHandle", ConnectorHandle);
@@ -75,7 +75,7 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Mute or unmute the microphone
/// </summary>
/// <param name="ConnectorHandle">Handle returned from successful Connector create request</param>
/// <param name="ConnectorHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
/// <param name="Mute">true (mute) or false (unmute)</param>
public int ConnectorMuteLocalMic(string ConnectorHandle, bool Mute)
{
@@ -88,7 +88,7 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Mute or unmute the speaker
/// </summary>
/// <param name="ConnectorHandle">Handle returned from successful Connector create request</param>
/// <param name="ConnectorHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
/// <param name="Mute">true (mute) or false (unmute)</param>
public int ConnectorMuteLocalSpeaker(string ConnectorHandle, bool Mute)
{
@@ -101,9 +101,9 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Set microphone volume
/// </summary>
/// <param name="ConnectorHandle">Handle returned from successful Connector create request</param>
/// <param name="ConnectorHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
/// <param name="Value">The level of the audio, a number between -100 and 100 where
/// 0 represents normal speaking volume</param>
/// 0 represents <EFBFBD>normal<EFBFBD> speaking volume</param>
public int ConnectorSetLocalMicVolume(string ConnectorHandle, int Value)
{
StringBuilder sb = new StringBuilder();
@@ -115,9 +115,9 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Set local speaker volume
/// </summary>
/// <param name="ConnectorHandle">Handle returned from successful Connector create request</param>
/// <param name="ConnectorHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
/// <param name="Value">The level of the audio, a number between -100 and 100 where
/// 0 represents normal speaking volume</param>
/// 0 represents <EFBFBD>normal<EFBFBD> speaking volume</param>
public int ConnectorSetLocalSpeakerVolume(string ConnectorHandle, int Value)
{
StringBuilder sb = new StringBuilder();

View File

@@ -156,21 +156,21 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Create a Session
/// Sessions typically represent a connection to a media session with one or more
/// participants. This is used to generate an outbound call to another user or
/// participants. This is used to generate an <EFBFBD>outbound<EFBFBD> call to another user or
/// channel. The specifics depend on the media types involved. A session handle is
/// required to control the local user functions within the session (or remote
/// users if the current account has rights to do so). Currently creating a
/// session automatically connects to the audio media, there is no need to call
/// Session.Connect at this time, this is reserved for future use.
/// </summary>
/// <param name="AccountHandle">Handle returned from successful Connector create request</param>
/// <param name="AccountHandle">Handle returned from successful Connector <EFBFBD>create<EFBFBD> request</param>
/// <param name="URI">This is the URI of the terminating point of the session (ie who/what is being called)</param>
/// <param name="Name">This is the display name of the entity being called (user or channel)</param>
/// <param name="Password">Only needs to be supplied when the target URI is password protected</param>
/// <param name="PasswordHashAlgorithm">This indicates the format of the password as passed in. This can either be
/// ClearText or SHA1UserName. If this element does not exist, it is assumed to be ClearText. If it is
/// SHA1UserName, the password as passed in is the SHA1 hash of the password and username concatenated together,
/// then base64 encoded, with the final “=” character stripped off.</param>
/// <EFBFBD>ClearText<EFBFBD> or <EFBFBD>SHA1UserName<EFBFBD>. If this element does not exist, it is assumed to be <EFBFBD>ClearText<EFBFBD>. If it is
/// <EFBFBD>SHA1UserName<EFBFBD>, the password as passed in is the SHA1 hash of the password and username concatenated together,
/// then base64 encoded, with the final <EFBFBD>=<3D> character stripped off.</param>
/// <param name="JoinAudio"></param>
/// <param name="JoinText"></param>
/// <returns></returns>
@@ -237,9 +237,9 @@ namespace LibreMetaverse.Voice
}
/// <summary>
/// This is used to end an established session (i.e. hang-up or disconnect).
/// This is used to <EFBFBD>end<EFBFBD> an established session (i.e. hang-up or disconnect).
/// </summary>
/// <param name="SessionHandle">Handle returned from successful Session create request or a SessionNewEvent</param>
/// <param name="SessionHandle">Handle returned from successful Session <EFBFBD>create<EFBFBD> request or a SessionNewEvent</param>
/// <returns></returns>
public int SessionTerminate(string SessionHandle)
{
@@ -250,7 +250,7 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Set the combined speaking and listening position in 3D space.
/// </summary>
/// <param name="SessionHandle">Handle returned from successful Session create request or a SessionNewEvent</param>
/// <param name="SessionHandle">Handle returned from successful Session <EFBFBD>create<EFBFBD> request or a SessionNewEvent</param>
/// <param name="SpeakerPosition">Speaking position</param>
/// <param name="ListenerPosition">Listening position</param>
/// <returns></returns>
@@ -318,9 +318,9 @@ namespace LibreMetaverse.Voice
/// <summary>
/// Set User Volume for a particular user. Does not affect how other users hear that user.
/// </summary>
/// <param name="SessionHandle">Handle returned from successful Session create request or a SessionNewEvent</param>
/// <param name="SessionHandle">Handle returned from successful Session <EFBFBD>create<EFBFBD> request or a SessionNewEvent</param>
/// <param name="ParticipantURI"></param>
/// <param name="Volume">The level of the audio, a number between -100 and 100 where 0 represents normal speaking volume</param>
/// <param name="Volume">The level of the audio, a number between -100 and 100 where 0 represents <EFBFBD>normal<EFBFBD> speaking volume</param>
/// <returns></returns>
public int SessionSetParticipantVolumeForMe(string SessionHandle, string ParticipantURI, int Volume)
{