Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b2140ef4
Commit
b2140ef4
authored
Jun 12, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed vertical video alignment (close #3688).
It is not limited to win32.
parent
29fee926
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/video_output/video_output.c
src/video_output/video_output.c
+2
-2
No files found.
src/video_output/video_output.c
View file @
b2140ef4
...
...
@@ -467,9 +467,9 @@ static void VoutGetDisplayCfg(vout_thread_t *vout, vout_display_cfg_t *cfg, cons
else
if
(
align_mask
&
0x2
)
cfg
->
align
.
horizontal
=
VOUT_DISPLAY_ALIGN_RIGHT
;
if
(
align_mask
&
0x4
)
cfg
->
align
.
horizont
al
=
VOUT_DISPLAY_ALIGN_TOP
;
cfg
->
align
.
vertic
al
=
VOUT_DISPLAY_ALIGN_TOP
;
else
if
(
align_mask
&
0x8
)
cfg
->
align
.
horizont
al
=
VOUT_DISPLAY_ALIGN_BOTTOM
;
cfg
->
align
.
vertic
al
=
VOUT_DISPLAY_ALIGN_BOTTOM
;
}
vout_window_t
*
vout_NewDisplayWindow
(
vout_thread_t
*
vout
,
vout_display_t
*
vd
,
...
...
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