MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / encode41

Method encode41

GSM/GSML1FEC.cpp:1116–1129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1114
1115
1116void SharedL1Encoder::encode41()
1117{
1118 // Perform the FEC encoding of GSM 05.03 4.1.2 and 4.1.3
1119
1120 // GSM 05.03 4.1.2
1121 // Generate the parity bits.
1122 mBlockCoder.writeParityWord(mD,mP);
1123 OBJLOG(DEBUG) << "XCCHL1Encoder u[]=" << mU;
1124 // GSM 05.03 4.1.3
1125 // Apply the convolutional encoder.
1126 //mU.encode(mVCoder,mC);
1127 mVCoder.encode(mU,mC);
1128 OBJLOG(DEBUG) << "XCCHL1Encoder c[]=" << mC;
1129}
1130
1131
1132

Callers

nothing calls this directly

Calls 1

encodeMethod · 0.45

Tested by

no test coverage detected