Module: wine
Branch: master
Commit: 5f602b46f3cd70f68d6666ca4b0a1b43fca3e0e3
URL: https://source.winehq.org/git/wine.git/?a=commit;h=5f602b46f3cd70f68d6666ca…
Author: Zebediah Figura <z.figura12(a)gmail.com>
Date: Mon May 11 11:03:08 2020 -0500
quartz: Set VMR9AllocationInfo dimension members to the video dimensions.
These will be identical to the source rect at connection time, but not
necessarily if we ever need to recreate the surfaces (due to a lost device, for
example), and we still want to use the source image dimensions in that case.
Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/quartz/vmr9.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/dlls/quartz/vmr9.c b/dlls/quartz/vmr9.c
index 758ede6155..29be5aaa81 100644
--- a/dlls/quartz/vmr9.c
+++ b/dlls/quartz/vmr9.c
@@ -409,14 +409,10 @@ static HRESULT allocate_surfaces(struct quartz_vmr *filter, const AM_MEDIA_TYPE
if (filter->mode == VMR9Mode_Windowless && !filter->hWndClippingWindow)
return S_OK;
- info.dwWidth = filter->window.src.right;
- info.dwHeight = filter->window.src.bottom;
info.Pool = D3DPOOL_DEFAULT;
info.MinBuffers = 1;
- info.szAspectRatio.cx = info.dwWidth;
- info.szAspectRatio.cy = info.dwHeight;
- info.szNativeSize.cx = filter->bmiheader.biWidth;
- info.szNativeSize.cy = filter->bmiheader.biHeight;
+ info.dwWidth = info.szAspectRatio.cx = info.szNativeSize.cx = filter->bmiheader.biWidth;
+ info.dwHeight = info.szAspectRatio.cy = info.szNativeSize.cy = filter->bmiheader.biHeight;
filter->cur_surface = 0;
Module: website
Branch: master
Commit: 25ab236be6ab22d1c04edd92890b95dbdd7bab2a
URL: https://source.winehq.org/git/website.git/?a=commit;h=25ab236be6ab22d1c04ed…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri May 8 22:20:46 2020 +0200
Wine release 5.8
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2020050801.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/en/2020050801.xml b/news/en/2020050801.xml
new file mode 100644
index 00000000..4cd4340c
--- /dev/null
+++ b/news/en/2020050801.xml
@@ -0,0 +1,17 @@
+<news>
+<date>May 8, 2020</date>
+<title>Wine 5.8 Released</title>
+<body>
+<p> The Wine development release 5.8 is now available.</p>
+<p> <a href="{$root}/announce/5.8">What's new</a> in this release:
+<ul>
+ <li>Support for Plug & Play device notifications.</li>
+ <li>More support for building with Clang in MSVC mode.</li>
+ <li>Still more progress on the WineD3D Vulkan backend.</li>
+ <li>Initial implementation of a GIF encoder.</li>
+ <li>Vulkan spec update.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="//dl.winehq.org/wine/source/5.x/wine-5.8.tar.xz">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>