mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
12 lines
271 B
C++
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);
|
|
}
|