libeplayer3: add support for teletext and dvbsubtitle streams

Origin commit data
------------------
Branch: master
Commit: 92731e6fe3
Author: martii <you@example.com>
Date: 2012-08-04 (Sat, 04 Aug 2012)


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

------------------
This commit was generated by Migit
This commit is contained in:
martii
2012-08-04 13:31:28 +02:00
parent 94c012cb91
commit 826a826f82
17 changed files with 1356 additions and 6 deletions

View File

@@ -40,12 +40,20 @@
extern Manager_t AudioManager;
extern Manager_t VideoManager;
extern Manager_t SubtitleManager;
#ifdef MARTII
extern Manager_t DvbSubtitleManager;
extern Manager_t TeletextManager;
#endif
ManagerHandler_t ManagerHandler = {
"ManagerHandler",
&AudioManager,
&VideoManager,
&SubtitleManager
#ifdef MARTII
, &DvbSubtitleManager
, &TeletextManager
#endif
};
/* ***************************** */