Track.java
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. package com.axiosys.bento4;
  2. public class Track {
  3.     public static final Type TYPE_UNKNOWN = new Type("Unknown");
  4.     public static final Type TYPE_AUDIO   = new Type("Audio");
  5.     public static final Type TYPE_VIDEO   = new Type("Video");
  6.     public static final Type TYPE_HINT    = new Type("Hint");
  7.     public static final Type TYPE_SYSTEMS = new Type("Systems");
  8.     public static class Type {
  9.         public static final int SOUN = 0x736f756e;
  10.         public static final int VIDE = 0x76696465;
  11.         public static final int HINT = 0x68696e74;
  12.         public static final int SDSM = 0x7364736d;
  13.         public static final int ODSM = 0x6f64736d;
  14.         
  15.         private String description;
  16.         
  17.         public static Type findType(int handlerType) {
  18.             switch (handlerType) {
  19.                 case SOUN: return TYPE_AUDIO;
  20.                 case VIDE: return TYPE_VIDEO;
  21.                 case HINT: return TYPE_HINT;
  22.                 case SDSM:
  23.                 case ODSM: return TYPE_SYSTEMS;
  24.                 default:   return TYPE_UNKNOWN;
  25.             }
  26.         }
  27.         
  28.         public Type(String description) {
  29.             this.description = description;
  30.         }
  31.         
  32.         public String toString() {
  33.             return description;
  34.         }
  35.     }
  36.         
  37.     private Type     type;
  38.     private TrakAtom trakAtom;
  39.     
  40.     public Track(TrakAtom trak) {
  41.         trakAtom = trak;
  42.         HdlrAtom hdlr = (HdlrAtom)trak.findAtom("mdia/hdlr");
  43.         if (hdlr != null) {
  44.             type = Type.findType(hdlr.getHandlerType());
  45.         } else {
  46.             type = TYPE_UNKNOWN;
  47.         }
  48.     }
  49.     
  50.     public Type getType() {
  51.         return type;
  52.     }
  53.     
  54.     public int getId() {
  55.         return trakAtom.getId();
  56.     }
  57.     
  58.     public TrakAtom getTrakAtom() {
  59.         return trakAtom;
  60.     }
  61. }