Package org.apache.poi.hslf.record

Examples of org.apache.poi.hslf.record.ExVideoContainer


        break;
      default:
        throw new IllegalArgumentException("Unsupported Movie: " + type);
    }

    ExVideoContainer exVideo = mci.getExVideo();
    exVideo.getExMediaAtom().setMask(0xE80000);
    exVideo.getPathAtom().setText(path);

    int objectId = addToObjListAtom(mci);
    exVideo.getExMediaAtom().setObjectId(objectId);
   
    return objectId;
  }
View Full Code Here

TOP

Related Classes of org.apache.poi.hslf.record.ExVideoContainer

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.