Package quicktime.std

Examples of quicktime.std.StdQTException


/*     */   }
/*     */
/*     */   private void setOwner(SequenceGrabber paramSequenceGrabber)
/*     */     throws StdQTException
/*     */   {
/*  71 */     if (paramSequenceGrabber == null) throw new StdQTException(-50);
/*  72 */     this.owner = paramSequenceGrabber;
/*     */   }
View Full Code Here


/*  72 */     this.owner = paramSequenceGrabber;
/*     */   }
/*     */
/*     */   void disposeChannel(SequenceGrabber paramSequenceGrabber) throws StdQTException {
/*  76 */     if (this.owner != paramSequenceGrabber) {
/*  77 */       throw new StdQTException(-50);
/*     */     }
/*  79 */     StdQTException.checkError(SGDisposeChannel(QTObject.ID(this.owner), _ID()));
/*     */
/*  82 */     this.owner = null;
/*     */   }
View Full Code Here

/*    */
/*    */   public SGDeviceName getDeviceName(int paramInt)
/*    */     throws StdQTException
/*    */   {
/* 61 */     if ((paramInt < 0) || (paramInt >= getShortAt(0)))
/* 62 */       throw new StdQTException(-50);
/* 63 */     SGDeviceName localSGDeviceName = new SGDeviceName();
/* 64 */     copyToArray(8 + 80 * paramInt, localSGDeviceName.getBytes(), 0, 80);
/* 65 */     return localSGDeviceName;
/*    */   }
View Full Code Here

/*    */   public CodecName getNth(int paramInt)
/*    */     throws StdQTException
/*    */   {
/* 65 */     if (paramInt > getCount())
/*    */     {
/* 67 */       throw new StdQTException("CodecName.getNth");
/*    */     }
/* 69 */     return new CodecName(_ID() + 2 + 44 * paramInt, this);
/*    */   }
View Full Code Here

/*     */
/*     */   private static int allocate(QDGraphics paramQDGraphics)
/*     */     throws QTException
/*     */   {
/*  41 */     if (paramQDGraphics == null) {
/*  42 */       throw new StdQTException(-50);
/*     */     }
/*  44 */     int i = 0;
/*  45 */     synchronized (QTNative.globalsLock) {
/*  46 */       if ((QTSession.isCurrentOS(1)) || (QTSession.isCurrentOS(4)))
/*  47 */         GetGWorld(savedPort, savedDevice);
View Full Code Here

/*     */   {
/* 126 */     int[] arrayOfInt = new int[1];
/* 127 */     int i = 0;
/*     */
/* 129 */     if (paramQDGraphics == null) {
/* 130 */       throw new StdQTException(-50);
/*     */     }
/* 132 */     synchronized (QTNative.globalsLock) {
/* 133 */       if ((QTSession.isCurrentOS(1)) || (QTSession.isCurrentOS(4))) {
/* 134 */         GetGWorld(savedPort, savedDevice);
/*     */       }
View Full Code Here

/*     */   {
/* 188 */     int[] arrayOfInt = { 0 };
/* 189 */     int i = -50;
/*     */
/* 191 */     if (paramQDGraphics == null) {
/* 192 */       throw new StdQTException(-50);
/*     */     }
/* 194 */     synchronized (QTNative.globalsLock) {
/* 195 */       if ((QTSession.isCurrentOS(1)) || (QTSession.isCurrentOS(4)))
/* 196 */         GetGWorld(savedPort, savedDevice);
/* 197 */       SetGWorld(QTObject.ID(paramQDGraphics), 0);
View Full Code Here

/* 277 */     if ((paramEncodedImage instanceof IntEncodedImage))
/* 278 */       return decompressFrameS((IntEncodedImage)paramEncodedImage, paramInt);
/* 279 */     if ((paramEncodedImage instanceof ByteEncodedImage)) {
/* 280 */       return decompressFrameS((ByteEncodedImage)paramEncodedImage, paramInt);
/*     */     }
/* 282 */     throw new StdQTException(-50);
/*     */   }
View Full Code Here

/* 352 */     if ((paramEncodedImage instanceof IntEncodedImage))
/* 353 */       return decompressFrame((IntEncodedImage)paramEncodedImage, paramInt);
/* 354 */     if ((paramEncodedImage instanceof ByteEncodedImage)) {
/* 355 */       return decompressFrame((ByteEncodedImage)paramEncodedImage, paramInt);
/*     */     }
/* 357 */     throw new StdQTException(-50);
/*     */   }
View Full Code Here

/* 506 */     if ((paramEncodedImage instanceof IntEncodedImage))
/* 507 */       return decompressFrameWhen((IntEncodedImage)paramEncodedImage, paramInt, paramICMFrameTime);
/* 508 */     if ((paramEncodedImage instanceof ByteEncodedImage)) {
/* 509 */       return decompressFrameWhen((ByteEncodedImage)paramEncodedImage, paramInt, paramICMFrameTime);
/*     */     }
/* 511 */     throw new StdQTException(-50);
/*     */   }
View Full Code Here

TOP

Related Classes of quicktime.std.StdQTException

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.