Package quicktime.std.comp

Examples of quicktime.std.comp.ComponentIdentifier


            QTSessionCheck.check( );
            /* use this wildcard to show all components in QT
            */
            ComponentDescription wildcard =
                new ComponentDescription( );
            ComponentIdentifier ci = null;
            while ( (ci = ComponentIdentifier.find(ci, wildcard)) != null) {
                ComponentDescription cd = ci.getInfo( );
                System.out.println (cd.getName( ) +
                                    " (" +
                                    QTUtils.fromOSType (cd.getType( )) +
                                    "/" +
                                    QTUtils.fromOSType (cd.getSubType( )) +
View Full Code Here


/*     */
/*     */   private static int allocate(int paramInt1, int paramInt2, int paramInt3) throws QTException {
/*  75 */     ComponentDescription localComponentDescription = new ComponentDescription(paramInt1);
/*  76 */     localComponentDescription.setSubType(paramInt2);
/*  77 */     localComponentDescription.setManufacturer(paramInt3);
/*  78 */     ComponentIdentifier localComponentIdentifier = ComponentIdentifier.find(localComponentDescription);
/*  79 */     return QTObject.ID(localComponentIdentifier);
/*     */   }
View Full Code Here

/*     */     throws QTException
/*     */   {
/* 313 */     ComponentDescription localComponentDescription = new ComponentDescription();
/* 314 */     localComponentDescription.setType(QTUtils.toOSType("imdc"));
/* 315 */     localComponentDescription.setSubType(paramInt);
/* 316 */     ComponentIdentifier localComponentIdentifier = ComponentIdentifier.find(localComponentDescription);
/* 317 */     if (localComponentIdentifier == null) throw new StdQTException(-50);
/*     */   }
View Full Code Here

TOP

Related Classes of quicktime.std.comp.ComponentIdentifier

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.