summaryrefslogtreecommitdiffstats
path: root/src/DabMux.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-04-04 10:47:58 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-04-04 11:07:37 +0200
commit5953e2ce95dc0cb809d529c4103ae6b80f0248c0 (patch)
tree5ef857b37b4ab889e8d8f56c010283f77821a8c1 /src/DabMux.cpp
parent2e325d2c2a34ecda37636e67969ee1550e78fbba (diff)
downloaddabmux-5953e2ce95dc0cb809d529c4103ae6b80f0248c0.tar.gz
dabmux-5953e2ce95dc0cb809d529c4103ae6b80f0248c0.tar.bz2
dabmux-5953e2ce95dc0cb809d529c4103ae6b80f0248c0.zip
Remove some compilation warnings
Diffstat (limited to 'src/DabMux.cpp')
-rw-r--r--src/DabMux.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp
index 5baad39..275175b 100644
--- a/src/DabMux.cpp
+++ b/src/DabMux.cpp
@@ -273,14 +273,14 @@ int main(int argc, char *argv[])
vector<DabComponent*>::iterator component = ensemble->components.end();
vector<DabComponent*>::iterator componentProgFIG0_8;
vector<DabComponent*>::iterator componentFIG0_13;
- bool transmitFIG0_13programme; // Alternate between programme and data
+ bool transmitFIG0_13programme = false; // Alternate between programme and data
vector<DabComponent*>::iterator componentDataFIG0_8;
vector<dabSubchannel*>::iterator subchannel = ensemble->subchannels.end();
vector<dabSubchannel*>::iterator subchannelFIG0_1;
vector<dabOutput*>::iterator output;
dabProtection* protection = NULL;
- BaseRemoteController* rc;
+ BaseRemoteController* rc = NULL;
unsigned int currentFrame;
int returnCode = 0;
@@ -291,7 +291,7 @@ int main(int argc, char *argv[])
//FIC Length, DAB Mode I, II, IV -> FICL = 24, DAB Mode III -> FICL = 32
unsigned FICL = (ensemble->mode == 3 ? 32 : 24);
- unsigned long sync = 0x49C5F8;
+ uint32_t sync = 0x49C5F8;
unsigned short FLtmp = 0;
unsigned short nbBytesCRC = 0;
unsigned short CRCtmp = 0xFFFF;
@@ -1333,8 +1333,8 @@ int main(int argc, char *argv[])
if (figSize > 30 - 5) {
break;
}
- *((uint16_t*)&etiFrame[index]) =
- htons((*componentProgFIG0_8)->serviceId);
+ etiFrame[index] = ((*componentProgFIG0_8)->serviceId >> 8) & 0xFF;
+ etiFrame[index+1] = ((*componentProgFIG0_8)->serviceId) & 0xFF;
fig0->Length += 2;
index += 2;
figSize += 2;
@@ -1353,8 +1353,8 @@ int main(int argc, char *argv[])
if (figSize > 30 - 4) {
break;
}
- *((uint16_t*)&etiFrame[index]) =
- htons((*componentProgFIG0_8)->serviceId);
+ etiFrame[index] = ((*componentProgFIG0_8)->serviceId >> 8) & 0xFF;
+ etiFrame[index+1] = ((*componentProgFIG0_8)->serviceId) & 0xFF;
fig0->Length += 2;
index += 2;
figSize += 2;
@@ -1414,8 +1414,8 @@ int main(int argc, char *argv[])
if (figSize > 30 - 7) {
break;
}
- *((uint32_t*)&etiFrame[index]) =
- htonl((*componentDataFIG0_8)->serviceId);
+ etiFrame[index] = ((*componentDataFIG0_8)->serviceId >> 8) & 0xFF;
+ etiFrame[index+1] = ((*componentDataFIG0_8)->serviceId) & 0xFF;
fig0->Length += 4;
index += 4;
figSize += 4;
@@ -1434,8 +1434,8 @@ int main(int argc, char *argv[])
if (figSize > 30 - 6) {
break;
}
- *((uint32_t*)&etiFrame[index]) =
- htonl((*componentDataFIG0_8)->serviceId);
+ etiFrame[index] = ((*componentDataFIG0_8)->serviceId >> 8) & 0xFF;
+ etiFrame[index+1] = ((*componentDataFIG0_8)->serviceId) & 0xFF;
fig0->Length += 4;
index += 4;
figSize += 4;
@@ -1626,7 +1626,7 @@ int main(int argc, char *argv[])
fig0_9->Extension = 9;
fig0_9->ext = 0;
- fig0_9->lto = 0;
+ fig0_9->lto = 0; // Unique LTO for ensemble
fig0_9->ensembleLto = ensemble->lto;
fig0_9->ensembleEcc = ensemble->ecc;
fig0_9->tableId = ensemble->international_table;