Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7462d77f
Commit
7462d77f
authored
Nov 08, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
evr/presenter: Remove logic related to picture aspect ratio adjustment.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4b6df3a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
34 deletions
+1
-34
presenter.c
dlls/evr/presenter.c
+1
-34
No files found.
dlls/evr/presenter.c
View file @
7462d77f
...
...
@@ -483,8 +483,6 @@ static void video_presenter_sample_present(struct video_presenter *presenter, IM
{
IDirect3DSurface9
*
surface
,
*
backbuffer
;
IDirect3DDevice9
*
device
;
D3DSURFACE_DESC
desc
;
RECT
dst
,
src
;
HRESULT
hr
;
if
(
!
presenter
->
swapchain
)
...
...
@@ -506,38 +504,7 @@ static void video_presenter_sample_present(struct video_presenter *presenter, IM
IDirect3DSwapChain9_GetDevice
(
presenter
->
swapchain
,
&
device
);
IDirect3DDevice9_StretchRect
(
device
,
surface
,
NULL
,
backbuffer
,
NULL
,
D3DTEXF_POINT
);
IDirect3DSurface9_GetDesc
(
surface
,
&
desc
);
SetRect
(
&
src
,
0
,
0
,
desc
.
Width
,
desc
.
Height
);
IDirect3DSurface9_GetDesc
(
backbuffer
,
&
desc
);
SetRect
(
&
dst
,
0
,
0
,
desc
.
Width
,
desc
.
Height
);
if
(
presenter
->
ar_mode
&
MFVideoARMode_PreservePicture
)
{
unsigned
int
src_width
=
src
.
right
-
src
.
left
,
src_height
=
src
.
bottom
-
src
.
top
;
unsigned
int
dst_width
=
dst
.
right
-
dst
.
left
,
dst_height
=
dst
.
bottom
-
dst
.
top
;
if
(
src_width
*
dst_height
>
dst_width
*
src_height
)
{
/* src is "wider" than dst. */
unsigned
int
dst_center
=
(
dst
.
top
+
dst
.
bottom
)
/
2
;
unsigned
int
scaled_height
=
src_height
*
dst_width
/
src_width
;
dst
.
top
=
dst_center
-
scaled_height
/
2
;
dst
.
bottom
=
dst
.
top
+
scaled_height
;
}
else
if
(
src_width
*
dst_height
<
dst_width
*
src_height
)
{
/* src is "taller" than dst. */
unsigned
int
dst_center
=
(
dst
.
left
+
dst
.
right
)
/
2
;
unsigned
int
scaled_width
=
src_width
*
dst_height
/
src_height
;
dst
.
left
=
dst_center
-
scaled_width
/
2
;
dst
.
right
=
dst
.
left
+
scaled_width
;
}
}
IDirect3DSwapChain9_Present
(
presenter
->
swapchain
,
&
src
,
&
dst
,
NULL
,
NULL
,
0
);
IDirect3DSwapChain9_Present
(
presenter
->
swapchain
,
NULL
,
NULL
,
NULL
,
NULL
,
0
);
presenter
->
frame_stats
.
presented
++
;
IDirect3DDevice9_Release
(
device
);
...
...
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