Commit 1b3d1632 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

winegstreamer/gsttffilter: Call IMemInputPin::Receive() directly.

parent b2b33c26
......@@ -205,7 +205,7 @@ GstFlowReturn got_data(GstPad *pad, GstObject *parent, GstBuffer *buf)
IMediaSample_SetSyncPoint(sample, !GST_BUFFER_FLAG_IS_SET(buf, GST_BUFFER_FLAG_DELTA_UNIT));
IMediaSample_SetActualDataLength(sample, gst_buffer_get_size(buf));
hr = BaseOutputPinImpl_Deliver(&This->tf.source, sample);
hr = IMemInputPin_Receive(This->tf.source.pMemInputPin, sample);
IMediaSample_Release(sample);
gst_buffer_unref(buf);
if (FAILED(hr))
......
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