-
Notifications
You must be signed in to change notification settings - Fork 10
/
MediaTypeListForm.cs
116 lines (108 loc) · 3.56 KB
/
MediaTypeListForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DirectShowLib;
using System.Runtime.InteropServices;
namespace gep
{
public partial class MediaTypeListForm : Form
{
IAMStreamConfig isc;
int size;
IntPtr scc = IntPtr.Zero;
public AMMediaType selected_mt;
public MediaTypeListForm(IAMStreamConfig _isc)
{
isc = _isc;
InitializeComponent();
}
private void MediaTypeListForm_Load(object sender, EventArgs e)
{
int count;
try
{
listBox.Items.Add("null (resets to default on some filters)");
listBox.Items.Add(MediaTypeProps.CreateMTProps(new AMMediaType()).ToString());
if (isc.GetNumberOfCapabilities(out count, out size) >= 0)
{
scc = Marshal.AllocHGlobal(size);
for (int i = 0; i < count; i++)
{
AMMediaType mt;
int hr = isc.GetStreamCaps(i, out mt, scc);
DsError.ThrowExceptionForHR(hr);
string s = MediaTypeProps.CreateMTProps(mt).ToString();
listBox.Items.Add(s);
}
}
}
catch (COMException ex)
{
Graph.ShowCOMException(ex, "Error getting stream capabilities");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void OnOK(object sender, EventArgs e)
{
try
{
int hr = isc.SetFormat(selected_mt);
DsError.ThrowExceptionForHR(hr);
DialogResult = DialogResult.OK;
Close();
}
catch (COMException ex)
{
Graph.ShowCOMException(ex, "Error trying to SetFormat");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void OnCancel(object sender, EventArgs e)
{
selected_mt = null;
DialogResult = DialogResult.Cancel;
Close();
}
private void OnSelChange(object sender, EventArgs e)
{
try
{
int i = listBox.SelectedIndex;
if (i == 0) selected_mt = null;
if (i == 1) selected_mt = new AMMediaType();
if (i >= 2)
{
AMMediaType mt;
int hr = isc.GetStreamCaps(i-2, out mt, scc);
DsError.ThrowExceptionForHR(hr);
selected_mt = mt;
}
propertyGrid.SelectedObject = selected_mt != null ?
MediaTypeProps.CreateMTProps(selected_mt) : null;
}
catch (COMException ex)
{
Graph.ShowCOMException(ex, "Error trying to GetStreamCaps");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void OnClosed(object sender, FormClosedEventArgs e)
{
if (scc != IntPtr.Zero)
Marshal.FreeHGlobal(scc);
}
}
}