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
58b2cc3f
Commit
58b2cc3f
authored
Nov 27, 2014
by
KO Myung-Hun
Committed by
Jean-Baptiste Kempf
Nov 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kva: set visible region correctly
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
2897e2b4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/video_output/kva.c
modules/video_output/kva.c
+4
-4
No files found.
modules/video_output/kva.c
View file @
58b2cc3f
...
...
@@ -606,10 +606,10 @@ static int OpenDisplay( vout_display_t *vd, video_format_t *fmt )
sys
->
kvas
.
ulLength
=
sizeof
(
KVASETUP
);
sys
->
kvas
.
szlSrcSize
.
cx
=
w
;
sys
->
kvas
.
szlSrcSize
.
cy
=
h
;
sys
->
kvas
.
rclSrcRect
.
xLeft
=
0
;
sys
->
kvas
.
rclSrcRect
.
yTop
=
0
;
sys
->
kvas
.
rclSrcRect
.
xRight
=
w
;
sys
->
kvas
.
rclSrcRect
.
yBottom
=
h
;
sys
->
kvas
.
rclSrcRect
.
xLeft
=
fmt
->
i_x_offset
;
sys
->
kvas
.
rclSrcRect
.
yTop
=
fmt
->
i_y_offset
;
sys
->
kvas
.
rclSrcRect
.
xRight
=
fmt
->
i_x_offset
+
fmt
->
i_visible_width
;
sys
->
kvas
.
rclSrcRect
.
yBottom
=
fmt
->
i_y_offset
+
fmt
->
i_visible_height
;
sys
->
kvas
.
ulRatio
=
KVAR_FORCEANY
;
sys
->
kvas
.
ulAspectWidth
=
w
;
sys
->
kvas
.
ulAspectHeight
=
h
;
...
...
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