Please enable JavaScript to view this site.

uEye DirectShow 4.97

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

IuEyeCapturePinEx

Related functions

SetPixelClock

GetNumPixelClocks

PixelClockRange_IsSupported

GetPixelClockRangeEx

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
}