Zebediah Figura : winegstreamer: Set the bit depth for UYVY video.
Module: wine Branch: master Commit: b9b2a04fe740d91495ca4bca88352b48e896ac1c URL: https://source.winehq.org/git/wine.git/?a=commit;h=b9b2a04fe740d91495ca4bca8... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Fri Mar 27 00:54:29 2020 -0500 winegstreamer: Set the bit depth for UYVY video. Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winegstreamer/gstdemux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index 1dedad5135..2d9efe8ead 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -227,6 +227,7 @@ static gboolean amt_from_gst_video_info(const GstVideoInfo *info, AM_MEDIA_TYPE bih->biBitCount = 12; break; case mmioFOURCC('Y','U','Y','2'): case mmioFOURCC('Y','V','Y','U'): + case mmioFOURCC('U','Y','V','Y'): bih->biBitCount = 16; break; } bih->biCompression = amt->subtype.Data1;
participants (1)
-
Alexandre Julliard