Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
53a3b859
Commit
53a3b859
authored
May 01, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add most of *-caching options as safe
Patch by Anthony Loiseau (thannoy _AT_ actech-innovation _DOT_ com)
parent
5226ae13
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
13 additions
and
0 deletions
+13
-0
modules/access/bda/bda.c
modules/access/bda/bda.c
+1
-0
modules/access/cdda.c
modules/access/cdda.c
+1
-0
modules/access/dv.c
modules/access/dv.c
+1
-0
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-0
modules/access/file.c
modules/access/file.c
+1
-0
modules/access/ftp.c
modules/access/ftp.c
+1
-0
modules/access/http.c
modules/access/http.c
+1
-0
modules/access/rtp/rtp.c
modules/access/rtp/rtp.c
+1
-0
modules/access/rtsp/access.c
modules/access/rtsp/access.c
+1
-0
modules/access/smb.c
modules/access/smb.c
+1
-0
modules/access/tcp.c
modules/access/tcp.c
+1
-0
modules/access/udp.c
modules/access/udp.c
+1
-0
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-0
No files found.
modules/access/bda/bda.c
View file @
53a3b859
...
...
@@ -198,6 +198,7 @@ vlc_module_begin ()
add_integer
(
"dvb-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_integer
(
"dvb-frequency"
,
0
,
NULL
,
FREQ_TEXT
,
FREQ_LONGTEXT
,
false
)
# if defined(WIN32) || defined(WINCE)
...
...
modules/access/cdda.c
View file @
53a3b859
...
...
@@ -74,6 +74,7 @@ vlc_module_begin ()
add_usage_hint
(
N_
(
"[cdda:][device][@[track]]"
)
)
add_integer
(
"cdda-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_integer
(
"cdda-track"
,
0
,
NULL
,
NULL
,
NULL
,
true
)
change_internal
()
...
...
modules/access/dv.c
View file @
53a3b859
...
...
@@ -79,6 +79,7 @@ vlc_module_begin ()
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"dv-caching"
,
60000
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
set_capability
(
"access"
,
0
)
add_shortcut
(
"dv"
)
add_shortcut
(
"dv1394"
)
...
...
modules/access/dvb/access.c
View file @
53a3b859
...
...
@@ -198,6 +198,7 @@ vlc_module_begin ()
add_integer
(
"dvb-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_integer
(
"dvb-adapter"
,
0
,
NULL
,
ADAPTER_TEXT
,
ADAPTER_LONGTEXT
,
false
)
add_integer
(
"dvb-device"
,
0
,
NULL
,
DEVICE_TEXT
,
DEVICE_LONGTEXT
,
...
...
modules/access/file.c
View file @
53a3b859
...
...
@@ -85,6 +85,7 @@ vlc_module_begin ()
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"file-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_obsolete_string
(
"file-cat"
)
set_capability
(
"access"
,
50
)
add_shortcut
(
"file"
)
...
...
modules/access/ftp.c
View file @
53a3b859
...
...
@@ -76,6 +76,7 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"ftp-caching"
,
2
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_string
(
"ftp-user"
,
"anonymous"
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
false
)
add_string
(
"ftp-pwd"
,
"anonymous@example.com"
,
NULL
,
PASS_TEXT
,
...
...
modules/access/http.c
View file @
53a3b859
...
...
@@ -108,6 +108,7 @@ vlc_module_begin ()
PROXY_PASS_TEXT
,
PROXY_PASS_LONGTEXT
,
false
)
add_integer
(
"http-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_string
(
"http-user-agent"
,
COPYRIGHT_MESSAGE
,
NULL
,
AGENT_TEXT
,
AGENT_LONGTEXT
,
true
)
add_bool
(
"http-reconnect"
,
0
,
NULL
,
RECONNECT_TEXT
,
...
...
modules/access/rtp/rtp.c
View file @
53a3b859
...
...
@@ -91,6 +91,7 @@ vlc_module_begin ()
add_integer
(
"rtp-caching"
,
1000
,
NULL
,
RTP_CACHING_TEXT
,
RTP_CACHING_LONGTEXT
,
true
)
change_integer_range
(
0
,
65535
)
change_safe
()
add_integer
(
"rtcp-port"
,
0
,
NULL
,
RTCP_PORT_TEXT
,
RTCP_PORT_LONGTEXT
,
false
)
change_integer_range
(
0
,
65535
)
...
...
modules/access/rtsp/access.c
View file @
53a3b859
...
...
@@ -55,6 +55,7 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"realrtsp-caching"
,
3000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
set_capability
(
"access"
,
10
)
set_callbacks
(
Open
,
Close
)
add_shortcut
(
"realrtsp"
)
...
...
modules/access/smb.c
View file @
53a3b859
...
...
@@ -83,6 +83,7 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"smb-caching"
,
2
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_string
(
"smb-user"
,
NULL
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
false
)
add_string
(
"smb-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
...
...
modules/access/tcp.c
View file @
53a3b859
...
...
@@ -54,6 +54,7 @@ vlc_module_begin ()
add_integer
(
"tcp-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
set_capability
(
"access"
,
0
)
add_shortcut
(
"tcp"
)
...
...
modules/access/udp.c
View file @
53a3b859
...
...
@@ -62,6 +62,7 @@ vlc_module_begin ()
add_integer
(
"udp-caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_obsolete_integer
(
"rtp-late"
)
add_obsolete_bool
(
"udp-auto-mtu"
)
...
...
modules/demux/live555.cpp
View file @
53a3b859
...
...
@@ -125,6 +125,7 @@ vlc_module_begin ()
true
)
add_integer
(
"rtsp-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
change_safe
()
add_bool
(
"rtsp-kasenna"
,
false
,
NULL
,
KASENNA_TEXT
,
KASENNA_LONGTEXT
,
true
)
add_string
(
"rtsp-user"
,
NULL
,
NULL
,
USER_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