Commit 23012b13 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mf: Correctly respond to start attempt from closed state.

parent 15a9ab94
......@@ -646,6 +646,10 @@ static void session_start(struct media_session *session, const GUID *time_format
case SESSION_STATE_RUNNING:
FIXME("Seeking is not implemented.\n");
break;
case SESSION_STATE_CLOSED:
IMFMediaEventQueue_QueueEventParamVar(session->event_queue, MESessionStarted, &GUID_NULL,
MF_E_INVALIDREQUEST, NULL);
break;
default:
;
}
......
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