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
55fbc085
Commit
55fbc085
authored
11 years ago
by
Boris Grozev
Browse files
Options
Downloads
Patches
Plain Diff
Increases the default priority of SILK, making it prefered over G722.
parent
a48983d6
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/codec/EncodingConfigurationImpl.java
+2
-2
2 additions, 2 deletions
.../jitsi/impl/neomedia/codec/EncodingConfigurationImpl.java
with
2 additions
and
2 deletions
src/org/jitsi/impl/neomedia/codec/EncodingConfigurationImpl.java
+
2
−
2
View file @
55fbc085
...
...
@@ -78,9 +78,9 @@ private void initializeFormatPreferences()
// audio
setEncodingPreference
(
"opus"
,
48000
,
750
);
setEncodingPreference
(
"SILK"
,
24000
,
714
);
setEncodingPreference
(
"SILK"
,
16000
,
713
);
setEncodingPreference
(
"G722"
,
8000
/* actually, 16 kHz */
,
705
);
setEncodingPreference
(
"SILK"
,
24000
,
704
);
setEncodingPreference
(
"SILK"
,
16000
,
703
);
setEncodingPreference
(
"speex"
,
32000
,
701
);
setEncodingPreference
(
"speex"
,
16000
,
700
);
setEncodingPreference
(
"PCMU"
,
8000
,
650
);
...
...
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