Examples of DSequence


Examples of quicktime.std.image.DSequence

    // set up a drawing environment for coverting future frame images

    qdGraphics = new QDGraphics(imgDesc.getBounds());

    dSeq = new DSequence(imgDesc, qdGraphics, imgDesc.getBounds(), null, null, StdQTConstants.codecFlagUseImageBuffer, StdQTConstants.codecLosslessQuality,

        CodecComponent.bestFidelityCodec);

    // the sample will be decompressed into qdGraphics
View Full Code Here

Examples of quicktime.std.image.DSequence

/*     */   public void setGWorld(QDGraphics paramQDGraphics)
/*     */     throws QTException
/*     */   {
/* 180 */     this.port = paramQDGraphics;
/* 181 */     if (!QDGraphics.scratch.equals(paramQDGraphics)) {
/* 182 */       this.seq = new DSequence(this.mDesc, this.port, null, getMatrix(), null, this.flags, 768, CodecComponent.bestSpeedCodec);
/*     */
/* 190 */       if (this.gMode != null) setGraphicsMode(this.gMode);
/* 191 */       if (this.clip != null) setClip(this.clip);
/*     */     }
/* 193 */     else { this.seq = null; }
View Full Code Here

Examples of quicktime.std.image.DSequence

/* 223 */       (this.optimiseRedraw)) if (((i == 1919706400) || (i == 1918990112) || (i == 1902408311) || (i == 1885434984) || (ICMPixelFormatInfo.isValidPixelFormat(i)) ? 1 : 0) == 0)
/*     */       {
/* 229 */         Object localObject1 = null;
/*     */         try {
/* 231 */           QDGraphics localQDGraphics = new QDGraphics(new QDRect(paramImageDescription.getWidth(), paramImageDescription.getHeight()));
/* 232 */           DSequence localDSequence = new DSequence(paramImageDescription, localQDGraphics, null, null, null, 0, 768, CodecComponent.anyCodec);
/*     */
/* 240 */           localDSequence.decompressFrameS(paramEncodedImage, 0);
/* 241 */           PixMap localPixMap = localQDGraphics.getPixMap();
/* 242 */           this.mImageDescription = new ImageDescription(localPixMap);
/* 243 */           paramEncodedImage = localPixMap.getPixelData();
/*     */         } catch (QTException localQTException) {
/* 245 */           this.mImageDescription = paramImageDescription;
View Full Code Here

Examples of quicktime.std.image.DSequence

/*     */   {
/* 474 */     if ((this.mData != null) && (this.mImageDescription != null)) {
/* 475 */       if (QDGraphics.scratch.equals(paramQDGraphics)) {
/* 476 */         this.mImageSeq = null;
/*     */       } else {
/* 478 */         this.mImageSeq = new DSequence(this.mImageDescription, paramQDGraphics, null, getMatrix(), getClip(), 0, 768, CodecComponent.bestFidelityCodec);
/*     */
/* 486 */         setGraphicsMode(this.gMode);
/*     */       }
/*     */     }
/* 489 */     this.port = paramQDGraphics;
View Full Code Here

Examples of quicktime.std.image.DSequence

/* 268 */     if ((QDGraphics.scratch.equals(getGWorld())) || (this.effectSamplePtr == null) || (localQDRect == null)) {
/* 269 */       return false;
/*     */     }
/* 271 */     this.mat.setTx(localQDRect.getX());
/* 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);
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.