Syntax
GetPixelClockList (long *plList, long lNum)
Description
Returns the list with discrete pixel clocks.
Parameter
plList |
List of pixel clocks |
lNum |
Number of pixel clocks |
Interface
Related functions
Example
// query uEye capture pin interface from source filter
long numPixelClocks = 0;
HRESULT hr = capturePin->GetNumPixelClocks(&numPixelClocks);
if(FAILED(hr))
{
// handle error
}
std::unique_ptr<long[]> pixelClockList(new long[numPixelClocks]);
hr = capturePin->GetPixelClockList(pixelClockList.get(),
numPixelClocks);
if(FAILED(hr))
{
// handle error
}