libspark: rename files to common names

Origin commit data
------------------
Branch: master
Commit: 00fe1f2ed4
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-02 (Thu, 02 Feb 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2012-02-02 07:45:32 +01:00
parent 722db64e2e
commit dc0bc30cd7
18 changed files with 24 additions and 25 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -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

View File

@@ -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)

View File

@@ -1 +1 @@
#include "dmx_td.h" #include "dmx_lib.h"

View File

@@ -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>

View File

@@ -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"

View File

@@ -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 */

View File

@@ -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)

View File

@@ -1 +0,0 @@
#include "playback_td.h"

View File

@@ -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)

View File

@@ -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,

View File

@@ -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"