Examples of MixFile


Examples of ejmf.toolkit.util.MixFile

  * @param trackFile  A File reference of a MIX file.
  * @return 0 if file is successfully read, -1 otherwise.
  */
    public int read(File trackFile) {
  Debug.printObject("enter TrackModel.read :  " + trackFile.getName());
  MixFile mixFile = new MixFile(trackFile);

  try {
      MixFileData v = mixFile.read();

      // For each entry in MIX file, assign a Track.

      for (int i = 0; i < v.getNumberOfTracks(); i++) {
          MixTrackData d = (MixTrackData) v.getMixTrackData(i);
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.