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
3c6db86c
Commit
3c6db86c
authored
Mar 02, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oldrc: only invoke console intro message where applicable
parent
b9db3f9a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/control/dummy.c
modules/control/dummy.c
+2
-2
modules/control/rc.c
modules/control/rc.c
+3
-3
No files found.
modules/control/dummy.c
View file @
3c6db86c
...
@@ -49,7 +49,7 @@ vlc_module_begin ()
...
@@ -49,7 +49,7 @@ vlc_module_begin ()
set_description
(
N_
(
"Dummy interface"
)
)
set_description
(
N_
(
"Dummy interface"
)
)
set_capability
(
"interface"
,
0
)
set_capability
(
"interface"
,
0
)
set_callbacks
(
Open
,
NULL
)
set_callbacks
(
Open
,
NULL
)
#if
def _WIN32
#if
defined(_WIN32) && !VLC_WINSTORE_APP
add_bool
(
"dummy-quiet"
,
false
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
false
)
add_bool
(
"dummy-quiet"
,
false
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
false
)
#endif
#endif
vlc_module_end
()
vlc_module_end
()
...
@@ -61,7 +61,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -61,7 +61,7 @@ static int Open( vlc_object_t *p_this )
{
{
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
#if
def _WIN32
#if
defined(_WIN32) && !VLC_WINSTORE_APP
bool
b_quiet
;
bool
b_quiet
;
b_quiet
=
var_InheritBool
(
p_intf
,
"dummy-quiet"
);
b_quiet
=
var_InheritBool
(
p_intf
,
"dummy-quiet"
);
if
(
!
b_quiet
)
if
(
!
b_quiet
)
...
...
modules/control/rc.c
View file @
3c6db86c
...
@@ -340,11 +340,11 @@ static int Activate( vlc_object_t *p_this )
...
@@ -340,11 +340,11 @@ static int Activate( vlc_object_t *p_this )
#ifdef _WIN32
#ifdef _WIN32
p_sys
->
b_quiet
=
var_InheritBool
(
p_intf
,
"rc-quiet"
);
p_sys
->
b_quiet
=
var_InheritBool
(
p_intf
,
"rc-quiet"
);
# if !VLC_WINSTORE_APP
if
(
!
p_sys
->
b_quiet
)
if
(
!
p_sys
->
b_quiet
)
#endif
{
CONSOLE_INTRO_MSG
;
CONSOLE_INTRO_MSG
;
}
# endif
#endif
if
(
vlc_clone
(
&
p_sys
->
thread
,
Run
,
p_intf
,
VLC_THREAD_PRIORITY_LOW
)
)
if
(
vlc_clone
(
&
p_sys
->
thread
,
Run
,
p_intf
,
VLC_THREAD_PRIORITY_LOW
)
)
abort
();
abort
();
...
...
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