Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
d71dcc99
Commit
d71dcc99
authored
Aug 30, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Constrain caching to a positive value no longer than one minute
parent
1cee8fbf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/libvlc-module.c
src/libvlc-module.c
+5
-1
No files found.
src/libvlc-module.c
View file @
d71dcc99
...
...
@@ -1913,15 +1913,19 @@ vlc_module_begin ()
add_integer
(
"file-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_integer_range
(
0
,
60000
)
change_safe
()
add_integer
(
"
captur
e-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
add_integer
(
"
liv
e-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
CAPTURE_CACHING_TEXT
,
CAPTURE_CACHING_LONGTEXT
,
true
)
change_integer_range
(
0
,
60000
)
change_safe
()
add_integer
(
"disc-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
DISC_CACHING_TEXT
,
DISC_CACHING_LONGTEXT
,
true
)
change_integer_range
(
0
,
60000
)
change_safe
()
add_integer
(
"network-caching"
,
CLOCK_FREQ
/
1000
,
NETWORK_CACHING_TEXT
,
NETWORK_CACHING_LONGTEXT
,
true
)
change_integer_range
(
0
,
60000
)
change_safe
()
add_integer
(
"cr-average"
,
40
,
CR_AVERAGE_TEXT
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment