Zebediah Figura : winegstreamer: Clear bTemporalCompression in amt_from_gst_caps_audio().
Module: wine Branch: master Commit: 19c6b2f26edc0eb9810edb5529dd4c643c2f3016 URL: https://source.winehq.org/git/wine.git/?a=commit;h=19c6b2f26edc0eb9810edb552... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Mon Sep 16 19:29:45 2019 -0500 winegstreamer: Clear bTemporalCompression in amt_from_gst_caps_audio(). Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winegstreamer/gstdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index 9abb7bd289..60136abaac 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -139,7 +139,7 @@ static gboolean amt_from_gst_caps_audio(const GstCaps *caps, AM_MEDIA_TYPE *amt) amt->pbFormat = (BYTE*)wfe; amt->cbFormat = sizeof(*wfe); amt->bFixedSizeSamples = TRUE; - amt->bTemporalCompression = 1; + amt->bTemporalCompression = FALSE; amt->pUnk = NULL; wfx->wFormatTag = WAVE_FORMAT_EXTENSIBLE;
participants (1)
-
Alexandre Julliard