lib/libcoolstream/playback_cs.h: new header

This commit is contained in:
[CST] Focus
2013-05-10 18:19:48 +04:00
parent 49cfbb60c0
commit 83c7de004e

View File

@@ -11,6 +11,8 @@
#define __PLAYBACK_CS_H_
#include <string>
#include <stdint.h>
#include <vector>
typedef enum {
PLAYMODE_TS = 0,
@@ -61,7 +63,9 @@ public:
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 FindAllSubs(uint16_t *pids, unsigned short *supported, uint16_t *numpida, std::string *language);
bool SelectSubtitles(int pid);
void GetChapters(std::vector<int> &positions, std::vector<std::string> &titles);
};
#endif // __PLAYBACK_CS_H_