mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
12 lines
328 B
C++
12 lines
328 B
C++
#include <grabber/AmlogicWrapper.h>
|
|
|
|
AmlogicWrapper::AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz)
|
|
: GrabberWrapper("AmLogic", &_grabber, grabWidth, grabHeight, updateRate_Hz)
|
|
, _grabber(grabWidth, grabHeight)
|
|
{}
|
|
|
|
void AmlogicWrapper::action()
|
|
{
|
|
transferFrame(_grabber);
|
|
}
|