From 9dc2c5cf0b5d04eb7f5a6a5990aee87bc5c5e8da Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Tue, 9 Nov 2010 09:44:41 -0600 Subject: [PATCH] winegstreamer: 4 buffers is insufficient for some mpeg streams. --- 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 6c37a279da1..d26f8538b39 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -1504,7 +1504,7 @@ static HRESULT WINAPI GSTInPin_ReceiveConnection(IPin *iface, IPin *pReceivePin, if (!This->pin.pConnectedTo) { ALLOCATOR_PROPERTIES props; - props.cBuffers = 4; + props.cBuffers = 8; props.cbBuffer = 16384; props.cbAlign = 1; props.cbPrefix = 0;