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
------------------
Branch: ni/coolstream
Commit: 369e67d26c
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-02-01 (Wed, 01 Feb 2012)



------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2012-02-01 13:00:25 +00:00
parent 13afc4f95f
commit 17c12418ec
5 changed files with 15 additions and 17 deletions

View File

@@ -81,6 +81,7 @@ SIevent::SIevent(const t_original_network_id _original_network_id, const t_trans
eventID = _event_id; eventID = _event_id;
table_id = 0xFF; /* not set */ table_id = 0xFF; /* not set */
version = 0xFF; version = 0xFF;
running = 0;
/* contentClassification = ""; /* contentClassification = "";
userClassification = ""; userClassification = "";
itemDescription = ""; itemDescription = "";
@@ -336,7 +337,7 @@ void SIevent::dump(void) const
for_each(ratings.begin(), ratings.end(), printSIparentalRating()); for_each(ratings.begin(), ratings.end(), printSIparentalRating());
for_each(linkage_descs.begin(), linkage_descs.end(), printSIlinkage()); for_each(linkage_descs.begin(), linkage_descs.end(), printSIlinkage());
} }
#if 0
void SIevent::dumpSmall(void) const void SIevent::dumpSmall(void) const
{ {
for (std::map<std::string, std::string>::const_iterator it = langName.begin() ; for (std::map<std::string, std::string>::const_iterator it = langName.begin() ;
@@ -358,6 +359,7 @@ void SIevent::dumpSmall(void) const
for_each(ratings.begin(), ratings.end(), printSIparentalRating()); for_each(ratings.begin(), ratings.end(), printSIparentalRating());
for_each(linkage_descs.begin(), linkage_descs.end(), printSIlinkage()); for_each(linkage_descs.begin(), linkage_descs.end(), printSIlinkage());
} }
#endif
/* /*
// Liest n Bytes aus einem Socket per read // Liest n Bytes aus einem Socket per read
inline int readNbytes(int fd, char *buf, int n) inline int readNbytes(int fd, char *buf, int n)
@@ -520,7 +522,7 @@ void SIevents::removeOldEvents(long seconds)
// Set has the important property that inserting a new element into a set does not // Set has the important property that inserting a new element into a set does not
// invalidate iterators that point to existing elements. // invalidate iterators that point to existing elements.
if (copy_of_event.times.size() != 0) if (!copy_of_event.times.empty())
#ifdef DEBUG #ifdef DEBUG
assert((++insert(it, copy_of_event)) == it); assert((++insert(it, copy_of_event)) == it);
#else #else

View File

@@ -355,6 +355,7 @@ public:
vps = 0; vps = 0;
table_id = 0xFF; /* 0xFF means "not set" */ table_id = 0xFF; /* 0xFF means "not set" */
version = 0xFF; version = 0xFF;
running = 0;
// dauer=0; // dauer=0;
// startzeit=0; // startzeit=0;
} }

View File

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

View File

@@ -137,6 +137,7 @@ public:
original_network_id = _original_network_id; original_network_id = _original_network_id;
transport_stream_id = _transport_stream_id; transport_stream_id = _transport_stream_id;
serviceTyp=0; serviceTyp=0;
is_actual =0;
memset(&flags, 0, sizeof(flags)); memset(&flags, 0, sizeof(flags));
} }
// Std-Copy // Std-Copy

View File

@@ -803,7 +803,7 @@ static void addEvent(const SIevent &evt, const time_t zeit, bool cn = false)
on one German Sky channel and incomplete on another one. So we on one German Sky channel and incomplete on another one. So we
make sure to keep the complete event, if applicable. */ make sure to keep the complete event, if applicable. */
if ((already_exists) && (evt.components.size() > 0)) { if ((already_exists) && ( !evt.components.empty() )) {
if (si->second->components.size() != evt.components.size()) if (si->second->components.size() != evt.components.size())
already_exists = false; already_exists = false;
else { else {
@@ -823,7 +823,7 @@ static void addEvent(const SIevent &evt, const time_t zeit, bool cn = false)
} }
} }
if ((already_exists) && (evt.linkage_descs.size() > 0)) { if ((already_exists) && ( !evt.linkage_descs.empty() )) {
if (si->second->linkage_descs.size() != evt.linkage_descs.size()) if (si->second->linkage_descs.size() != evt.linkage_descs.size())
already_exists = false; already_exists = false;
else { else {
@@ -843,7 +843,7 @@ static void addEvent(const SIevent &evt, const time_t zeit, bool cn = false)
} }
} }
if ((already_exists) && (evt.ratings.size() > 0)) { if ((already_exists) && ( !evt.ratings.empty() )) {
if (si->second->ratings.size() != evt.ratings.size()) if (si->second->ratings.size() != evt.ratings.size())
already_exists = false; already_exists = false;
else { else {
@@ -2296,14 +2296,14 @@ static void findPrevNextSIevent(const event_id_t uniqueKey, SItime &zeit, SIeven
// connection-thread // connection-thread
// handles incoming requests // handles incoming requests
//--------------------------------------------------------------------- //---------------------------------------------------------------------
#if 0
struct connectionData struct connectionData
{ {
int connectionSocket; int connectionSocket;
struct sockaddr_in clientAddr; struct sockaddr_in clientAddr;
}; };
#endif
static void commandPauseScanning(int connfd, char *data, const unsigned dataLength) static void commandPauseScanning(int connfd, char *data, const unsigned dataLength)
{ {
if (dataLength != 4) if (dataLength != 4)
@@ -9443,7 +9443,6 @@ static void *cnThread(void *)
t_channel_id uniqueOld = 0; t_channel_id uniqueOld = 0;
bool found_already = false; bool found_already = false;
time_t azeit = time(NULL); time_t azeit = time(NULL);
std::string sname;
if(tv_mode) { if(tv_mode) {
serviceTyp1 = 0x01; serviceTyp1 = 0x01;
@@ -9471,7 +9470,6 @@ static void *cnThread(void *)
{ {
if (s->second->serviceTyp == serviceTyp1 || (serviceTyp2 && s->second->serviceTyp == serviceTyp2)) if (s->second->serviceTyp == serviceTyp1 || (serviceTyp2 && s->second->serviceTyp == serviceTyp2))
{ {
sname = s->second->serviceName;
found_already = false; found_already = false;
} }
} }
@@ -9488,10 +9486,6 @@ static void *cnThread(void *)
if ( !found_already ) if ( !found_already )
{ {
std::string eName = (*e)->getName();
std::string eText = (*e)->getText();
std::string eExtendedText = (*e)->getExtendedText();
for (SItimes::iterator t = (*e)->times.begin(); t != (*e)->times.end(); ++t) for (SItimes::iterator t = (*e)->times.begin(); t != (*e)->times.end(); ++t)
{ {
if (t->startzeit <= azeit && azeit <= (long)(t->startzeit + t->dauer)) if (t->startzeit <= azeit && azeit <= (long)(t->startzeit + t->dauer))