diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-29 14:10:30 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-29 14:10:30 +0100 |
| commit | 26e11cd67e0bbfebd41b860a008f240d3d1b3052 (patch) | |
| tree | 315b51ee43b4675d20025b602cd532343337f8e5 /lib/dvb/pmt.h | |
| parent | 75a14a64a63132874f26b4715cde33e69dbf4b34 (diff) | |
| download | enigma2-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.h | 2 |
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; |
