mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
move dependent headers into one directory
in preparation of proper installation of the lib
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
noinst_LTLIBRARIES = libazbox.la
|
noinst_LTLIBRARIES = libazbox.la
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/common
|
-I$(top_srcdir)/common \
|
||||||
|
-I$(top_srcdir)/include
|
||||||
|
|
||||||
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
||||||
AM_LDFLAGS = -lpthread
|
AM_LDFLAGS = -lpthread
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
#ifndef _AUDIO_LIB_H_
|
#ifndef _AUDIO_LIB_H_
|
||||||
#define _AUDIO_LIB_H_
|
#define _AUDIO_LIB_H_
|
||||||
|
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <linux/dvb/dmx.h>
|
#include <linux/dvb/dmx.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
#define MAX_DMX_UNITS 4
|
#define MAX_DMX_UNITS 4
|
||||||
|
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
#define _VIDEO_TD_H
|
#define _VIDEO_TD_H
|
||||||
|
|
||||||
#include <linux/dvb/video.h>
|
#include <linux/dvb/video.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
#include "dmx_lib.h"
|
#include "dmx_lib.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@@ -2,6 +2,9 @@ noinst_LTLIBRARIES = libcommon.la
|
|||||||
|
|
||||||
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
||||||
|
|
||||||
|
AM_CXXFLAGS += \
|
||||||
|
-I $(top_srcdir)/include
|
||||||
|
|
||||||
libcommon_la_SOURCES = \
|
libcommon_la_SOURCES = \
|
||||||
ca.cpp \
|
ca.cpp \
|
||||||
lt_debug.c \
|
lt_debug.c \
|
||||||
|
@@ -1 +0,0 @@
|
|||||||
../include/hardware_caps.h
|
|
@@ -2,7 +2,8 @@ noinst_LTLIBRARIES = libgeneric.la
|
|||||||
|
|
||||||
AM_CPPFLAGS = -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS
|
AM_CPPFLAGS = -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS
|
||||||
AM_CPPFLAGS += \
|
AM_CPPFLAGS += \
|
||||||
-I$(top_srcdir)/common
|
-I$(top_srcdir)/common \
|
||||||
|
-I$(top_srcdir)/include
|
||||||
|
|
||||||
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <OpenThreads/Thread>
|
#include <OpenThreads/Thread>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <linux/dvb/dmx.h>
|
#include <linux/dvb/dmx.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
#define MAX_DMX_UNITS 4
|
#define MAX_DMX_UNITS 4
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
#include <OpenThreads/Mutex>
|
#include <OpenThreads/Mutex>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <linux/dvb/video.h>
|
#include <linux/dvb/video.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
#include "dmx_lib.h"
|
#include "dmx_lib.h"
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <libavutil/rational.h>
|
#include <libavutil/rational.h>
|
||||||
|
@@ -1 +1 @@
|
|||||||
#include "../common/ca.h"
|
#include "ca.h"
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
#include <config.h>
|
|
||||||
#if HAVE_TRIPLEDRAGON
|
|
||||||
#include "../libtriple/playback_td.h"
|
|
||||||
#elif HAVE_SPARK_HARDWARE
|
|
||||||
#include "../libspark/playback_lib.h"
|
|
||||||
#else
|
|
||||||
#error neither HAVE_TRIPLEDRAGON nor HAVE_SPARK_HARDWARE defined
|
|
||||||
#endif
|
|
@@ -2,6 +2,7 @@ noinst_LTLIBRARIES = libspark.la
|
|||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/common \
|
-I$(top_srcdir)/common \
|
||||||
|
-I$(top_srcdir)/include \
|
||||||
-I$(top_srcdir)/libeplayer3/include
|
-I$(top_srcdir)/libeplayer3/include
|
||||||
|
|
||||||
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#ifndef _AUDIO_TD_H_
|
#ifndef _AUDIO_TD_H_
|
||||||
#define _AUDIO_TD_H_
|
#define _AUDIO_TD_H_
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <linux/dvb/dmx.h>
|
#include <linux/dvb/dmx.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
#define MAX_DMX_UNITS 4
|
#define MAX_DMX_UNITS 4
|
||||||
|
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
#define _VIDEO_TD_H
|
#define _VIDEO_TD_H
|
||||||
|
|
||||||
#include <linux/dvb/video.h>
|
#include <linux/dvb/video.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
#include "dmx_lib.h"
|
#include "dmx_lib.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@@ -2,6 +2,7 @@ noinst_LTLIBRARIES = libtriple.la
|
|||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/common \
|
-I$(top_srcdir)/common \
|
||||||
|
-I$(top_srcdir)/include \
|
||||||
@DIRECTFB_CFLAGS@
|
@DIRECTFB_CFLAGS@
|
||||||
|
|
||||||
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
#define _AUDIO_TD_H_
|
#define _AUDIO_TD_H_
|
||||||
|
|
||||||
#include <hardware/aud/aud_inf.h>
|
#include <hardware/aud/aud_inf.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
@@ -8,7 +8,7 @@ extern "C" {
|
|||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <hardware/xp/xp_osd_user.h>
|
#include <hardware/xp/xp_osd_user.h>
|
||||||
}
|
}
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
#if defined DMX_FILTER_SIZE
|
#if defined DMX_FILTER_SIZE
|
||||||
#undef DMX_FILTER_SIZE
|
#undef DMX_FILTER_SIZE
|
||||||
#endif
|
#endif
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
#include <hardware/vid/vid_inf.h>
|
#include <hardware/vid/vid_inf.h>
|
||||||
#define video_format_t vidDispSize_t
|
#define video_format_t vidDispSize_t
|
||||||
//#define video_displayformat_t vidDispMode_t
|
//#define video_displayformat_t vidDispMode_t
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
#include "dmx_td.h"
|
#include "dmx_td.h"
|
||||||
|
|
||||||
#define STB_HAL_VIDEO_HAS_GETSCREENIMAGE 1
|
#define STB_HAL_VIDEO_HAS_GETSCREENIMAGE 1
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
#define _AUDIO_LIB_H_
|
#define _AUDIO_LIB_H_
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <linux/dvb/dmx.h>
|
#include <linux/dvb/dmx.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
|
|
||||||
#define MAX_DMX_UNITS 4
|
#define MAX_DMX_UNITS 4
|
||||||
|
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <linux/dvb/video.h>
|
#include <linux/dvb/video.h>
|
||||||
#include "../common/cs_types.h"
|
#include <cs_types.h>
|
||||||
#include "dmx_lib.h"
|
#include "dmx_lib.h"
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <libavutil/rational.h>
|
#include <libavutil/rational.h>
|
||||||
|
Reference in New Issue
Block a user