#include <videoio.h>
Inheritance diagram for PVideoOutputDevice:
Public Member Functions | |
PVideoOutputDevice () | |
virtual | ~PVideoOutputDevice () |
virtual BOOL | Close () |
virtual BOOL | Start () |
virtual BOOL | Stop () |
virtual BOOL | CanCaptureVideo () const |
virtual BOOL | SetFrameData (unsigned x, unsigned y, unsigned width, unsigned height, const BYTE *data, BOOL endFrame=TRUE)=0 |
Static Public Member Functions | |
static PStringList | GetDriverNames (PPluginManager *pluginMgr=NULL) |
static PStringList | GetDriversDeviceNames (const PString &driverName, PPluginManager *pluginMgr=NULL) |
static PVideoOutputDevice * | CreateDevice (const PString &driverName, PPluginManager *pluginMgr=NULL) |
static PVideoOutputDevice * | CreateDeviceByName (const PString &deviceName, PPluginManager *pluginMgr=NULL) |
static PVideoOutputDevice * | CreateOpenedDevice (const PString &driverName, const PString &deviceName, BOOL startImmediate=TRUE, PPluginManager *pluginMgr=NULL) |
|
Create a new video output device. |
|
Close the video output device on destruction. |
|
Is the device a camera, and obtain video Implements PVideoDevice. |
|
Close the device. Implements PVideoDevice. |
|
Create the video output device that corresponds to the specified driver name.
|
|
|
|
Create an opened video output device that corresponds to the specified names. If the driverName parameter is an empty string or "*" then CreateDeviceByName is used with the deviceName parameter which is assumed to be a value returned from GetDriversDeviceNames().
|
|
Get the list of available video output drivers (plug-ins)
|
|
Get video output devices that correspond to the specified driver name. If driverName is an empty string or the value "*" then this will return a list of unique device names across all of the available drivers. If two drivers have identical names for devices, then the string returned will be of the form driver+''+device.
|
|
Set a section of the output frame buffer. Implemented in PVideoOutputDeviceRGB. |
|
Start the video device I/O display. Implements PVideoDevice. |
|
Stop the video device I/O display. Implements PVideoDevice. |