[PATCH 4/5] winegstreamer: Also set cbFormat when using WAVE_FORMAT_PCM.

Zebediah Figura z.figura12 at gmail.com
Mon Sep 16 19:29:46 CDT 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/winegstreamer/gstdemux.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 60136abaac9..2ad4b08a13b 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -174,6 +174,7 @@ static gboolean amt_from_gst_caps_audio(const GstCaps *caps, AM_MEDIA_TYPE *amt)
         if (wfx->nChannels <= 2 && bpp <= 16 && depth == bpp)  {
             wfx->wFormatTag = WAVE_FORMAT_PCM;
             wfx->cbSize = 0;
+            amt->cbFormat = sizeof(WAVEFORMATEX);
         }
     }
     amt->lSampleSize = wfx->nBlockAlign = wfx->nChannels * wfx->wBitsPerSample/8;
-- 
2.23.0




More information about the wine-devel mailing list