-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFilter.h
244 lines (194 loc) · 7.99 KB
/
Filter.h
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// VirtualDub - Video processing and capture application
// Copyright (C) 1998-2002 Avery Lee
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
//
// FILTER EXEMPTION:
//
// As a special exemption to the GPL in order to permit creation of
// filters that work with multiple programs as well as VirtualDub,
// compiling with this header file shall not be considered creation
// of a derived work; that is, the act of compiling with this header
// file does not require your source code or the resulting module
// to be released in source code form or under a GPL-compatible
// license according to parts (2) and (3) of the GPL. A filter built
// using this header file may thus be licensed or dual-licensed so
// that it may be used with VirtualDub as well as an alternative
// product whose license is incompatible with the GPL.
//
// Nothing in this exemption shall be construed as applying to
// VirtualDub itself -- that is, this exemption does not give you
// permission to use parts of VirtualDub's source besides this
// header file, or to dynamically link with VirtualDub as part
// of the filter load process, in a fashion not permitted by the
// GPL.
#ifndef f_FILTER_H
#define f_FILTER_H
#include <windows.h>
// This is really dumb, but necessary to support VTbls in C++.
struct FilterVTbls {
void *pvtblVBitmap;
};
#ifdef VDEXT_MAIN
struct FilterVTbls g_vtbls;
#elif defined(VDEXT_NOTMAIN)
extern struct FilterVTbls g_vtbls;
#endif
#define INITIALIZE_VTBLS ff->InitVTables(&g_vtbls)
#include "VBitmap.h"
//////////////////
struct CScriptObject;
//////////////////
enum {
FILTERPARAM_SWAP_BUFFERS = 0x00000001L,
FILTERPARAM_NEEDS_LAST = 0x00000002L,
};
#define FILTERPARAM_HAS_LAG(frames) ((int)(frames) << 16)
///////////////////
class VFBitmap;
class FilterActivation;
struct FilterFunctions;
typedef int (*FilterInitProc )(FilterActivation *fa, const FilterFunctions *ff);
typedef void (*FilterDeinitProc )(FilterActivation *fa, const FilterFunctions *ff);
typedef int (*FilterRunProc )(const FilterActivation *fa, const FilterFunctions *ff);
typedef long (*FilterParamProc )(FilterActivation *fa, const FilterFunctions *ff);
typedef int (*FilterConfigProc )(FilterActivation *fa, const FilterFunctions *ff, HWND hWnd);
typedef void (*FilterStringProc )(const FilterActivation *fa, const FilterFunctions *ff, char *buf);
typedef int (*FilterStartProc )(FilterActivation *fa, const FilterFunctions *ff);
typedef int (*FilterEndProc )(FilterActivation *fa, const FilterFunctions *ff);
typedef bool (*FilterScriptStrProc)(FilterActivation *fa, const FilterFunctions *, char *, int);
typedef void (*FilterStringProc2 )(const FilterActivation *fa, const FilterFunctions *ff, char *buf, int maxlen);
typedef int (*FilterSerialize )(FilterActivation *fa, const FilterFunctions *ff, char *buf, int maxbuf);
typedef void (*FilterDeserialize )(FilterActivation *fa, const FilterFunctions *ff, const char *buf, int maxbuf);
typedef void (*FilterCopy )(FilterActivation *fa, const FilterFunctions *ff, void *dst);
typedef int (__cdecl *FilterModuleInitProc)(struct FilterModule *fm, const FilterFunctions *ff, int& vdfd_ver, int& vdfd_compat);
typedef void (__cdecl *FilterModuleDeinitProc)(struct FilterModule *fm, const FilterFunctions *ff);
//////////
typedef void (__cdecl *FilterPreviewButtonCallback)(bool fNewState, void *pData);
typedef void (__cdecl *FilterPreviewSampleCallback)(VFBitmap *, long lFrame, long lCount, void *pData);
class IFilterPreview {
public:
virtual void SetButtonCallback(FilterPreviewButtonCallback, void *)=0;
virtual void SetSampleCallback(FilterPreviewSampleCallback, void *)=0;
virtual bool isPreviewEnabled()=0;
virtual void Toggle(HWND)=0;
virtual void Display(HWND, bool)=0;
virtual void RedoFrame()=0;
virtual void RedoSystem()=0;
virtual void UndoSystem()=0;
virtual void InitButton(HWND)=0;
virtual void Close()=0;
virtual bool SampleCurrentFrame()=0;
virtual long SampleFrames()=0;
};
//////////
#define VIRTUALDUB_FILTERDEF_VERSION (8)
#define VIRTUALDUB_FILTERDEF_COMPATIBLE (4)
// v3: added lCurrentSourceFrame to FrameStateInfo
// v4 (1.2): lots of additions (VirtualDub 1.2)
// v5 (1.3d): lots of bugfixes - stretchblt bilinear, and non-zero startproc
// v6 (1.4): added error handling functions
// v7 (1.4d): added frame lag, exception handling
// v8 (1.4.11):
typedef struct FilterModule {
struct FilterModule *next, *prev;
HINSTANCE hInstModule;
FilterModuleInitProc initProc;
FilterModuleDeinitProc deinitProc;
} FilterModule;
typedef struct FilterDefinition {
struct FilterDefinition *next, *prev;
FilterModule *module;
const char * name;
const char * desc;
const char * maker;
void * private_data;
int inst_data_size;
FilterInitProc initProc;
FilterDeinitProc deinitProc;
FilterRunProc runProc;
FilterParamProc paramProc;
FilterConfigProc configProc;
FilterStringProc stringProc;
FilterStartProc startProc;
FilterEndProc endProc;
CScriptObject *script_obj;
FilterScriptStrProc fssProc;
// NEW - 1.4.11
FilterStringProc2 stringProc2;
FilterSerialize serializeProc;
FilterDeserialize deserializeProc;
FilterCopy copyProc;
} FilterDefinition;
//////////
// FilterStateInfo: contains dynamic info about file being processed
class FilterStateInfo {
public:
long lCurrentFrame; // current output frame
long lMicrosecsPerFrame; // microseconds per output frame
long lCurrentSourceFrame; // current source frame
long lMicrosecsPerSrcFrame; // microseconds per source frame
long lSourceFrameMS; // source frame timestamp
long lDestFrameMS; // output frame timestamp
};
// VFBitmap: VBitmap extended to hold filter-specific information
class VFBitmap : public VBitmap {
public:
enum {
NEEDS_HDC = 0x00000001L,
};
DWORD dwFlags;
HDC hdc;
};
// FilterActivation: This is what is actually passed to filters at runtime.
class FilterActivation {
public:
FilterDefinition *filter;
void *filter_data;
VFBitmap &dst, &src;
VFBitmap *__reserved0, *const last;
unsigned long x1, y1, x2, y2;
FilterStateInfo *pfsi;
IFilterPreview *ifp;
FilterActivation(VFBitmap& _dst, VFBitmap& _src, VFBitmap *_last) : dst(_dst), src(_src), last(_last) {}
FilterActivation(const FilterActivation& fa, VFBitmap& _dst, VFBitmap& _src, VFBitmap *_last);
};
// These flags must match those in cpuaccel.h!
#ifndef f_VIRTUALDUB_CPUACCEL_H
#define CPUF_SUPPORTS_CPUID (0x00000001L)
#define CPUF_SUPPORTS_FPU (0x00000002L)
#define CPUF_SUPPORTS_MMX (0x00000004L)
#define CPUF_SUPPORTS_INTEGER_SSE (0x00000008L)
#define CPUF_SUPPORTS_SSE (0x00000010L)
#define CPUF_SUPPORTS_SSE2 (0x00000020L)
#define CPUF_SUPPORTS_3DNOW (0x00000040L)
#define CPUF_SUPPORTS_3DNOW_EXT (0x00000080L)
#endif
struct FilterFunctions {
FilterDefinition *(*addFilter)(FilterModule *, FilterDefinition *, int fd_len);
void (*removeFilter)(FilterDefinition *);
bool (*isFPUEnabled)();
bool (*isMMXEnabled)();
void (*InitVTables)(struct FilterVTbls *);
// These functions permit you to throw MyError exceptions from a filter.
// YOU MUST ONLY CALL THESE IN runProc, initProc, and startProc.
void (*ExceptOutOfMemory)(); // ADDED: V6 (VirtualDub 1.4)
void (*Except)(const char *format, ...); // ADDED: V6 (VirtualDub 1.4)
// These functions are callable at any time.
long (*getCPUFlags)(); // ADDED: V6 (VirtualDub 1.4)
long (*getHostVersionInfo)(char *buffer, int len); // ADDED: V7 (VirtualDub 1.4d)
};
#endif