Skip to content
Snippets Groups Projects
Commit 33ba4397 authored by Lyubomir Marinov's avatar Lyubomir Marinov
Browse files

Applies formatting.

parent f9f95db3
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
import org.jitsi.service.neomedia.*; import org.jitsi.service.neomedia.*;
import org.jitsi.service.neomedia.MediaException; import org.jitsi.service.neomedia.MediaException;
import org.jitsi.util.*; import org.jitsi.util.*;
// disambiguation
/** /**
* The call recording implementation. * The call recording implementation.
...@@ -223,7 +222,8 @@ else if (extensionBeginIndex == filename.length() - 1) ...@@ -223,7 +222,8 @@ else if (extensionBeginIndex == filename.length() - 1)
try try
{ {
deviceSession.setContentDescriptor(getContentDescriptor(format)); deviceSession.setContentDescriptor(
getContentDescriptor(format));
// set initial mute state, if mute was set before starting // set initial mute state, if mute was set before starting
// the recorder // the recorder
...@@ -327,21 +327,21 @@ public void stop() ...@@ -327,21 +327,21 @@ public void stop()
* Put the recorder in mute state. It won't record the local input. * Put the recorder in mute state. It won't record the local input.
* This is used when the local call is muted and we don't won't to record * This is used when the local call is muted and we don't won't to record
* the local input. * the local input.
*
* @param mute the new value of the mute property * @param mute the new value of the mute property
*/ */
public void setMute(boolean mute) public void setMute(boolean mute)
{ {
this.mute = mute; this.mute = mute;
if(deviceSession != null) if (deviceSession != null)
{
deviceSession.setMute(mute); deviceSession.setMute(mute);
}
} }
/** /**
* Returns the filename we are last started or stopped recording to, * Returns the filename we are last started or stopped recording to,
* null if not started. * null if not started.
*
* @return the filename we are last started or stopped recording to, * @return the filename we are last started or stopped recording to,
* null if not started. * null if not started.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment