quartz: Only allocate 1 buffer in transform filter.

This commit is contained in:
Maarten Lankhorst 2008-07-11 11:20:23 -07:00 committed by Alexandre Julliard
parent cf1d2f5e42
commit 0e9704b02d
1 changed files with 1 additions and 1 deletions

View File

@ -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]);