hyperion.ng/libsrc/grabber/amlogic/AmlogicWrapper.cpp
2020-08-08 13:09:15 +02:00

12 lines
271 B
C++

#include <grabber/AmlogicWrapper.h>
AmlogicWrapper::AmlogicWrapper(unsigned grabWidth, unsigned grabHeight)
: GrabberWrapper("AmLogic", &_grabber, grabWidth, grabHeight)
, _grabber(grabWidth, grabHeight)
{}
void AmlogicWrapper::action()
{
transferFrame(_grabber);
}