Package com.itstherules.tags

Examples of com.itstherules.tags.AudioTag


 
  private void parseTag() {
    TagStore stor = new TagStore();
    switch (tagType) {
      case 8: // '\b'
        AudioTag at = new AudioTag(ioh);
        totalByteOffset += at.getDataSize();
        stor.setDataSize(at.getDataSize() - 15);
        totalAudioSize += at.getDataSize() - 4;
        audioDataSize += at.getDataSize() - 15;
        stor.setTimestamp(at.getTimestamp());
        stor.setType(tagType);
        stor.setTag(at);
        tags.add(stor);
        break;
      case 9: // '\t'
View Full Code Here

TOP

Related Classes of com.itstherules.tags.AudioTag

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.