Package net.sourceforge.jaad.mp4.api

Examples of net.sourceforge.jaad.mp4.api.Track


  @Override
  public void decode(MP4InputStream in) throws IOException {
    super.decode(in);

    ipmpDescriptors = new ArrayList</*IPMP*/Descriptor>();
    /*IPMP*/Descriptor desc;
    while(getLeft(in)>0) {
      desc = (/*IPMP*/Descriptor) ObjectDescriptor.createDescriptor(in);
      ipmpDescriptors.add(desc);
    }
  }
View Full Code Here


        }
    }

    //TODO: implement other entry descriptors
  protected void findDecoderSpecificInfo(ESDBox esds) {
    final Descriptor ed = esds.getEntryDescriptor();
    final List<Descriptor> children = ed.getChildren();
    List<Descriptor> children2;

    for(Descriptor e : children) {
      children2 = e.getChildren();
      for(Descriptor e2 : children2) {
View Full Code Here

TOP

Related Classes of net.sourceforge.jaad.mp4.api.Track

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.