libcs headers update

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2167 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 6be9b772ae
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-28 (Wed, 28 Mar 2012)



------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-03-28 16:16:09 +00:00
parent daafd2415d
commit 9bda0dbc34
3 changed files with 18 additions and 3 deletions

View File

@@ -141,12 +141,13 @@ public:
void getAudioInfo(int &Type, int &Layer, int &Freq, int &Bitrate, int &Mode); void getAudioInfo(int &Type, int &Layer, int &Freq, int &Bitrate, int &Mode);
void SetSRS(int iq_enable, int nmgr_enable, int iq_mode, int iq_level); void SetSRS(int iq_enable, int nmgr_enable, int iq_mode, int iq_level);
bool IsHdmiDDSupported(void); bool IsHdmiDDSupported(void);
void SetHdmiDD(HDMI_ENCODED_MODE type); void SetHdmiDD(bool On);
void SetSpdifDD(bool Enable); void SetSpdifDD(bool Enable);
void ScheduleMute(bool On); void ScheduleMute(bool On);
void EnableAnalogOut(bool Enable); void EnableAnalogOut(bool Enable);
bool GetHdmiAudioCaps(cs_audio_caps_t &caps); bool GetHdmiAudioCaps(cs_audio_caps_t &caps);
bool IsHdmiAudioFormatSupported(HDMI_AUDIO_FORMAT format); bool IsHdmiAudioFormatSupported(HDMI_AUDIO_FORMAT format);
void SetHdmiDD(HDMI_ENCODED_MODE type);
}; };
#endif //__AUDIO_CS_H_ #endif //__AUDIO_CS_H_

View File

@@ -5,6 +5,7 @@
/* */ /* */
/* (C) 2008 CoolStream International */ /* (C) 2008 CoolStream International */
/* */ /* */
/* $Id:: $ */
/*******************************************************************************/ /*******************************************************************************/
#ifndef __DEMUX_CS_H_ #ifndef __DEMUX_CS_H_
#define __DEMUX_CS_H_ #define __DEMUX_CS_H_
@@ -14,9 +15,12 @@
#define DEMUX_POLL_TIMEOUT 0 // timeout in ms #define DEMUX_POLL_TIMEOUT 0 // timeout in ms
#define MAX_FILTER_LENGTH 12 // maximum number of filters #define MAX_FILTER_LENGTH 12 // maximum number of filters
#ifndef DMX_FILTER_SIZE
#define DMX_FILTER_SIZE MAX_FILTER_LENGTH #ifdef DMX_FILTER_SIZE
#error
#endif #endif
#define DMX_FILTER_SIZE MAX_FILTER_LENGTH
#define MAX_DMX_UNITS 4 #define MAX_DMX_UNITS 4
typedef enum { typedef enum {

View File

@@ -5,6 +5,7 @@
/* */ /* */
/* (C) 2008 CoolStream International */ /* (C) 2008 CoolStream International */
/* */ /* */
/* $Id:: $ */
/*******************************************************************************/ /*******************************************************************************/
#ifndef __PLAYBACK_CS_H_ #ifndef __PLAYBACK_CS_H_
#define __PLAYBACK_CS_H_ #define __PLAYBACK_CS_H_
@@ -18,6 +19,14 @@ typedef enum {
class cPlaybackData; class cPlaybackData;
typedef struct {
bool enabled;
uint16_t pid;
uint16_t ac3flags;
std::string lang;
std::string codec_name;
} playback_audio_pid_info_t;
class cPlayback { class cPlayback {
private: private:
cPlaybackData * pd; cPlaybackData * pd;
@@ -50,6 +59,7 @@ public:
bool SetPosition(int position, bool absolute = false); bool SetPosition(int position, bool absolute = false);
bool IsPlaying(void) const { return playing; } bool IsPlaying(void) const { return playing; }
bool IsEnabled(void) const { return enabled; } bool IsEnabled(void) const { return enabled; }
void FindAllPids(playback_audio_pid_info_t *audiopids, uint16_t size, uint16_t *numpida);
void FindAllPids(uint16_t *apids, unsigned short *ac3flags, uint16_t *numpida, std::string *language); void FindAllPids(uint16_t *apids, unsigned short *ac3flags, uint16_t *numpida, std::string *language);
}; };