mrDarker
2025-08-22 a569f6895e7ea624b869609a41ad4e39ea0f041a
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/************************************************************************/
/*
*
* Filename     :  MilDSFSequence.H
* Revision     :  10.30.0643
* Content      :  This file contains the interface structure required for 
*                 Matrox Image Compression Filter.
*
* Comments     :  Some defines may be here but not yet
*                 implemented in the library.
*
* Copyright © Matrox Electronic Systems Ltd., 1992-2018.
* All Rights Reserved
*************************************************************************/
 
#pragma once
#pragma warning(disable:4995)
 
#include <initguid.h>
#include "MilDSFSequenceGUID.h"
 
#include <mil.h>
 
/////////////////////////////////////////////////////////////////
//
// Interface         : IMilSequenceEncode
//
// Synopsis          : Access the encoding context
//
// Comments          : Control and Inquire functions are equivalent to
//                     MseqControl and MseqInquire except you do not have to
//                     specify a MIL_ID for the sequence context.
//
/////////////////////////////////////////////////////////////////
DECLARE_INTERFACE_(IMilSequenceEncode, IBaseFilter)
   {
   STDMETHOD_(MIL_ID, GetMilSystemId)
      (THIS_)PURE;
 
   STDMETHOD_(void, Control)
      ( THIS_
      MIL_INT64 ControlType,
      MIL_DOUBLE ControlValue
      )  PURE;
 
   STDMETHOD_(void, Control)
      ( THIS_
      MIL_INT64 ControlType,
      MIL_INT32 ControlValue
      )  PURE;
 
   STDMETHOD_(void, Control)
      ( THIS_
      MIL_INT64 ControlType,
      MIL_INT64 ControlValue
      )  PURE;
 
   STDMETHOD_(MIL_INT, Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_DOUBLE* UserVarPtr
      )  PURE;
 
   STDMETHOD_(MIL_INT, Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_INT32* UserVarPtr
      )  PURE;
 
   STDMETHOD_(MIL_INT, Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_INT64* UserVarPtr
      )  PURE;
 
#if M_MIL_SAFE_TYPE_SUPPORTS_UNSIGNED
   STDMETHOD_(MIL_INT, Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_UINT32* UserVarPtr
      )  PURE;
 
   STDMETHOD_(MIL_INT, Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_UINT64* UserVarPtr
      )  PURE;
#endif // M_MIL_SAFE_TYPE_SUPPORTS_UNSIGNED
 
   STDMETHOD (InitParam)
      ( THIS_
      MIL_UINT32 OutputFormat,
      MIL_INT64 InitFlag
      )  PURE;
 
   STDMETHOD(GetInitFlag)
      ( THIS_
      MIL_INT64* pInitFlag
      )  PURE;
   };
 
 
DECLARE_INTERFACE_(IMilSequenceDecode, IBaseFilter)
   {
   STDMETHOD_(MIL_ID, GetMilSystemId)
      (THIS_)PURE;
 
   STDMETHOD(Control)
      ( THIS_
      MIL_INT64 ControlType,
      MIL_DOUBLE ControlValue
      )  PURE;
 
   STDMETHOD(Control)
      ( THIS_
      MIL_INT64 ControlType,
      MIL_INT32 ControlValue
      )  PURE;
 
   STDMETHOD(Control)
      ( THIS_
      MIL_INT64 ControlType,
      MIL_INT64 ControlValue
      )  PURE;
 
   STDMETHOD(Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_DOUBLE* UserVarPtr
      )  PURE;
 
   STDMETHOD(Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_INT32* UserVarPtr
      )  PURE;
 
   STDMETHOD(Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_INT64* UserVarPtr
      )  PURE;
 
#if M_MIL_SAFE_TYPE_SUPPORTS_UNSIGNED
   STDMETHOD(Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_UINT32* UserVarPtr
      )  PURE;
 
   STDMETHOD(Inquire)
      ( THIS_
      MIL_INT64 InquireType,
      MIL_UINT64* UserVarPtr
      )  PURE;
#endif // M_MIL_SAFE_TYPE_SUPPORTS_UNSIGNED
 
   STDMETHOD (InitParam)
      ( THIS_
      MIL_UINT32 OutputFormat,
      MIL_INT64 InitFlag
      )  PURE;
 
   STDMETHOD(GetInitFlag)
      (THIS_
      MIL_INT64* pInitFlag
      )  PURE;
   };