mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
5bd8c33529
* Update KODIVideoChecker.h * Update GrabbingMode.h * Update AmlogicWrapper.cpp * Update DispmanxWrapper.cpp * Update FramebufferWrapper.cpp * Update OsxWrapper.cpp * Update KODIVideoChecker.cpp * Update ProtoConnection.cpp * Update X11Wrapper.cpp
19 lines
367 B
C
19 lines
367 B
C
#pragma once
|
|
|
|
/**
|
|
* Enumeration of the possible modes in which frame-grabbing is performed.
|
|
*/
|
|
enum GrabbingMode
|
|
{
|
|
/** Frame grabbing is switched off */
|
|
GRABBINGMODE_OFF,
|
|
/** Frame grabbing during video */
|
|
GRABBINGMODE_VIDEO,
|
|
GRABBINGMODE_PAUSE,
|
|
GRABBINGMODE_PHOTO,
|
|
GRABBINGMODE_AUDIO,
|
|
GRABBINGMODE_MENU,
|
|
GRABBINGMODE_SCREENSAVER,
|
|
GRABBINGMODE_INVALID
|
|
};
|