Maarten Lankhorst : quartz: Only allocate 1 buffer in transform filter.
Module: wine Branch: master Commit: 0e9704b02dfa0d0bdb1af4941cebddde84a2af0e URL: http://source.winehq.org/git/wine.git/?a=commit;h=0e9704b02dfa0d0bdb1af4941c... Author: Maarten Lankhorst <m.b.lankhorst(a)gmail.com> Date: Fri Jul 11 11:20:23 2008 -0700 quartz: Only allocate 1 buffer in transform filter. --- dlls/quartz/transform.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c index 97812bd..322c76a 100644 --- a/dlls/quartz/transform.c +++ b/dlls/quartz/transform.c @@ -184,7 +184,7 @@ HRESULT TransformFilter_Create(TransformFilterImpl* pTransformFilter, const CLSI props.cbAlign = 1; props.cbPrefix = 0; props.cbBuffer = 0; /* Will be updated at connection time */ - props.cBuffers = 2; + props.cBuffers = 1; hr = OutputPin_Construct(&TransformFilter_OutputPin_Vtbl, sizeof(OutputPin), &piOutput, &props, pTransformFilter, TransformFilter_Output_QueryAccept, &pTransformFilter->csFilter, &pTransformFilter->ppPins[1]);
participants (1)
-
Alexandre Julliard