Package net.fec.openrq.util.rq

Examples of net.fec.openrq.util.rq.IntermediateSymbolsDecoder.decode()


        final byte[][] D = initVectorD();

        // first try to obtain an optimized decoder that supports Kprime
        final IntermediateSymbolsDecoder isd = ISDManager.get(Kprime);
        if (isd != null) {
            return isd.decode(D);
        }
        else { // if no optimized decoder is available, fall back to the standard decoding process

            // generate LxL Constraint Matrix
            ByteMatrix constraint_matrix = LinearSystem.generateConstraintMatrix(Kprime); // A
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.