Package vavi.sound.smaf

Examples of vavi.sound.smaf.SmafMessage


    /** */
    public List<SmafEvent> getSmafEvents() {
        List<SmafEvent> events = new ArrayList<SmafEvent>();

        for (Chunk streamWaveDataChunk : streamWaveDataChunks) {
            SmafMessage smafMessage = ((StreamWaveDataChunk) streamWaveDataChunk).toSmafMessage();
            events.add(new SmafEvent(smafMessage, 0l));
        }

        return events;
    }
View Full Code Here

TOP

Related Classes of vavi.sound.smaf.SmafMessage

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.