1
1
#region Includes
2
2
using System ;
3
3
using System . Collections . Generic ;
4
- using System . ComponentModel ;
5
4
using System . Drawing ;
6
5
using System . Linq ;
7
6
using System . Runtime . CompilerServices ;
12
11
using WPFMediaKit . MediaFoundation ;
13
12
using WPFMediaKit . MediaFoundation . Interop ;
14
13
using WPFMediaKit . Threading ;
15
- using Size = System . Windows . Size ;
14
+ using Size = System . Windows . Size ;
16
15
#endregion
17
16
18
17
namespace WPFMediaKit . DirectShow . MediaPlayers
@@ -305,7 +304,7 @@ private void GetMainWindowHwndHelper()
305
304
306
305
if ( m_window . Handle == IntPtr . Zero )
307
306
{
308
- lock ( m_window )
307
+ lock ( m_window )
309
308
{
310
309
m_window . CreateHandle ( new CreateParams ( ) ) ;
311
310
}
@@ -495,7 +494,7 @@ protected virtual void Dispose(bool disposing)
495
494
//if (m_disposed)
496
495
// return;
497
496
498
- if ( ! disposing )
497
+ if ( ! disposing )
499
498
return ;
500
499
501
500
if ( m_window != null )
@@ -509,8 +508,8 @@ protected virtual void Dispose(bool disposing)
509
508
m_timer . Dispose ( ) ;
510
509
511
510
m_timer = null ;
512
-
513
- if ( CheckAccess ( ) )
511
+
512
+ if ( CheckAccess ( ) )
514
513
{
515
514
FreeResources ( ) ;
516
515
Dispatcher . BeginInvokeShutdown ( ) ;
@@ -637,7 +636,7 @@ private void RemoveWndProcHook()
637
636
/// </summary>
638
637
private void AddWndProcHook ( )
639
638
{
640
- // HwndHelper.AddHook(WndProcHook);
639
+ // HwndHelper.AddHook(WndProcHook);
641
640
}
642
641
643
642
/// <summary>
@@ -771,14 +770,16 @@ protected void FreeCustomAllocator()
771
770
if ( m_customAllocator == null )
772
771
return ;
773
772
774
- m_customAllocator . Dispose ( ) ;
775
-
776
773
m_customAllocator . NewAllocatorFrame -= CustomAllocatorNewAllocatorFrame ;
777
774
m_customAllocator . NewAllocatorSurface -= CustomAllocatorNewAllocatorSurface ;
778
775
779
- if ( Marshal . IsComObject ( m_customAllocator ) )
776
+ m_customAllocator . Dispose ( ) ;
777
+
778
+
779
+
780
+ if ( Marshal . IsComObject ( m_customAllocator ) )
780
781
Marshal . ReleaseComObject ( m_customAllocator ) ;
781
-
782
+
782
783
m_customAllocator = null ;
783
784
}
784
785
@@ -798,7 +799,7 @@ private void ResetLocalGraphResources()
798
799
Marshal . ReleaseComObject ( m_mediaControl ) ;
799
800
m_mediaControl = null ;
800
801
801
- if ( m_mediaEvent != null )
802
+ if ( m_mediaEvent != null )
802
803
Marshal . ReleaseComObject ( m_mediaEvent ) ;
803
804
m_mediaEvent = null ;
804
805
}
@@ -859,7 +860,7 @@ private IBaseFilter CreateEnhancedVideoRenderer(IGraphBuilder graph, int streamC
859
860
EvrPresenter presenter ;
860
861
IBaseFilter filter ;
861
862
862
- lock ( m_videoRendererInitLock )
863
+ lock ( m_videoRendererInitLock )
863
864
{
864
865
var evr = new EnhancedVideoRenderer ( ) ;
865
866
filter = evr as IBaseFilter ;
@@ -883,7 +884,7 @@ private IBaseFilter CreateEnhancedVideoRenderer(IGraphBuilder graph, int streamC
883
884
var presenterSettings = presenter . VideoPresenter as IEVRPresenterSettings ;
884
885
if ( presenterSettings == null )
885
886
throw new Exception ( "Could not QueryInterface for the IEVRPresenterSettings" ) ;
886
-
887
+
887
888
presenterSettings . SetBufferCount ( 3 ) ;
888
889
889
890
/* Use our interop hWnd */
@@ -900,12 +901,12 @@ private IBaseFilter CreateEnhancedVideoRenderer(IGraphBuilder graph, int streamC
900
901
DsError . ThrowExceptionForHR ( hr ) ;
901
902
902
903
var filterConfig = filter as IEVRFilterConfig ;
903
-
904
+
904
905
if ( filterConfig != null )
905
906
filterConfig . SetNumberOfStreams ( streamCount ) ;
906
907
}
907
-
908
-
908
+
909
+
909
910
RegisterCustomAllocator ( presenter ) ;
910
911
911
912
return filter ;
@@ -939,7 +940,7 @@ private IBaseFilter CreateVideoMixingRenderer9(IGraphBuilder graph, int streamCo
939
940
940
941
if ( vmrSurfAllocNotify == null )
941
942
throw new Exception ( "Could not query the VMR surface allocator." ) ;
942
-
943
+
943
944
var allocator = new Vmr9Allocator ( ) ;
944
945
945
946
/* We supply our custom allocator to the renderer */
@@ -951,7 +952,7 @@ private IBaseFilter CreateVideoMixingRenderer9(IGraphBuilder graph, int streamCo
951
952
952
953
RegisterCustomAllocator ( allocator ) ;
953
954
954
- hr = graph . AddFilter ( vmr9 ,
955
+ hr = graph . AddFilter ( vmr9 ,
955
956
string . Format ( "Renderer: {0}" , VideoRendererType . VideoMixingRenderer9 ) ) ;
956
957
957
958
DsError . ThrowExceptionForHR ( hr ) ;
@@ -1104,7 +1105,7 @@ protected void InvokeNewAllocatorSurface(IntPtr pSurface)
1104
1105
}
1105
1106
1106
1107
#endregion
1107
-
1108
+
1108
1109
#region Helper Methods
1109
1110
/// <summary>
1110
1111
/// Sets the natural pixel resolution the video in the graph
@@ -1136,14 +1137,14 @@ protected static Size GetVideoSize(IBaseFilter renderer, PinDirection direction,
1136
1137
1137
1138
if ( pin == null )
1138
1139
goto done ;
1139
-
1140
+
1140
1141
int hr = pin . ConnectionMediaType ( mediaType ) ;
1141
-
1142
+
1142
1143
if ( hr != 0 )
1143
1144
goto done ;
1144
1145
1145
1146
/* Check to see if its a video media type */
1146
- if ( mediaType . formatType != FormatType . VideoInfo2 &&
1147
+ if ( mediaType . formatType != FormatType . VideoInfo2 &&
1147
1148
mediaType . formatType != FormatType . VideoInfo )
1148
1149
{
1149
1150
goto done ;
@@ -1159,8 +1160,8 @@ protected static Size GetVideoSize(IBaseFilter renderer, PinDirection direction,
1159
1160
1160
1161
done :
1161
1162
DsUtils . FreeAMMediaType ( mediaType ) ;
1162
-
1163
- if ( pin != null )
1163
+
1164
+ if ( pin != null )
1164
1165
Marshal . ReleaseComObject ( pin ) ;
1165
1166
return size ;
1166
1167
}
@@ -1210,69 +1211,69 @@ protected static void RemoveAllFilters(IGraphBuilder graphBuilder)
1210
1211
{
1211
1212
graphBuilder . RemoveFilter ( filtersArray [ i ] ) ;
1212
1213
while ( Marshal . ReleaseComObject ( filtersArray [ i ] ) > 0 )
1213
- { }
1214
+ { }
1214
1215
}
1215
1216
}
1216
1217
1217
- /// <summary>
1218
- /// Adds a filter to a DirectShow graph based on it's name and filter category
1219
- /// </summary>
1220
- /// <param name="graphBuilder">The graph builder to add the filter to</param>
1221
- /// <param name="deviceCategory">The category the filter belongs to</param>
1222
- /// <param name="friendlyName">The friendly name of the filter</param>
1223
- /// <returns>Reference to the IBaseFilter that was added to the graph or returns null if unsuccessful</returns>
1224
- protected static IBaseFilter AddFilterByName ( IGraphBuilder graphBuilder , Guid deviceCategory , string friendlyName )
1225
- {
1226
- var devices = DsDevice . GetDevicesOfCat ( deviceCategory ) ;
1227
-
1228
- var deviceList = ( from d in devices
1229
- where d . Name == friendlyName
1230
- select d ) ;
1231
- DsDevice device = null ;
1232
- if ( deviceList . Count ( ) > 0 )
1233
- device = deviceList . Take ( 1 ) . Single ( ) ;
1234
-
1235
- foreach ( var item in deviceList )
1236
- {
1218
+ /// <summary>
1219
+ /// Adds a filter to a DirectShow graph based on it's name and filter category
1220
+ /// </summary>
1221
+ /// <param name="graphBuilder">The graph builder to add the filter to</param>
1222
+ /// <param name="deviceCategory">The category the filter belongs to</param>
1223
+ /// <param name="friendlyName">The friendly name of the filter</param>
1224
+ /// <returns>Reference to the IBaseFilter that was added to the graph or returns null if unsuccessful</returns>
1225
+ protected static IBaseFilter AddFilterByName ( IGraphBuilder graphBuilder , Guid deviceCategory , string friendlyName )
1226
+ {
1227
+ var devices = DsDevice . GetDevicesOfCat ( deviceCategory ) ;
1228
+
1229
+ var deviceList = ( from d in devices
1230
+ where d . Name == friendlyName
1231
+ select d ) ;
1232
+ DsDevice device = null ;
1233
+ if ( deviceList . Count ( ) > 0 )
1234
+ device = deviceList . Take ( 1 ) . Single ( ) ;
1235
+
1236
+ foreach ( var item in deviceList )
1237
+ {
1237
1238
if ( item != device )
1238
1239
item . Dispose ( ) ;
1239
- }
1240
+ }
1240
1241
1241
- return AddFilterByDevice ( graphBuilder , device ) ;
1242
- }
1242
+ return AddFilterByDevice ( graphBuilder , device ) ;
1243
+ }
1243
1244
1244
- protected static IBaseFilter AddFilterByDevicePath ( IGraphBuilder graphBuilder , Guid deviceCategory , string devicePath )
1245
- {
1246
- var devices = DsDevice . GetDevicesOfCat ( deviceCategory ) ;
1245
+ protected static IBaseFilter AddFilterByDevicePath ( IGraphBuilder graphBuilder , Guid deviceCategory , string devicePath )
1246
+ {
1247
+ var devices = DsDevice . GetDevicesOfCat ( deviceCategory ) ;
1247
1248
1248
- var deviceList = ( from d in devices
1249
- where d . DevicePath == devicePath
1250
- select d ) ;
1251
- DsDevice device = null ;
1252
- if ( deviceList . Count ( ) > 0 )
1253
- device = deviceList . Take ( 1 ) . Single ( ) ;
1249
+ var deviceList = ( from d in devices
1250
+ where d . DevicePath == devicePath
1251
+ select d ) ;
1252
+ DsDevice device = null ;
1253
+ if ( deviceList . Count ( ) > 0 )
1254
+ device = deviceList . Take ( 1 ) . Single ( ) ;
1254
1255
1255
- return AddFilterByDevice ( graphBuilder , device ) ;
1256
- }
1256
+ return AddFilterByDevice ( graphBuilder , device ) ;
1257
+ }
1257
1258
1258
- private static IBaseFilter AddFilterByDevice ( IGraphBuilder graphBuilder , DsDevice device )
1259
- {
1260
- if ( graphBuilder == null )
1261
- throw new ArgumentNullException ( "graphBuilder" ) ;
1259
+ private static IBaseFilter AddFilterByDevice ( IGraphBuilder graphBuilder , DsDevice device )
1260
+ {
1261
+ if ( graphBuilder == null )
1262
+ throw new ArgumentNullException ( "graphBuilder" ) ;
1262
1263
1263
- var filterGraph = graphBuilder as IFilterGraph2 ;
1264
+ var filterGraph = graphBuilder as IFilterGraph2 ;
1264
1265
1265
- if ( filterGraph == null )
1266
- return null ;
1266
+ if ( filterGraph == null )
1267
+ return null ;
1267
1268
1268
- IBaseFilter filter = null ;
1269
- if ( device != null )
1270
- {
1271
- int hr = filterGraph . AddSourceFilterForMoniker ( device . Mon , null , device . Name , out filter ) ;
1272
- DsError . ThrowExceptionForHR ( hr ) ;
1273
- }
1274
- return filter ;
1275
- }
1269
+ IBaseFilter filter = null ;
1270
+ if ( device != null )
1271
+ {
1272
+ int hr = filterGraph . AddSourceFilterForMoniker ( device . Mon , null , device . Name , out filter ) ;
1273
+ DsError . ThrowExceptionForHR ( hr ) ;
1274
+ }
1275
+ return filter ;
1276
+ }
1276
1277
1277
1278
/// <summary>
1278
1279
/// Finds a pin that exists in a graph.
@@ -1284,7 +1285,7 @@ private static IBaseFilter AddFilterByDevice(IGraphBuilder graphBuilder, DsDevic
1284
1285
protected static IPin FindPinInGraphByMediaType ( Guid majorOrMinorMediaType , PinDirection pinDirection , IGraphBuilder graph )
1285
1286
{
1286
1287
IEnumFilters enumFilters ;
1287
-
1288
+
1288
1289
/* Get the filter enum */
1289
1290
graph . EnumFilters ( out enumFilters ) ;
1290
1291
@@ -1308,7 +1309,7 @@ protected static IPin FindPinInGraphByMediaType(Guid majorOrMinorMediaType, PinD
1308
1309
pin . EnumMediaTypes ( out mediaTypesEnum ) ;
1309
1310
var mediaTypesFetched = IntPtr . Zero ;
1310
1311
var mediaTypes = new AMMediaType [ 1 ] ;
1311
-
1312
+
1312
1313
/* Enumerate the media types on the pin */
1313
1314
while ( mediaTypesEnum . Next ( 1 , mediaTypes , mediaTypesFetched ) == 0 )
1314
1315
{
0 commit comments