Commit fb45f9a8 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

strmbase/renderer: Return S_FALSE when pausing the stream if approprate.

parent 540f2983
......@@ -88,7 +88,7 @@ static HRESULT renderer_init_stream(struct strmbase_filter *iface)
if (filter->pFuncsTable->renderer_init_stream)
filter->pFuncsTable->renderer_init_stream(filter);
return S_OK;
return filter->sink.pin.peer ? S_FALSE : S_OK;
}
static HRESULT renderer_start_stream(struct strmbase_filter *iface, REFERENCE_TIME start)
......
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