Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libjitsi
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZRTP
libjitsi
Commits
33ba4397
Commit
33ba4397
authored
11 years ago
by
Lyubomir Marinov
Browse files
Options
Downloads
Patches
Plain Diff
Applies formatting.
parent
f9f95db3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/org/jitsi/impl/neomedia/RecorderImpl.java
+5
-5
5 additions, 5 deletions
src/org/jitsi/impl/neomedia/RecorderImpl.java
with
5 additions
and
5 deletions
src/org/jitsi/impl/neomedia/RecorderImpl.java
+
5
−
5
View file @
33ba4397
...
@@ -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.
*/
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment