aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/pmt.h
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-11-29 14:10:30 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-29 14:10:30 +0100
commit26e11cd67e0bbfebd41b860a008f240d3d1b3052 (patch)
tree315b51ee43b4675d20025b602cd532343337f8e5 /lib/dvb/pmt.h
parent75a14a64a63132874f26b4715cde33e69dbf4b34 (diff)
downloadenigma2-26e11cd67e0bbfebd41b860a008f240d3d1b3052.tar.gz
enigma2-26e11cd67e0bbfebd41b860a008f240d3d1b3052.zip
use std::list instead of std::set for caid/capid pairs to support duplicate caids
refs #621
Diffstat (limited to 'lib/dvb/pmt.h')
-rw-r--r--lib/dvb/pmt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/pmt.h b/lib/dvb/pmt.h
index 4a506a41..40a226ef 100644
--- a/lib/dvb/pmt.h
+++ b/lib/dvb/pmt.h
@@ -191,7 +191,7 @@ public:
std::vector<audioStream> audioStreams;
int defaultAudioStream;
std::vector<subtitleStream> subtitleStreams;
- std::set<capid_pair> caids;
+ std::list<capid_pair> caids;
int pcrPid;
int pmtPid;
int textPid;