mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
14 lines
299 B
C++
14 lines
299 B
C++
#include <grabber/amlogic/AmlogicWrapper.h>
|
|
|
|
AmlogicWrapper::AmlogicWrapper(int pixelDecimation, int updateRate_Hz)
|
|
: GrabberWrapper("Amlogic", &_grabber, updateRate_Hz)
|
|
, _grabber()
|
|
{
|
|
_grabber.setPixelDecimation(pixelDecimation);
|
|
}
|
|
|
|
void AmlogicWrapper::action()
|
|
{
|
|
transferFrame(_grabber);
|
|
}
|