Commit b7a4405d authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

quartz: Break loop on error in ACMWrapper.

parent 243351d2
...@@ -81,7 +81,7 @@ static HRESULT ACMWrapper_ProcessSampleData(TransformFilterImpl* pTransformFilte ...@@ -81,7 +81,7 @@ static HRESULT ACMWrapper_ProcessSampleData(TransformFilterImpl* pTransformFilte
return hr; return hr;
} }
while(!stop) while(hr == S_OK && !stop)
{ {
DWORD rem_buf = This->max_size - This->current_size; DWORD rem_buf = This->max_size - This->current_size;
DWORD rem_smp = size - offset; DWORD rem_smp = size - offset;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment