summaryrefslogtreecommitdiff
path: root/streamdevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'streamdevice.h')
-rw-r--r--streamdevice.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/streamdevice.h b/streamdevice.h
index 9bb2ff3..6cd3fa5 100644
--- a/streamdevice.h
+++ b/streamdevice.h
@@ -17,7 +17,7 @@
class cStreamDevice: public cDevice {
private:
- cPES2TSRemux *m_Remux;
+ cPESRemux *m_Remux;
protected:
public:
cStreamDevice(void);
@@ -47,6 +47,7 @@ public:
void Del(int Count) { m_Remux->DelOutput(Count); }
void ClearOutput() { m_Remux->ClearOutput(); }
int Available(void) { return m_Remux->Available(); }
+ int Free(void) { return m_Remux->Free(); }
};
#endif