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
a6c7a464
Commit
a6c7a464
authored
Mar 15, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wall.c: fix alignment when rows or cols are 2 or less.
parent
84266aae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/video_filter/wall.c
modules/video_filter/wall.c
+2
-2
No files found.
modules/video_filter/wall.c
View file @
a6c7a464
...
...
@@ -348,7 +348,7 @@ static int Init( vout_thread_t *p_vout )
else
{
i_width
=
(
i_target_width
-
i_hstart
%
i_target_width
);
if
(
i_col
>
(
p_vout
->
p_sys
->
i_col
/
2
)
)
if
(
i_col
>
=
(
p_vout
->
p_sys
->
i_col
/
2
)
)
{
i_align
|=
VOUT_ALIGN_LEFT
;
i_width
-=
i_hstart_rounded
?
2
:
0
;
...
...
@@ -373,7 +373,7 @@ static int Init( vout_thread_t *p_vout )
{
i_height
=
(
i_target_height
-
i_vstart
%
i_target_height
);
if
(
i_row
>
(
p_vout
->
p_sys
->
i_row
/
2
)
)
if
(
i_row
>
=
(
p_vout
->
p_sys
->
i_row
/
2
)
)
{
i_align
|=
VOUT_ALIGN_TOP
;
i_height
-=
i_vstart_rounded
?
2
:
0
;
...
...
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