hyperion.ng/libsrc/grabber/amlogic/AmlogicWrapper.cpp

12 lines
271 B
C++
Raw Normal View History

#include <grabber/AmlogicWrapper.h>
2020-08-08 13:09:15 +02:00
AmlogicWrapper::AmlogicWrapper(unsigned grabWidth, unsigned grabHeight)
: GrabberWrapper("AmLogic", &_grabber, grabWidth, grabHeight)
2019-03-27 08:07:45 +01:00
, _grabber(grabWidth, grabHeight)
{}
void AmlogicWrapper::action()
{
transferFrame(_grabber);
}