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
c9fb696c
Commit
c9fb696c
authored
Sep 04, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wl/shm: preserve video center during resize
parent
a15601db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/video_output/wl/shm.c
modules/video_output/wl/shm.c
+4
-4
No files found.
modules/video_output/wl/shm.c
View file @
c9fb696c
...
...
@@ -241,8 +241,8 @@ static int Control(vout_display_t *vd, int query, va_list ap)
vout_display_place_t
place
;
video_format_t
src
;
sys
->
x
-=
vd
->
fmt
.
i_x_offset
;
sys
->
y
-=
vd
->
fmt
.
i_y_offset
;
sys
->
x
+=
vd
->
fmt
.
i_visible_width
/
2
;
sys
->
y
+=
vd
->
fmt
.
i_visible_height
/
2
;
vout_display_PlacePicture
(
&
place
,
&
vd
->
source
,
vd
->
cfg
,
false
);
video_format_ApplyRotation
(
&
src
,
&
vd
->
source
);
...
...
@@ -258,8 +258,8 @@ static int Control(vout_display_t *vd, int query, va_list ap)
vd
->
fmt
.
i_y_offset
=
src
.
i_y_offset
*
place
.
height
/
src
.
i_visible_height
;
sys
->
x
+=
vd
->
fmt
.
i_x_offset
;
sys
->
y
+=
vd
->
fmt
.
i_y_offset
;
sys
->
x
-=
vd
->
fmt
.
i_visible_width
/
2
;
sys
->
y
-=
vd
->
fmt
.
i_visible_height
/
2
;
ResetPictures
(
vd
);
break
;
...
...
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