mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
libspark: rename files to common names
This commit is contained in:
@@ -1,18 +1,18 @@
|
|||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
@DIRECTFB_CFLAGS@
|
@DIRECTFB_CFLAGS@
|
||||||
|
|
||||||
noinst_LIBRARIES = libtriple.a
|
noinst_LIBRARIES = libspark.a
|
||||||
|
|
||||||
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
AM_CXXFLAGS = -fno-rtti -fno-exceptions -fno-strict-aliasing
|
||||||
|
|
||||||
libtriple_a_SOURCES = \
|
libspark_a_SOURCES = \
|
||||||
lt_dfbinput.cpp \
|
lt_dfbinput.cpp \
|
||||||
lt_debug.cpp \
|
lt_debug.cpp \
|
||||||
dmx_td.cpp \
|
dmx.cpp \
|
||||||
ca.cpp \
|
ca.cpp \
|
||||||
video_td.cpp \
|
video.cpp \
|
||||||
audio_td.cpp \
|
audio.cpp \
|
||||||
init_td.cpp \
|
init.cpp \
|
||||||
playback_td.cpp \
|
playback.cpp \
|
||||||
pwrmngr.cpp \
|
pwrmngr.cpp \
|
||||||
record_td.cpp
|
record.cpp
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include <hardware/tddevices.h>
|
#include <hardware/tddevices.h>
|
||||||
#include <avs/avs_inf.h>
|
#include <avs/avs_inf.h>
|
||||||
#define AUDIO_DEVICE "/dev/" DEVICE_NAME_AUDIO
|
#define AUDIO_DEVICE "/dev/" DEVICE_NAME_AUDIO
|
||||||
#include "audio_td.h"
|
#include "audio_lib.h"
|
||||||
#include "lt_debug.h"
|
#include "lt_debug.h"
|
||||||
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_AUDIO, this, args)
|
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_AUDIO, this, args)
|
||||||
#define lt_info(args...) _lt_info(TRIPLE_DEBUG_AUDIO, this, args)
|
#define lt_info(args...) _lt_info(TRIPLE_DEBUG_AUDIO, this, args)
|
@@ -4,7 +4,7 @@
|
|||||||
#ifndef __CS_API_H_
|
#ifndef __CS_API_H_
|
||||||
#define __CS_API_H_
|
#define __CS_API_H_
|
||||||
|
|
||||||
#include "init_td.h"
|
#include "init_lib.h"
|
||||||
typedef void (*cs_messenger) (unsigned int msg, unsigned int data);
|
typedef void (*cs_messenger) (unsigned int msg, unsigned int data);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
@@ -9,11 +9,11 @@
|
|||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <hardware/tddevices.h>
|
#include <hardware/tddevices.h>
|
||||||
#include "dmx_td.h"
|
#include "dmx_lib.h"
|
||||||
#include "lt_debug.h"
|
#include "lt_debug.h"
|
||||||
|
|
||||||
/* Ugh... see comment in destructor for details... */
|
/* Ugh... see comment in destructor for details... */
|
||||||
#include "video_td.h"
|
#include "video_lib.h"
|
||||||
extern cVideo *videoDecoder;
|
extern cVideo *videoDecoder;
|
||||||
|
|
||||||
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_DEMUX, this, args)
|
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_DEMUX, this, args)
|
@@ -1 +1 @@
|
|||||||
#include "dmx_td.h"
|
#include "dmx_lib.h"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "init_td.h"
|
#include "init_lib.h"
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
@@ -1,2 +1,2 @@
|
|||||||
#warning using init_cs.h from libtriple
|
#warning using init_cs.h from libspark
|
||||||
#include "init_td.h"
|
#include "init_lib.h"
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
#include "lt_dfbinput.h"
|
#include "lt_dfbinput.h"
|
||||||
|
|
||||||
/* needed for videodecoder watchdog */
|
/* needed for videodecoder watchdog */
|
||||||
#include "video_td.h"
|
#include "video_lib.h"
|
||||||
extern cVideo *videoDecoder;
|
extern cVideo *videoDecoder;
|
||||||
|
|
||||||
/* same defines as in neutrino's rcinput.h */
|
/* same defines as in neutrino's rcinput.h */
|
||||||
|
@@ -6,10 +6,10 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include "playback_td.h"
|
#include "playback_lib.h"
|
||||||
#include "dmx_td.h"
|
#include "dmx_lib.h"
|
||||||
#include "audio_td.h"
|
#include "audio_lib.h"
|
||||||
#include "video_td.h"
|
#include "video_lib.h"
|
||||||
#include "lt_debug.h"
|
#include "lt_debug.h"
|
||||||
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_PLAYBACK, this, args)
|
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_PLAYBACK, this, args)
|
||||||
#define lt_info(args...) _lt_info(TRIPLE_DEBUG_PLAYBACK, this, args)
|
#define lt_info(args...) _lt_info(TRIPLE_DEBUG_PLAYBACK, this, args)
|
@@ -1 +0,0 @@
|
|||||||
#include "playback_td.h"
|
|
@@ -6,7 +6,7 @@
|
|||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include "record_td.h"
|
#include "record_lib.h"
|
||||||
#include "lt_debug.h"
|
#include "lt_debug.h"
|
||||||
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_RECORD, this, args)
|
#define lt_debug(args...) _lt_debug(TRIPLE_DEBUG_RECORD, this, args)
|
||||||
#define lt_info(args...) _lt_info(TRIPLE_DEBUG_RECORD, this, args)
|
#define lt_info(args...) _lt_info(TRIPLE_DEBUG_RECORD, this, args)
|
@@ -2,7 +2,7 @@
|
|||||||
#define __RECORD_TD_H
|
#define __RECORD_TD_H
|
||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include "dmx_td.h"
|
#include "dmx_lib.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
RECORD_RUNNING,
|
RECORD_RUNNING,
|
@@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
#include <avs/avs_inf.h>
|
#include <avs/avs_inf.h>
|
||||||
#include <clip/clipinfo.h>
|
#include <clip/clipinfo.h>
|
||||||
#include "video_td.h"
|
#include "video_lib.h"
|
||||||
#include <hardware/tddevices.h>
|
#include <hardware/tddevices.h>
|
||||||
#define VIDEO_DEVICE "/dev/" DEVICE_NAME_VIDEO
|
#define VIDEO_DEVICE "/dev/" DEVICE_NAME_VIDEO
|
||||||
#include "lt_debug.h"
|
#include "lt_debug.h"
|
Reference in New Issue
Block a user