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
2ebff444
Commit
2ebff444
authored
Oct 11, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: simplify window allocation following splitter separation
parent
f7314b4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
src/video_output/video_output.c
src/video_output/video_output.c
+7
-9
No files found.
src/video_output/video_output.c
View file @
2ebff444
...
...
@@ -614,16 +614,17 @@ vout_window_t * vout_NewDisplayWindow(vout_thread_t *vout,
{
vout_window_cfg_t
cfg_override
=
*
cfg
;
assert
(
vout
->
p
->
splitter_name
==
NULL
);
if
(
!
var_InheritBool
(
vout
,
"embedded-video"
))
cfg_override
.
is_standalone
=
true
;
if
(
vout
->
p
->
window
.
is_unused
&&
vout
->
p
->
window
.
object
)
{
assert
(
!
vout
->
p
->
splitter_name
);
vout_window_t
*
window
=
vout
->
p
->
window
.
object
;
if
(
vout
->
p
->
window
.
is_unused
&&
window
!=
NULL
)
{
if
(
!
cfg_override
.
is_standalone
==
!
vout
->
p
->
window
.
cfg
.
is_standalone
&&
cfg_override
.
type
==
vout
->
p
->
window
.
cfg
.
type
)
{
/* Reuse the stored window */
msg_Dbg
(
vout
,
"Reusing previous vout window"
);
vout_window_t
*
window
=
vout
->
p
->
window
.
object
;
if
(
cfg_override
.
width
!=
vout
->
p
->
window
.
cfg
.
width
||
cfg_override
.
height
!=
vout
->
p
->
window
.
cfg
.
height
)
vout_window_SetSize
(
window
,
...
...
@@ -633,16 +634,13 @@ vout_window_t * vout_NewDisplayWindow(vout_thread_t *vout,
return
window
;
}
vout_window_Delete
(
vout
->
p
->
window
.
object
);
vout_window_Delete
(
window
);
vout
->
p
->
window
.
is_unused
=
true
;
vout
->
p
->
window
.
object
=
NULL
;
}
vout_window_t
*
window
=
vout_window_New
(
VLC_OBJECT
(
vout
),
"$window"
,
&
cfg_override
);
if
(
!
window
)
return
NULL
;
if
(
!
vout
->
p
->
splitter_name
)
{
window
=
vout_window_New
(
VLC_OBJECT
(
vout
),
"$window"
,
&
cfg_override
);
if
(
window
!=
NULL
)
{
vout
->
p
->
window
.
is_unused
=
false
;
vout
->
p
->
window
.
cfg
=
cfg_override
;
vout
->
p
->
window
.
object
=
window
;
...
...
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