Examples of copyFromArray()


Examples of quicktime.util.QTHandle.copyFromArray()

/*     */
/*     */   public AtomContainer getVRWorld() throws QTException {
/*  95 */     int i = getSize() - 16;
/*  96 */     QTHandle localQTHandle = new QTHandle(i, false);
/*     */
/*  98 */     localQTHandle.copyFromArray(0, getBytes(), 16, i);
/*     */
/* 100 */     return AtomContainer.fromQTHandle(localQTHandle);
/*     */   }
/*     */ }

View Full Code Here

Examples of quicktime.util.QTHandle.copyFromArray()

/*      */       }
/*      */     }
/*      */     else
/*      */     {
/*  592 */       QTHandle localQTHandle = new QTHandle(i, false);
/*  593 */       localQTHandle.copyFromArray(0, paramString.getBytes(), 0, i);
/*  594 */       localUserData.setDataItem(localQTHandle.toQTPointer(), 1851878757, 1);
/*      */     }
/*      */   }
/*      */
/*      */   public Matrix getDisplayMatrix()
View Full Code Here

Examples of quicktime.util.QTHandle.copyFromArray()

/*     */
/*     */   public static void registerAccessKey(String paramString1, int paramInt, String paramString2)
/*     */     throws QTException
/*     */   {
/*  61 */     QTHandle localQTHandle = new QTHandle(paramString2.length(), false);
/*  62 */     localQTHandle.copyFromArray(0, paramString2.getBytes(), 0, paramString2.length());
/*     */
/*  64 */     int i = QTRegisterAccessKey(QTUtils.String2PString(paramString1, 255), paramInt, QTObject.ID(localQTHandle));
/*  65 */     StdQTException.checkError(i);
/*     */   }
/*     */
View Full Code Here

Examples of quicktime.util.QTHandle.copyFromArray()

/*     */
/*     */   public static void unregisterAccessKey(String paramString1, int paramInt, String paramString2)
/*     */     throws QTException
/*     */   {
/*  96 */     QTHandle localQTHandle = new QTHandle(paramString2.length(), false);
/*  97 */     localQTHandle.copyFromArray(0, paramString2.getBytes(), 0, paramString2.length());
/*     */
/*  99 */     int i = QTUnregisterAccessKey(QTUtils.String2PString(paramString1, 255), paramInt, QTObject.ID(localQTHandle));
/* 100 */     StdQTException.checkError(i);
/*     */   }
/*     */
View Full Code Here

Examples of quicktime.util.QTHandle.copyFromArray()

/*     */       {
/*     */         Object localObject;
/* 288 */         if ((localEncodedImage instanceof IntEncodedImage)) {
/* 289 */           localQTHandle = new QTHandle(localEncodedImage.getSize(), false);
/* 290 */           localObject = ((IntEncodedImage)localEncodedImage).getInts();
/* 291 */           localQTHandle.copyFromArray(0, (int[])localObject, 0, localObject.length);
/*     */         } else {
/* 293 */           localQTHandle = new QTHandle(localEncodedImage.getSize(), false);
/* 294 */           localObject = ((ByteEncodedImage)localEncodedImage).getBytes();
/* 295 */           localQTHandle.copyFromArray(0, (byte[])localObject, 0, localObject.length);
/*     */         }
View Full Code Here

Examples of quicktime.util.QTHandle.copyFromArray()

/* 290 */           localObject = ((IntEncodedImage)localEncodedImage).getInts();
/* 291 */           localQTHandle.copyFromArray(0, (int[])localObject, 0, localObject.length);
/*     */         } else {
/* 293 */           localQTHandle = new QTHandle(localEncodedImage.getSize(), false);
/* 294 */           localObject = ((ByteEncodedImage)localEncodedImage).getBytes();
/* 295 */           localQTHandle.copyFromArray(0, (byte[])localObject, 0, localObject.length);
/*     */         }
/*     */       }
/* 297 */       localVideoMedia.addSample(localQTHandle, 0, localQTHandle.getSize(), (int)(600.0F / paramFloat), this.imageDescription, 1, 0);
/*     */
/* 304 */       if (k % 5 == 0)
View Full Code Here

Examples of quicktime.util.QTPointer.copyFromArray()

        TimeInfo sampleTime = new TimeInfo (0, m.getDuration());
     
        String text = new String ("This is a big fat hairy test\rAnd so is this");
        TextMediaHandler textMediaHandler = textMedia.getTextHandler();
        QTPointer textPointer = new QTPointer ( text.length() + 1, true );
        textPointer.copyFromArray ( 0, text.getBytes(), 0, text.length() );
        textMediaHandler.addTextSample (
          textPointer,
          QDFont.getFNum ( "Times" ),
          10,
          0,
View Full Code Here

Examples of quicktime.util.QTPointer.copyFromArray()

     
        String text = new String (message);
       
        TextMediaHandler textMediaHandler = textMedia.getTextHandler();
        QTPointer textPointer = new QTPointer ( text.length() + 1, true );
        textPointer.copyFromArray ( 0, text.getBytes(), 0, text.length() );
        textMediaHandler.addTextSample (
          textPointer,
          QDFont.getFNum ( "Times" ),
          14,
          1,
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.