mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* implement set videomode via json api * refactor grabbers: - new base class - move shared code to base class * fix osx * rework all cmakelist files with auto file collection. except leddevices (need further restructuring) * store current video and grabbing mode * add json stuff * remove grabbingmode - we do not want to expose it
43 lines
1.2 KiB
C++
Executable File
43 lines
1.2 KiB
C++
Executable File
#pragma once
|
|
|
|
// Utils includes
|
|
#include <utils/ColorBgr.h>
|
|
#include <hyperion/Grabber.h>
|
|
|
|
///
|
|
/// The DispmanxFrameGrabber is used for creating snapshots of the display (screenshots) with a
|
|
/// downsized and scaled resolution.
|
|
///
|
|
class AmlogicGrabber : public Grabber
|
|
{
|
|
public:
|
|
///
|
|
/// Construct a AmlogicGrabber that will capture snapshots with specified dimensions.
|
|
///
|
|
/// @param[in] width The width of the captured screenshot
|
|
/// @param[in] height The heigth of the captured screenshot
|
|
///
|
|
AmlogicGrabber(const unsigned width, const unsigned height);
|
|
~AmlogicGrabber();
|
|
|
|
///
|
|
/// Captures a single snapshot of the display and writes the data to the given image. The
|
|
/// provided image should have the same dimensions as the configured values (_width and
|
|
/// _height)
|
|
///
|
|
/// @param[out] image The snapped screenshot (should be initialized with correct width and
|
|
/// height)
|
|
/// @return Zero on success else negative
|
|
///
|
|
int grabFrame(Image<ColorBgr> & image);
|
|
|
|
/**
|
|
* Returns true if video is playing over the amlogic chip
|
|
* @return True if video is playing else false
|
|
*/
|
|
bool isVideoPlaying();
|
|
private:
|
|
/** The snapshot/capture device of the amlogic video chip */
|
|
int _amlogicCaptureDev;
|
|
};
|