Examples of information()


Examples of net.fec.openrq.decoder.SourceBlockDecoder.information()

            for (int n = 0; n < K / 3; n++) {
                final EncodingPacket pac = sbEnc.sourcePacket(n);
                sbDec.putEncodingPacket(pac);
            }
            // insert decoder with a few source symbols
            list.add(new Object[] {sbDec.information(), true});

            for (int n = K; n < 3 * K / 2; n++) {
                final EncodingPacket pac = sbEnc.repairPacket(n);
                sbDec.putEncodingPacket(pac);
            }
View Full Code Here

Examples of net.fec.openrq.decoder.SourceBlockDecoder.information()

            for (int n = K; n < 3 * K / 2; n++) {
                final EncodingPacket pac = sbEnc.repairPacket(n);
                sbDec.putEncodingPacket(pac);
            }
            // insert decoder with a few source and repair symbols
            list.add(new Object[] {sbDec.information(), true});

            for (int n = 3 * K / 2;; n++) {
                final EncodingPacket pac = sbEnc.repairPacket(n);
                sbDec.putEncodingPacket(pac);
                if (sbDec.latestState() != SourceBlockState.INCOMPLETE) {
View Full Code Here

Examples of net.fec.openrq.decoder.SourceBlockDecoder.information()

                if (sbDec.latestState() != SourceBlockState.INCOMPLETE) {
                    break;
                }
            }
            // insert decoder already decoded or with a decoding failure
            list.add(new Object[] {sbDec.information(), true});
        }

        final int KforZeroSBN = DataUtils.getK(FEC_PARAMS, 0);

        final Set<Integer> empty = Collections.emptySet();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.