Skip to content

Commit 2e9e7f5

Browse files
committed
Revert changes
1 parent 1ac113a commit 2e9e7f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/il2p_payload.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ int il2p_encode_payload (unsigned char *payload, int payload_size, int max_fec,
182182
encoded_length += ipp.parity_symbols_per_block;
183183
}
184184

185-
186185
return (encoded_length);
187186

188187
} // end il2p_encode_payload
@@ -203,14 +202,14 @@ int il2p_encode_payload (unsigned char *payload, int payload_size, int max_fec,
203202
* Outputs: payload_out Recovered payload.
204203
*
205204
* In/Out: symbols_corrected Number of symbols corrected.
206-
*
205+
*
207206
*
208207
* Returns: Number of bytes extracted. Should be same as payload_size going in.
209208
* -3 for unexpected internal inconsistency.
210209
* -2 for unable to recover from signal corruption.
211210
* -1 for invalid size.
212211
* 0 for no blocks. (i.e. size zero)
213-
*
212+
*
214213
* Description: Each block is scrambled separately but the LSFR state is carried
215214
* from the first payload block to the next.
216215
*
@@ -219,6 +218,7 @@ int il2p_encode_payload (unsigned char *payload, int payload_size, int max_fec,
219218
int il2p_decode_payload (unsigned char *received, int payload_size, int max_fec, unsigned char *payload_out, int *symbols_corrected)
220219
{
221220
// Determine number of blocks and sizes.
221+
222222
il2p_payload_properties_t ipp;
223223
int e;
224224
e = il2p_payload_compute (&ipp, payload_size, max_fec);

0 commit comments

Comments
 (0)