Package org.apache.flex.swf.tags

Examples of org.apache.flex.swf.tags.DefineVideoStreamTag


        bitStream.readUB(4); // reserved
        final int deblocking = bitStream.readUB(3);
        final boolean smoothing = bitStream.readBit();
        final int codecID = bitStream.readUI8();

        final DefineVideoStreamTag tag = new DefineVideoStreamTag();
        tag.setCharacterID(characterID);
        tag.setNumFrames(numFrames);
        tag.setWidth(width);
        tag.setHeight(height);
        tag.setDeblocking(deblocking);
        tag.setSmoothing(smoothing);
        tag.setCodecID(codecID);
        return tag;
    }
View Full Code Here

TOP

Related Classes of org.apache.flex.swf.tags.DefineVideoStreamTag

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.