final List<Object[]> list = new ArrayList<>();
final DataEncoder dataEnc = OpenRQ.newEncoder(new byte[FEC_PARAMS.dataLengthAsInt()], FEC_PARAMS);
final DataDecoder dataDec = OpenRQ.newDecoder(FEC_PARAMS, 0);
for (SourceBlockDecoder sbDec : dataDec.sourceBlockIterable()) {
// insert empty decoder
list.add(new Object[] {sbDec.information(), true});
}
for (SourceBlockEncoder sbEnc : dataEnc.sourceBlockIterable()) {