Package net.fec.openrq.util.rq

Examples of net.fec.openrq.util.rq.IntermediateSymbolsDecoder


        // initialize the vector D with source data
        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

Related Classes of net.fec.openrq.util.rq.IntermediateSymbolsDecoder

Copyright © 2018 www.massapicom. 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.