summaryrefslogtreecommitdiff
path: root/dvbdevice.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-03-07 09:51:06 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-03-07 09:51:06 +0100
commit16c931453db9723cee36d2b51502558fcd1921c5 (patch)
treef931050b8f2e3cdf3aeed795acc425ed80ef1243 /dvbdevice.h
parent0a0db91018c0efb9664c50b03cb6e6c1e32c084d (diff)
downloadvdr-16c931453db9723cee36d2b51502558fcd1921c5.tar.gz
vdr-16c931453db9723cee36d2b51502558fcd1921c5.tar.bz2
Renamed the "plp id" to a more general "stream id" and added support for DVB-S2 "Input Stream Identifier" (ISI)
Diffstat (limited to 'dvbdevice.h')
-rw-r--r--dvbdevice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dvbdevice.h b/dvbdevice.h
index 3674a615..b4d07f58 100644
--- a/dvbdevice.h
+++ b/dvbdevice.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.h 2.28 2013/02/16 15:20:17 kls Exp $
+ * $Id: dvbdevice.h 2.29 2013/03/07 09:42:29 kls Exp $
*/
#ifndef __DVBDEVICE_H
@@ -69,7 +69,7 @@ private:
int guard;
int hierarchy;
int rollOff;
- int plpId;
+ int streamId;
int PrintParameter(char *p, char Name, int Value) const;
const char *ParseParameter(const char *s, int &Value, const tDvbParameterMap *Map = NULL);
public:
@@ -85,7 +85,7 @@ public:
int Guard(void) const { return guard; }
int Hierarchy(void) const { return hierarchy; }
int RollOff(void) const { return rollOff; }
- int PlpId(void) const { return plpId; }
+ int StreamId(void) const { return streamId; }
void SetPolarization(char Polarization) { polarization = Polarization; }
void SetInversion(int Inversion) { inversion = Inversion; }
void SetBandwidth(int Bandwidth) { bandwidth = Bandwidth; }
@@ -97,7 +97,7 @@ public:
void SetGuard(int Guard) { guard = Guard; }
void SetHierarchy(int Hierarchy) { hierarchy = Hierarchy; }
void SetRollOff(int RollOff) { rollOff = RollOff; }
- void SetPlpId(int PlpId) { plpId = PlpId; }
+ void SetStreamId(int StreamId) { streamId = StreamId; }
cString ToString(char Type) const;
bool Parse(const char *s);
};