Module: wine Branch: master Commit: c73e8b8551947e9547331ff5b72b206981c5f645 URL: https://gitlab.winehq.org/wine/wine/-/commit/c73e8b8551947e9547331ff5b72b206...
Author: Anton Baskanov baskanov@gmail.com Date: Sun May 14 18:20:19 2023 +0700
winegstreamer: Don't force top-down orientation when changing output format in video_decoder.
---
dlls/winegstreamer/video_decoder.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/dlls/winegstreamer/video_decoder.c b/dlls/winegstreamer/video_decoder.c index 1fdabd46b96..04d175c7910 100644 --- a/dlls/winegstreamer/video_decoder.c +++ b/dlls/winegstreamer/video_decoder.c @@ -310,8 +310,6 @@ static HRESULT WINAPI transform_SetOutputType(IMFTransform *iface, DWORD id, IMF { mf_media_type_to_wg_format(decoder->output_type, &output_format);
- output_format.u.video.width = frame_size >> 32; - output_format.u.video.height = (UINT32)frame_size; output_format.u.video.fps_d = 0; output_format.u.video.fps_n = 0;