Package quicktime.std.qtcomponents

Examples of quicktime.std.qtcomponents.TimeCodeDescription


    frameNums[0] = EndianOrder.flipNativeToBigEndian32(frameNumber);
    QTHandle frameNumHandle = new QTHandle (4, false);
    frameNumHandle.copyFromArray(0, frameNums, 0, 1);

    // create a time code description (sample to be added)
    TimeCodeDescription tcDesc = new TimeCodeDescription();
    tcDesc.setTimeCodeDef (tcDef);

    // add the sample to the TimeCodeMedia
    tcMedia.beginEdits();
    tcMedia.addSample(frameNumHandle, 0, frameNumHandle.getSize(),
      movie.getDuration(), tcDesc, 1, 0);
View Full Code Here


/*    */   }
/*    */
/*    */   final SampleDescription makeDescription()
/*    */     throws QTException
/*    */   {
/* 56 */     return new TimeCodeDescription();
/*    */   }
View Full Code Here

/*    */   }
/*    */
/*    */   public TimeCodeDescription getTimeCodeDescription(int paramInt)
/*    */     throws QTException
/*    */   {
/* 82 */     TimeCodeDescription localTimeCodeDescription = new TimeCodeDescription();
/* 83 */     getNativeSampleDescription(paramInt, localTimeCodeDescription);
/* 84 */     return localTimeCodeDescription;
/*    */   }
View Full Code Here

TOP

Related Classes of quicktime.std.qtcomponents.TimeCodeDescription

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.