-
Notifications
You must be signed in to change notification settings - Fork 16
ref_vfcallback_removeFilter
VirtualDub Plugin SDK 1.2
removeFilter video filter callback
Remove a filter from the global filter list.
void __cdecl removeFilter(FilterDefinition *fd);
fd | Runtime FilterDefinition structure for the filter being removed. This must be the pointer returned from addFilter(), not the original FilterDefinition structure used to register the filter. |
This method is not thread-safe.
This function must not throw exceptions (see Except()).
This function was intended to be used to remove a DLL's filters from the global list when the DLL is unloaded. However, older versions of VirtualDub do not unload filter DLLs, and newer versions do dynamic unloading and automatically remove associated filters when a module is unloaded. As such, it is not necessary to call this function.
Copyright (C) 2007-2012 Avery Lee.
Setting up your development environment
Conventions
Plugin initialization
Dynamic loading
Reference counting
Using CPU extensions
Introduction
What's new
Breaking changes
Gotchas
Deprecated features
Migrating from the old Filter SDK
Programming model
Handling bitmaps
Creating a video filter
Setting filter parameters
Processing video frames
Managing filter data
Creating time-varying filters
Handling aspect ratio
Prefetching multiple source frames
Handling multiple sources
Making a filter configurable
Scripting support
CPU dependent optimization
VDXA index omitted
Getting started
Writing the module entry point
Creating a video filter
Adding configurability
Adding script support
Introduction
What's new
Autodetect
Direct mode
Video frames vs. samples
Video decodint model
Video decoder