mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
Conflicts:
configure.ac
data/locale/deutsch.locale
data/locale/english.locale
data/locale/slovak.locale
lib/libcoolstream/hardware_caps.cpp
lib/libcoolstream/hardware_caps.h
lib/libdvbsub/dvbsubtitle.cpp
lib/timerdclient/timerdclient.cpp
src/daemonc/Makefile.am
src/daemonc/remotecontrol.cpp
src/driver/framebuffer_ng.h
src/driver/pictureviewer/Makefile.am
src/driver/streamts.cpp
src/eitd/sectionsd.cpp
src/gui/bedit/bouqueteditor_channels.cpp
src/gui/dboxinfo.cpp
src/gui/epgplus.cpp
src/gui/epgview.cpp
src/gui/plugins.cpp
src/gui/streaminfo2.cpp
src/gui/themes.cpp
src/gui/widget/listbox.cpp
src/gui/widget/listhelpers.cpp
src/neutrino.cpp
src/system/helpers.cpp
src/system/helpers.h
src/system/settings.cpp
src/system/settings.h
src/zapit/src/getservices.cpp
Origin commit data
------------------
Branch: ni/coolstream
Commit: 75cce3b113
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-10-25 (Tue, 25 Oct 2016)
------------------
This commit was generated by Migit
47 lines
922 B
C++
47 lines
922 B
C++
/*
|
|
* determine the capabilities of the hardware.
|
|
* part of libstb-hal
|
|
*
|
|
* (C) 2010-2012,2016 Stefan Seyfried
|
|
* (C) 2016 M. Liebmann
|
|
*
|
|
* License: GPL v2 or later
|
|
*/
|
|
#ifndef __HARDWARE_CAPS_H__
|
|
#define __HARDWARE_CAPS_H__
|
|
|
|
#include "cs_api.h"
|
|
#include <string.h>
|
|
#include <string>
|
|
|
|
typedef enum {
|
|
HW_DISPLAY_NONE,
|
|
HW_DISPLAY_LED_NUM, /* simple 7 segment LED display */
|
|
HW_DISPLAY_LINE_TEXT, /* 1 line text display */
|
|
HW_DISPLAY_GFX
|
|
} display_type_t;
|
|
|
|
|
|
typedef struct hw_caps {
|
|
int has_fan;
|
|
int has_HDMI;
|
|
int has_SCART;
|
|
int has_SCART_input;
|
|
int has_YUV_cinch;
|
|
int can_shutdown;
|
|
int can_cec;
|
|
display_type_t display_type;
|
|
int display_xres; /* x resolution or chars per line */
|
|
int display_yres;
|
|
int can_set_display_brightness;
|
|
char boxvendor[64];
|
|
char boxname[64];
|
|
char boxarch[64];
|
|
char chipset[64];
|
|
char frontend[64];
|
|
} hw_caps_t;
|
|
|
|
std::string getTuner();
|
|
hw_caps_t *get_hwcaps(void);
|
|
#endif
|