mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
Origin commit data
------------------
Branch: master
Commit: 4dc1171253
Author: max_10 <max_10@gmx.de>
Date: 2014-04-27 (Sun, 27 Apr 2014)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
23 lines
534 B
C
23 lines
534 B
C
#include <config.h>
|
|
#if HAVE_TRIPLEDRAGON
|
|
#include "../libtriple/video_td.h"
|
|
#elif HAVE_DUCKBOX_HARDWARE
|
|
#include "../libduckbox/video_lib.h"
|
|
#elif HAVE_SPARK_HARDWARE
|
|
#include "../libspark/video_lib.h"
|
|
#elif HAVE_AZBOX_HARDWARE
|
|
#include "../azbox/video_lib.h"
|
|
#elif HAVE_GENERIC_HARDWARE
|
|
#if BOXMODEL_RASPI
|
|
#include "../raspi/video_lib.h"
|
|
#else
|
|
#include "../generic-pc/video_lib.h"
|
|
#endif
|
|
#else
|
|
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
|
|
#endif
|
|
|
|
#if STB_HAL_VIDEO_HAS_GETSCREENIMAGE
|
|
#define SCREENSHOT 1
|
|
#endif
|