Examples of HandlerBox


Examples of net.sourceforge.jaad.mp4.boxes.impl.HandlerBox

    }
  }

  //TODO: support hint and meta
  private Track createTrack(Box trak) {
    final HandlerBox hdlr = (HandlerBox) trak.getChild(BoxTypes.MEDIA_BOX).getChild(BoxTypes.HANDLER_BOX);
    final Track track;
    switch((int) hdlr.getHandlerType()) {
      case HandlerBox.TYPE_VIDEO:
        track = new VideoTrack(trak, in);
        break;
      case HandlerBox.TYPE_SOUND:
        track = new AudioTrack(trak, in);
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.