mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
This reverts commit756a409f2f
. Origin commit data ------------------ Branch: master Commit:93bb54b48d
Author: vanhofen <vanhofen@gmx.de> Date: 2022-12-25 (Sun, 25 Dec 2022) ------------------ This commit was generated by Migit
21 lines
458 B
C
21 lines
458 B
C
#include <config.h>
|
|
#if HAVE_ARM_HARDWARE
|
|
#include "../libarmbox/video_lib.h"
|
|
#include "../libarmbox/hdmi_cec.h"
|
|
#elif HAVE_MIPS_HARDWARE
|
|
#include "../libmipsbox/video_lib.h"
|
|
#include "../libmipsbox/hdmi_cec.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#if BOXMODEL_RASPI
|
|
#include "../libraspi/video_lib.h"
|
|
#else
|
|
#include "../libgeneric-pc/video_lib.h"
|
|
#endif
|
|
#else
|
|
#error no valid hardware defined
|
|
#endif
|
|
|
|
#if STB_HAL_VIDEO_HAS_GETSCREENIMAGE
|
|
#define SCREENSHOT 1
|
|
#endif
|