[PATCH 1/5] winegstreamer: Set lSampleSize in amt_from_gst_caps_audio().

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


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

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 397af6ef555..9160d12a5a5 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -140,7 +140,6 @@ static gboolean amt_from_gst_caps_audio(const GstCaps *caps, AM_MEDIA_TYPE *amt)
     amt->cbFormat = sizeof(*wfe);
     amt->bFixedSizeSamples = 0;
     amt->bTemporalCompression = 1;
-    amt->lSampleSize = 0;
     amt->pUnk = NULL;
 
     wfx->wFormatTag = WAVE_FORMAT_EXTENSIBLE;
@@ -177,7 +176,7 @@ static gboolean amt_from_gst_caps_audio(const GstCaps *caps, AM_MEDIA_TYPE *amt)
             wfx->cbSize = 0;
         }
     }
-    wfx->nBlockAlign = wfx->nChannels * wfx->wBitsPerSample/8;
+    amt->lSampleSize = wfx->nBlockAlign = wfx->nChannels * wfx->wBitsPerSample/8;
     wfx->nAvgBytesPerSec = wfx->nSamplesPerSec * wfx->nBlockAlign;
     return TRUE;
 }
-- 
2.23.0




More information about the wine-devel mailing list