libtriple: add getPesPids() and removePid() to cDemux

Origin commit data
------------------
Commit: 7ff71707c0
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2011-02-05 (Sat, 05 Feb 2011)
This commit is contained in:
Stefan Seyfried
2011-02-05 11:54:04 +01:00
parent 387ded0096
commit ba0c080ab1
2 changed files with 26 additions and 1 deletions

View File

@@ -54,7 +54,10 @@ class cDemux
void addPid(unsigned short pid);
void getSTC(int64_t * STC);
int getUnit(void);
int getFD(void) { return fd; }; /* needed by cPlayback class */
// TD only functions
int getFD(void) { return fd; }; /* needed by cPlayback class */
void removePid(unsigned short Pid); /* needed by cRecord class */
std::vector<pes_pids> getPesPids(void) { return pesfds; };
//
cDemux(int num = 0);
~cDemux();