libeplayer3: add support for teletext and dvbsubtitle streams

This commit is contained in:
martii
2012-08-04 13:31:28 +02:00
parent 1bcc899430
commit 2627072d1d
14 changed files with 1271 additions and 6 deletions

View File

@@ -61,10 +61,16 @@ typedef struct Output_s {
extern Output_t LinuxDvbOutput;
extern Output_t SubtitleOutput;
#ifdef MARTII
extern Output_t PipeOutput;
#endif
static Output_t * AvailableOutput[] = {
&LinuxDvbOutput,
&SubtitleOutput,
#ifdef MARTII
&PipeOutput,
#endif
NULL
};
@@ -73,6 +79,10 @@ typedef struct OutputHandler_s {
Output_t * audio;
Output_t * video;
Output_t * subtitle;
#ifdef MARTII
Output_t * dvbsubtitle;
Output_t * teletext;
#endif
int (* Command) (/*Context_t*/void *, OutputCmd_t, void *);
} OutputHandler_t;