ref_vfmethod_deinitProc - shekh/VirtualDub2 GitHub Wiki
VirtualDub Plugin SDK 1.2
deinitProc video filter method
Cleans up per-instance data for a filter.
void deinitProc(VDXFilterActivation *fa, const VDXFilterFunctions *ff);
fa | Pointer to filter activation structure. |
ff | Pointer to callback function structure. |
This method is not thread-safe.
This function must not throw exceptions (see Except()).
If omitted, no default action is taken.
This function is called whenever a filter instance is about to be destroyed, and gives the filter a chance to dispose of persistent filter data. Simple filters will not need this function.
Copyright (C) 2007-2012 Avery Lee.