#include <lib/dvb/pmt.h>
#include <lib/dvb/eit.h>
+#include <lib/base/filepush.h>
class eServiceFactoryDVB: public iServiceHandler
{
DECLARE_REF(eDVBServiceList);
public:
virtual ~eDVBServiceList();
- RESULT getContent(std::list<eServiceReference> &list);
+ RESULT getContent(std::list<eServiceReference> &list, bool sorted=false);
+ RESULT getContent(PyObject *list, bool sorted=false);
RESULT getNext(eServiceReference &ptr);
int compareLessEqual(const eServiceReference &a, const eServiceReference &b);
RESULT addService(eServiceReference &ref);
RESULT removeService(eServiceReference &ref);
RESULT moveService(eServiceReference &ref, int pos);
+ RESULT setListName(const std::string &name);
private:
RESULT startQuery();
eServiceReference m_parent;
class eDVBServicePlay: public iPlayableService, public iPauseableService,
public iSeekableService, public Object, public iServiceInformation,
public iAudioTrackSelection, public iFrontendStatusInformation,
- public iSubserviceList, public iTimeshiftService
+ public iSubserviceList, public iTimeshiftService,
+ public iCueSheet
{
DECLARE_REF(eDVBServicePlay);
public:
RESULT frontendStatusInfo(ePtr<iFrontendStatusInformation> &ptr);
RESULT subServices(ePtr<iSubserviceList> &ptr);
RESULT timeshift(ePtr<iTimeshiftService> &ptr);
+ RESULT cueSheet(ePtr<iCueSheet> &ptr);
// iPauseableService
RESULT pause();
RESULT seekRelative(int direction, pts_t to);
RESULT getPlayPosition(pts_t &pos);
RESULT setTrickmode(int trick=0);
+ RESULT isCurrentlySeekable();
// iServiceInformation
RESULT getName(std::string &name);
// iFrontendStatusInformation
int getFrontendInfo(int w);
+ PyObject *getFrontendData(bool);
// iSubserviceList
int getNumberOfSubservices();
// iTimeshiftService
RESULT startTimeshift();
RESULT stopTimeshift();
+ int isTimeshiftActive();
+ RESULT activateTimeshift();
+ // iCueSheet
+ PyObject *getCutList();
+ void setCutList(PyObject *);
+ void setCutListEnable(int enable);
+
private:
friend class eServiceFactoryDVB;
eServiceReference m_reference;
Signal2<void,iPlayableService*,int> m_event;
int m_is_pvr, m_is_paused, m_timeshift_enabled, m_timeshift_active;
+ int m_first_program_info;
std::string m_timeshift_file;
int m_timeshift_fd;
void switchToTimeshift();
void updateDecoder();
+
+ int m_skipmode;
+
+ ePtr<eCueSheet> m_cue;
+
+ struct cueEntry
+ {
+ pts_t where;
+ unsigned int what;
+
+ bool operator < (const struct cueEntry &o) const
+ {
+ return where < o.where;
+ }
+ cueEntry(const pts_t &where, unsigned int what) :
+ where(where), what(what)
+ {
+ }
+ };
+
+ std::multiset<cueEntry> m_cue_entries;
+ int m_cuesheet_changed, m_cutlist_enabled;
+
+ void loadCuesheet();
+ void saveCuesheet();
+
+ void cutlistToCuesheet();
};
#endif