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
8e570775
Commit
8e570775
authored
Oct 11, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: remove a tautology and simplify
parent
de8d8555
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
src/video_output/video_output.c
src/video_output/video_output.c
+1
-6
No files found.
src/video_output/video_output.c
View file @
8e570775
...
@@ -154,12 +154,7 @@ static vout_thread_t *VoutCreate(vlc_object_t *object,
...
@@ -154,12 +154,7 @@ static vout_thread_t *VoutCreate(vlc_object_t *object,
vout
->
p
->
title
.
position
=
var_InheritInteger
(
vout
,
"video-title-position"
);
vout
->
p
->
title
.
position
=
var_InheritInteger
(
vout
,
"video-title-position"
);
/* Get splitter name if present */
/* Get splitter name if present */
char
*
splitter_name
=
var_InheritString
(
vout
,
"video-splitter"
);
vout
->
p
->
splitter_name
=
var_InheritString
(
vout
,
"video-splitter"
);
if
(
splitter_name
&&
*
splitter_name
)
{
vout
->
p
->
splitter_name
=
splitter_name
;
}
else
{
free
(
splitter_name
);
}
/* */
/* */
vout_InitInterlacingSupport
(
vout
,
vout
->
p
->
displayed
.
is_interlaced
);
vout_InitInterlacingSupport
(
vout
,
vout
->
p
->
displayed
.
is_interlaced
);
...
...
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