sectionsd: remove never used var &6 init var

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2080 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Commit: 369e67d26c
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-02-01 (Wed, 01 Feb 2012)
This commit is contained in:
Jacek Jendrzej
2012-02-01 13:00:25 +00:00
parent 49355fe6de
commit cfc3e93449
5 changed files with 15 additions and 17 deletions

View File

@@ -91,7 +91,7 @@ struct service_list_entry {
unsigned service_id_lo : 8;
unsigned service_type : 8;
} __attribute__ ((packed)) ;
#if 0
struct digplus_order_entry {
unsigned service_id_hi : 8;
unsigned service_id_lo : 8;
@@ -115,7 +115,7 @@ struct bskyb_bid {
unsigned unknown1 : 8;
unsigned unknown2 : 8;
} __attribute__ ((packed)) ;
#endif
struct private_data_specifier {
unsigned byte1 : 8;
unsigned byte2 : 8;
@@ -1510,13 +1510,13 @@ int SIsections :: readSections(const unsigned short pid, const unsigned char fil
// Jetzt erstellen wir eine Liste der fehlenden Sections
unsigned short actualTableIDextension = (unsigned short) -1;
unsigned char actualTableID = (unsigned char) -1;
unsigned char maxNr = 0;
// unsigned char maxNr = 0;
unsigned char lastNr = 0;
for (SIsections::iterator k = begin(); k != end(); k++) {
if ((k->tableIDextension() != actualTableIDextension) || (k->tableID() != actualTableID)) {
// Neue Table-ID-Extension
maxNr = k->lastSectionNumber();
// maxNr = k->lastSectionNumber();
actualTableIDextension = k->tableIDextension();
actualTableID = k->tableID();
}