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
5da03f41
Commit
5da03f41
authored
Oct 13, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: remove duplicated on-top and wallpaper variables creation
parent
3952212c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/video_output/video_output.c
src/video_output/video_output.c
+1
-2
No files found.
src/video_output/video_output.c
View file @
5da03f41
...
...
@@ -1351,12 +1351,11 @@ static int ThreadStart(vout_thread_t *vout, const vout_display_state_t *state)
vout_display_state_t
state_default
;
if
(
!
state
)
{
var_Create
(
vout
,
"video-wallpaper"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
VoutGetDisplayCfg
(
vout
,
&
state_default
.
cfg
,
vout
->
p
->
display
.
title
);
#if defined(_WIN32) || defined(__OS2__)
bool
below
=
var_InheritBool
(
vout
,
"video-wallpaper"
);
bool
above
=
var_
CreateGe
tBool
(
vout
,
"video-on-top"
);
bool
above
=
var_
Inheri
tBool
(
vout
,
"video-on-top"
);
state_default
.
wm_state
=
below
?
VOUT_WINDOW_STATE_BELOW
:
above
?
VOUT_WINDOW_STATE_ABOVE
...
...
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