Commit 5f5f9974 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

winegstreamer: Remove redundant check.

parent 84a35f53
......@@ -1158,10 +1158,7 @@ static HRESULT GST_Connect(GSTInPin *pPin, IPin *pConnectPin, ALLOCATOR_PROPERTI
WaitForSingleObject(This->event, -1);
gst_element_get_state(This->container, NULL, NULL, -1);
if (ret < 0) {
WARN("Ret: %i\n", ret);
hr = E_FAIL;
} else if (!This->cStreams) {
if (!This->cStreams) {
FIXME("GStreamer could not find any streams\n");
hr = E_FAIL;
} else {
......
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