-
Notifications
You must be signed in to change notification settings - Fork 18
ref_vfcallback_isFPUEnabled
VirtualDub Plugin SDK 1.2
isFPUEnabled video filter callback
Queries whether optimizations using the floating-point unit (FPU) are enabled.
bool __cdecl isFPUEnabled();
This method is not thread-safe.
This function must not throw exceptions (see Except()).
True if FPU optimizations should be enabled, false otherwise.
This is equivalent to getCPUFlags() & CPUF_SUPPORTS_FPU.
Filters are free to ignore this function and use floating-point operations regardless; Windows will emulate them if an FPU is not present. This function simply provides a way for the filter to share the CPU detection and override logic in the host.
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