winegstreamer: Set correct state when ending processing.

This commit is contained in:
Maarten Lankhorst 2010-11-10 23:22:45 +01:00 committed by Alexandre Julliard
parent 50d8b0db7a
commit 47725db633
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ static HRESULT WINAPI Gstreamer_transform_ProcessEnd(TransformFilter *iface) {
GstTfImpl *This = (GstTfImpl*)iface;
int ret;
ret = gst_element_set_state(This->filter, GST_STATE_PAUSED);
ret = gst_element_set_state(This->filter, GST_STATE_READY);
TRACE("Returned: %i\n", ret);
return S_OK;
}