Skip to content

Commit 86381b3

Browse files
author
Sascha Lange
committed
Upgraded to .NET 9 (incl. .NET 8 compatibility), removed .NET Framework compatibility. If you are still using .NET Framework, please use Version 2.3.0 of WPF MediaKit!
1 parent a1b8f56 commit 86381b3

14 files changed

+87
-476
lines changed

Source/DirectShow/MediaPlayers/MediaUriPlayer.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public void DumpGraphInfo(string fileName, IGraphBuilder graph)
201201

202202

203203

204-
filterOutputString += string.Format("{0:X8}", Marshal.GetIUnknownForObjectInContext(filters[0]).ToInt32()) + " ";
204+
filterOutputString += string.Format("{0:X8}", Marshal.GetIUnknownForObject(filters[0]).ToInt32()) + " ";
205205

206206
filterOutputString += filterInfo.achName + Environment.NewLine;
207207

@@ -225,7 +225,7 @@ public void DumpGraphInfo(string fileName, IGraphBuilder graph)
225225
prefix = "[Out] ";
226226

227227

228-
filterOutputString += string.Format("{0:X8}", Marshal.GetIUnknownForObjectInContext(pins[0]).ToInt32()) + " ";
228+
filterOutputString += string.Format("{0:X8}", Marshal.GetIUnknownForObject(pins[0]).ToInt32()) + " ";
229229
filterOutputString += prefix + pinInfo.name + Environment.NewLine;
230230

231231
Marshal.ReleaseComObject(pins[0]);
@@ -637,7 +637,7 @@ protected override void FreeResources()
637637
* Dispatcher VeryifyAccess() issues because
638638
* this may be called from the GC */
639639
StopInternal();
640-
640+
641641
if (m_graph != null)
642642
{
643643
DirectShowUtil.RemoveFilters(m_graph);

Source/MediaFoundation/COMUtils.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public class COMUtil
1717
/// </summary>
1818
/// <param name="clsid">The CLSID of this object</param>
1919
/// <returns>true if the object is available, false if not</returns>
20-
[SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode = true)]
2120
public static bool IsObjectInstalled(Guid clsid)
2221
{
2322
object comobj = null;
@@ -80,7 +79,7 @@ public static bool TryFinalRelease<I>(ref I comobj)
8079
/// <exception cref="System.Runtime.InteropServices.COMException">Thrown if the method can't creat COM-object</exception>
8180
/// <exception cref="System.Runtime.DllNotFoundException">Thrown if the dll not found</exception>
8281
/// <exception cref="System.ArgumentNullException"/>
83-
[SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode = true)]
82+
8483
public static T CreateFromDll<T>(string dllName, Guid mpaguid)
8584
{
8685
if (String.IsNullOrEmpty(dllName))

Source/MediaFoundation/EvrPresenter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public static EvrPresenter CreateNew()
219219
IMFVideoPresenter presenter = null;
220220
try
221221
{
222-
var path = System.IO.Path.GetDirectoryName(new Uri(typeof(EvrPresenter).Assembly.CodeBase).LocalPath);
222+
var path = System.IO.Path.GetDirectoryName(new Uri(typeof(EvrPresenter).Assembly.Location).LocalPath);
223223
var dlltoload = System.IO.Path.Combine(path, IntPtr.Size == 8 ? @"EvrPresenter64.dll" : @"EvrPresenter32.dll");
224224
presenter = COMUtil.CreateFromDll<IMFVideoPresenter>(dlltoload, EVR_PRESENTER_CLSID);
225225

Source/Properties/AssemblyInfo.cs

+2-24
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,6 @@
1-
using System.Reflection;
2-
using System.Runtime.InteropServices;
3-
using System.Windows;
4-
5-
6-
[assembly: AssemblyTitle("WPF MediaKit")]
7-
[assembly: AssemblyDescription("")]
8-
[assembly: AssemblyConfiguration("")]
9-
[assembly: AssemblyCompany("WPF MediaKit Team")]
10-
[assembly: AssemblyProduct("WPF MediaKit")]
11-
[assembly: AssemblyCopyright("Copyright © 2015-2024 by WPF MediaKit Team")]
12-
[assembly: AssemblyTrademark("")]
13-
[assembly: AssemblyCulture("")]
14-
15-
16-
[assembly: ComVisible(false)]
17-
18-
19-
1+
using System.Windows;
202

213
[assembly: ThemeInfo(
224
ResourceDictionaryLocation.None,
235
ResourceDictionaryLocation.SourceAssembly
24-
)]
25-
26-
27-
28-
[assembly: AssemblyVersion("2.3.0")]
6+
)]

Source/Properties/Resources.Designer.cs

-63
This file was deleted.

Source/Properties/Resources.resx

-117
This file was deleted.

Source/Properties/Settings.Designer.cs

-26
This file was deleted.

Source/Properties/Settings.settings

-7
This file was deleted.

0 commit comments

Comments
 (0)