Package quicktime.std.clocks

Examples of quicktime.std.clocks.TimeBase


/* 114 */     this.m = paramMovie;
/* 115 */     if (this.m != null) {
/* 116 */       this.theTimeBase = this.m.getTimeBase();
/* 117 */       this.isTimerTicking = (this.theTimeBase.getEffectiveRate() != 0.0F);
/*     */     } else {
/* 119 */       this.theTimeBase = new TimeBase();
/* 120 */       this.theTimeBase.setStartTime(new TimeRecord());
/* 121 */       TimeRecord localTimeRecord = new TimeRecord();
/* 122 */       localTimeRecord.setValue(86400L);
/* 123 */       localTimeRecord.setScale(1);
/* 124 */       this.theTimeBase.setStopTime(localTimeRecord);
View Full Code Here


/* 272 */     this.mat.setTy(localQDRect.getY());
/* 273 */     this.effectSequence = new DSequence(this.effectDesc, this.effectSamplePtr, getGWorld(), null, this.mat, getClip(), 0, 512, null);
/*     */
/* 284 */     if (this.gMode != null) this.effectSequence.setGraphicsMode(this.gMode);
/*     */
/* 287 */     this.tb = new TimeBase();
/* 288 */     this.tb.setRate(0.0F);
/* 289 */     this.effectSequence.setTimeBase(this.tb);
/* 290 */     return true;
/*     */   }
View Full Code Here

TOP

Related Classes of quicktime.std.clocks.TimeBase

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.