Package vavi.sound.smaf.message.graphics

Examples of vavi.sound.smaf.message.graphics.UserMessage


              } break;
            case 0x22: { // control event
                int size = readOneToTwo(is);
                byte[] data = new byte[size];
                read(is, data);
                smafMessage = new UserMessage(duration, data);
              } break;
            case 0x40: { // display object event
                int size = readOneToTwo(is);
                byte[] data = new byte[size];
                read(is, data);
View Full Code Here

TOP

Related Classes of vavi.sound.smaf.message.graphics.UserMessage

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.