blob: e5cb989540ca26c9c52620b3dbb7feb572945ce4 (
plain)
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
|
/**************************************************************************
AVStream Simulated Hardware Sample
Copyright (c) 2001, Microsoft Corporation.
File:
filter.h
Abstract:
This file contains the filter level header for the capture filter.
History:
created 3/12/2001
**************************************************************************/
class CCaptureFilter {
private:
//
// The AVStream filter object associated with this CCaptureFilter.
//
PKSFILTER m_Filter;
//
// Cleanup():
//
// This is the bag cleanup callback for the CCaptureFilter. Not providing
// one would cause ExFreePool to be used. This is not good for C++
// constructed objects. We simply delete the object here.
//
static
void
Cleanup (
IN CCaptureFilter *CapFilter
)
{
delete CapFilter;
}
public:
//
// CCaptureFilter():
//
// The capture filter object constructor. Since the new operator will
// have zeroed the memory, do not bother initializing any NULL or 0
// fields. Only initialize non-NULL, non-0 fields.
//
CCaptureFilter (
IN PKSFILTER Filter
) :
m_Filter (Filter)
{
}
//
// ~CCaptureFilter():
//
// The capture filter destructor.
//
~CCaptureFilter (
)
{
}
//
// DispatchCreate():
//
// This is the filter creation dispatch for the capture filter. It
// creates the CCaptureFilter object, associates it with the AVStream
// object, and bags it for easy cleanup later.
//
static
NTSTATUS
DispatchCreate (
IN PKSFILTER Filter,
IN PIRP Irp
);
};
|