mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
f2eef4ecea
The OSD will use 20Hz for frame capture frequency The video capture frequency is based on the amlvideodri capture module
12 lines
283 B
C++
12 lines
283 B
C++
#include <grabber/AmlogicWrapper.h>
|
|
|
|
AmlogicWrapper::AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight)
|
|
: GrabberWrapper("AmLogic", &_grabber, grabWidth, grabHeight)
|
|
, _grabber(grabWidth, grabHeight)
|
|
{}
|
|
|
|
void AmlogicWrapper::action()
|
|
{
|
|
transferFrame(_grabber);
|
|
}
|