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
29abf6f4
Commit
29abf6f4
authored
Apr 03, 2011
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old obsolete variables.
parent
0f6a4c5d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
28 deletions
+0
-28
modules/access/http.c
modules/access/http.c
+0
-2
modules/access_output/udp.c
modules/access_output/udp.c
+0
-2
modules/codec/dvbsub.c
modules/codec/dvbsub.c
+0
-1
modules/control/http/http.c
modules/control/http/http.c
+0
-1
modules/misc/gnutls.c
modules/misc/gnutls.c
+0
-4
modules/mux/mpjpeg.c
modules/mux/mpjpeg.c
+0
-1
modules/stream_out/standard.c
modules/stream_out/standard.c
+0
-2
modules/video_filter/marq.c
modules/video_filter/marq.c
+0
-7
src/libvlc-module.c
src/libvlc-module.c
+0
-8
No files found.
modules/access/http.c
View file @
29abf6f4
...
@@ -143,8 +143,6 @@ vlc_module_begin ()
...
@@ -143,8 +143,6 @@ vlc_module_begin ()
add_bool
(
"http-use-IE-proxy"
,
false
,
USE_IE_PROXY_TEXT
,
add_bool
(
"http-use-IE-proxy"
,
false
,
USE_IE_PROXY_TEXT
,
USE_IE_PROXY_LONGTEXT
,
true
)
USE_IE_PROXY_LONGTEXT
,
true
)
#endif
#endif
add_obsolete_string
(
"http-user"
)
add_obsolete_string
(
"http-pwd"
)
/* 'itpc' = iTunes Podcast */
/* 'itpc' = iTunes Podcast */
add_shortcut
(
"http"
,
"https"
,
"unsv"
,
"itpc"
,
"icyx"
)
add_shortcut
(
"http"
,
"https"
,
"unsv"
,
"itpc"
,
"icyx"
)
set_callbacks
(
Open
,
Close
)
set_callbacks
(
Open
,
Close
)
...
...
modules/access_output/udp.c
View file @
29abf6f4
...
@@ -81,8 +81,6 @@ vlc_module_begin ()
...
@@ -81,8 +81,6 @@ vlc_module_begin ()
add_integer
(
SOUT_CFG_PREFIX
"caching"
,
DEFAULT_PTS_DELAY
/
1000
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
add_integer
(
SOUT_CFG_PREFIX
"caching"
,
DEFAULT_PTS_DELAY
/
1000
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
add_integer
(
SOUT_CFG_PREFIX
"group"
,
1
,
GROUP_TEXT
,
GROUP_LONGTEXT
,
add_integer
(
SOUT_CFG_PREFIX
"group"
,
1
,
GROUP_TEXT
,
GROUP_LONGTEXT
,
true
)
true
)
add_obsolete_integer
(
SOUT_CFG_PREFIX
"late"
)
add_obsolete_bool
(
SOUT_CFG_PREFIX
"raw"
)
set_capability
(
"sout access"
,
0
)
set_capability
(
"sout access"
,
0
)
add_shortcut
(
"udp"
)
add_shortcut
(
"udp"
)
...
...
modules/codec/dvbsub.c
View file @
29abf6f4
...
@@ -135,7 +135,6 @@ vlc_module_begin ()
...
@@ -135,7 +135,6 @@ vlc_module_begin ()
add_integer
(
ENC_CFG_PREFIX
"x"
,
-
1
,
ENC_POSX_TEXT
,
ENC_POSX_LONGTEXT
,
false
)
add_integer
(
ENC_CFG_PREFIX
"x"
,
-
1
,
ENC_POSX_TEXT
,
ENC_POSX_LONGTEXT
,
false
)
add_integer
(
ENC_CFG_PREFIX
"y"
,
-
1
,
ENC_POSY_TEXT
,
ENC_POSY_LONGTEXT
,
false
)
add_integer
(
ENC_CFG_PREFIX
"y"
,
-
1
,
ENC_POSY_TEXT
,
ENC_POSY_LONGTEXT
,
false
)
add_obsolete_integer
(
ENC_CFG_PREFIX
"timeout"
)
/* Suppressed since 0.8.5 */
vlc_module_end
()
vlc_module_end
()
static
const
char
*
const
ppsz_enc_options
[]
=
{
"x"
,
"y"
,
NULL
};
static
const
char
*
const
ppsz_enc_options
[]
=
{
"x"
,
"y"
,
NULL
};
...
...
modules/control/http/http.c
View file @
29abf6f4
...
@@ -72,7 +72,6 @@ vlc_module_begin ()
...
@@ -72,7 +72,6 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_INTERFACE_MAIN
)
set_subcategory
(
SUBCAT_INTERFACE_MAIN
)
add_string
(
"http-host"
,
NULL
,
HOST_TEXT
,
HOST_LONGTEXT
,
true
)
add_string
(
"http-host"
,
NULL
,
HOST_TEXT
,
HOST_LONGTEXT
,
true
)
add_string
(
"http-src"
,
NULL
,
SRC_TEXT
,
SRC_LONGTEXT
,
true
)
add_string
(
"http-src"
,
NULL
,
SRC_TEXT
,
SRC_LONGTEXT
,
true
)
add_obsolete_string
(
"http-charset"
)
#if defined( HAVE_FORK ) || defined( WIN32 )
#if defined( HAVE_FORK ) || defined( WIN32 )
add_string
(
"http-handlers"
,
NULL
,
HANDLERS_TEXT
,
HANDLERS_LONGTEXT
,
true
)
add_string
(
"http-handlers"
,
NULL
,
HANDLERS_TEXT
,
HANDLERS_LONGTEXT
,
true
)
#endif
#endif
...
...
modules/misc/gnutls.c
View file @
29abf6f4
...
@@ -91,9 +91,6 @@ vlc_module_begin ()
...
@@ -91,9 +91,6 @@ vlc_module_begin ()
set_category
(
CAT_ADVANCED
)
set_category
(
CAT_ADVANCED
)
set_subcategory
(
SUBCAT_ADVANCED_MISC
)
set_subcategory
(
SUBCAT_ADVANCED_MISC
)
add_obsolete_bool
(
"tls-check-cert"
)
add_obsolete_bool
(
"tls-check-hostname"
)
add_submodule
()
add_submodule
()
set_description
(
N_
(
"GnuTLS server"
)
)
set_description
(
N_
(
"GnuTLS server"
)
)
set_capability
(
"tls server"
,
1
)
set_capability
(
"tls server"
,
1
)
...
@@ -101,7 +98,6 @@ vlc_module_begin ()
...
@@ -101,7 +98,6 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_ADVANCED_MISC
)
set_subcategory
(
SUBCAT_ADVANCED_MISC
)
set_callbacks
(
OpenServer
,
CloseServer
)
set_callbacks
(
OpenServer
,
CloseServer
)
add_obsolete_integer
(
"gnutls-dh-bits"
)
add_integer
(
"gnutls-cache-timeout"
,
CACHE_TIMEOUT
,
add_integer
(
"gnutls-cache-timeout"
,
CACHE_TIMEOUT
,
CACHE_TIMEOUT_TEXT
,
CACHE_TIMEOUT_LONGTEXT
,
true
)
CACHE_TIMEOUT_TEXT
,
CACHE_TIMEOUT_LONGTEXT
,
true
)
add_integer
(
"gnutls-cache-size"
,
CACHE_SIZE
,
CACHE_SIZE_TEXT
,
add_integer
(
"gnutls-cache-size"
,
CACHE_SIZE
,
CACHE_SIZE_TEXT
,
...
...
modules/mux/mpjpeg.c
View file @
29abf6f4
...
@@ -46,7 +46,6 @@ vlc_module_begin ()
...
@@ -46,7 +46,6 @@ vlc_module_begin ()
set_shortname
(
"MPJPEG"
)
set_shortname
(
"MPJPEG"
)
set_description
(
N_
(
"Multipart JPEG muxer"
)
)
set_description
(
N_
(
"Multipart JPEG muxer"
)
)
set_capability
(
"sout mux"
,
5
)
set_capability
(
"sout mux"
,
5
)
add_obsolete_string
(
SOUT_CFG_PREFIX
"separator"
)
set_category
(
CAT_SOUT
)
set_category
(
CAT_SOUT
)
set_subcategory
(
SUBCAT_SOUT_MUX
)
set_subcategory
(
SUBCAT_SOUT_MUX
)
set_callbacks
(
Open
,
Close
)
set_callbacks
(
Open
,
Close
)
...
...
modules/stream_out/standard.c
View file @
29abf6f4
...
@@ -129,8 +129,6 @@ vlc_module_begin ()
...
@@ -129,8 +129,6 @@ vlc_module_begin ()
true
)
true
)
add_string
(
SOUT_CFG_PREFIX
"phone"
,
""
,
PHONE_TEXT
,
PHONE_LONGTEXT
,
add_string
(
SOUT_CFG_PREFIX
"phone"
,
""
,
PHONE_TEXT
,
PHONE_LONGTEXT
,
true
)
true
)
add_obsolete_bool
(
SOUT_CFG_PREFIX
"sap-ipv6"
)
set_callbacks
(
Open
,
Close
)
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
vlc_module_end
()
...
...
modules/video_filter/marq.c
View file @
29abf6f4
...
@@ -177,13 +177,6 @@ vlc_module_begin ()
...
@@ -177,13 +177,6 @@ vlc_module_begin ()
REFRESH_LONGTEXT
,
false
)
REFRESH_LONGTEXT
,
false
)
add_shortcut
(
"time"
)
add_shortcut
(
"time"
)
add_obsolete_string
(
"time-format"
)
add_obsolete_string
(
"time-x"
)
add_obsolete_string
(
"time-y"
)
add_obsolete_string
(
"time-position"
)
add_obsolete_string
(
"time-opacity"
)
add_obsolete_string
(
"time-color"
)
add_obsolete_string
(
"time-size"
)
vlc_module_end
()
vlc_module_end
()
static
const
char
*
const
ppsz_filter_options
[]
=
{
static
const
char
*
const
ppsz_filter_options
[]
=
{
...
...
src/libvlc-module.c
View file @
29abf6f4
...
@@ -2018,7 +2018,6 @@ vlc_module_begin ()
...
@@ -2018,7 +2018,6 @@ vlc_module_begin ()
PACKETIZER_TEXT
,
PACKETIZER_LONGTEXT
,
true
)
PACKETIZER_TEXT
,
PACKETIZER_LONGTEXT
,
true
)
set_subcategory
(
SUBCAT_SOUT_SAP
)
set_subcategory
(
SUBCAT_SOUT_SAP
)
add_obsolete_bool
(
"sap-flow-control"
)
add_integer
(
"sap-interval"
,
5
,
ANN_SAPINTV_TEXT
,
add_integer
(
"sap-interval"
,
5
,
ANN_SAPINTV_TEXT
,
ANN_SAPINTV_LONGTEXT
,
true
)
ANN_SAPINTV_LONGTEXT
,
true
)
...
@@ -2075,11 +2074,6 @@ vlc_module_begin ()
...
@@ -2075,11 +2074,6 @@ vlc_module_begin ()
change_need_restart
()
change_need_restart
()
set_section
(
N_
(
"Performance options"
),
NULL
)
set_section
(
N_
(
"Performance options"
),
NULL
)
add_obsolete_bool
(
"minimize-threads"
)
add_obsolete_bool
(
"use-stream-immediate"
)
add_obsolete_bool
(
"auto-adjust-pts-delay"
)
#ifdef LIBVLC_USE_PTHREAD
#ifdef LIBVLC_USE_PTHREAD
# ifndef __APPLE__
# ifndef __APPLE__
...
@@ -2202,8 +2196,6 @@ vlc_module_begin ()
...
@@ -2202,8 +2196,6 @@ vlc_module_begin ()
add_bool
(
"interact"
,
true
,
INTERACTION_TEXT
,
add_bool
(
"interact"
,
true
,
INTERACTION_TEXT
,
INTERACTION_LONGTEXT
,
false
)
INTERACTION_LONGTEXT
,
false
)
add_obsolete_bool
(
"show-intf"
);
add_bool
(
"stats"
,
true
,
STATS_TEXT
,
STATS_LONGTEXT
,
true
)
add_bool
(
"stats"
,
true
,
STATS_TEXT
,
STATS_LONGTEXT
,
true
)
change_need_restart
()
change_need_restart
()
...
...
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