Package quicktime.std.movies.media

Source Code of quicktime.std.movies.media.TimeCodeMedia

/*    */ package quicktime.std.movies.media;
/*    */
/*    */ import quicktime.QTException;
/*    */ import quicktime.QTSession;
/*    */ import quicktime.std.StdQTException;
/*    */ import quicktime.std.movies.Track;
/*    */ import quicktime.std.qtcomponents.TimeCodeDescription;
/*    */ import quicktime.std.qtcomponents.TimeCoder;
/*    */
/*    */ public final class TimeCodeMedia extends Media
/*    */ {
/* 24 */   private static boolean apriori = QTSession.apriori();
/*    */
/*    */   public TimeCodeMedia(Track paramTrack, int paramInt, DataRef paramDataRef)
/*    */     throws QTException
/*    */   {
/* 35 */     super(paramTrack, 1953325924, paramInt, paramDataRef);
/*    */   }
/*    */
/*    */   public TimeCodeMedia(Track paramTrack, int paramInt)
/*    */     throws QTException
/*    */   {
/* 45 */     this(paramTrack, paramInt, null);
/*    */   }
/*    */
/*    */   TimeCodeMedia(int paramInt, Track paramTrack) throws QTException
/*    */   {
/* 50 */     super(paramTrack, paramInt);
/*    */   }
/*    */
/*    */   final SampleDescription makeDescription()
/*    */     throws QTException
/*    */   {
/* 56 */     return new TimeCodeDescription();
/*    */   }
/*    */
/*    */   final MediaHandler makeHandler(int paramInt, Object paramObject) throws StdQTException
/*    */   {
/* 61 */     return TimeCoder.fromMedia(this);
/*    */   }
/*    */
/*    */   public TimeCoder getTimeCodeHandler()
/*    */     throws StdQTException
/*    */   {
/* 71 */     return TimeCoder.fromMedia(this);
/*    */   }
/*    */
/*    */   public TimeCodeDescription getTimeCodeDescription(int paramInt)
/*    */     throws QTException
/*    */   {
/* 82 */     TimeCodeDescription localTimeCodeDescription = new TimeCodeDescription();
/* 83 */     getNativeSampleDescription(paramInt, localTimeCodeDescription);
/* 84 */     return localTimeCodeDescription;
/*    */   }
/*    */ }

/* Location:           Z:\System\Library\Java\Extensions\QTJava.zip
* Qualified Name:     quicktime.std.movies.media.TimeCodeMedia
* JD-Core Version:    0.6.2
*/
TOP

Related Classes of quicktime.std.movies.media.TimeCodeMedia

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.