Commit fd1d08ed authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

mfreawrite/tests: Allow MF_E_SHUTDOWN result in test stream RequestSample.

parent e2845104
......@@ -361,7 +361,7 @@ static HRESULT WINAPI test_media_stream_RequestSample(IMFMediaStream *iface, IUn
hr = IMFMediaEventQueue_QueueEventParamUnk(stream->event_queue, MEMediaSample, &GUID_NULL, S_OK,
(IUnknown *)sample);
ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
ok(hr == S_OK || hr == MF_E_SHUTDOWN, "Unexpected hr %#lx.\n", hr);
IMFSample_Release(sample);
return S_OK;
......
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