-
Notifications
You must be signed in to change notification settings - Fork 102
Closed
Description
Some players are reporting errors like the following which could be related to memory leaks.
MediaElement_MediaFailed: Media Failed. E = Exception from HRESULT: 0xC00D11C6
MediaElement_MediaFailed: Media Failed. E = Exception from HRESULT: 0xC00D10BD
MediaElement_MediaFailed: Media Failed. E = Exception from HRESULT: 0xC00D11B1
Should we manually clear some of the resources held by MediaElement?
videoElement.Close();
videoElement.Clock = null;
videoElement.Source = null;
videoElement = null;
ciphermenial