< prev index next >

src/java.desktop/share/classes/javax/sound/midi/Sequence.java

Print this page

        

*** 56,98 **** * The tempo-based timing type, for which the resolution is expressed in * pulses (ticks) per quarter note. * * @see #Sequence(float, int) */ ! public static final float PPQ = 0.0f; /** * The SMPTE-based timing type with 24 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_24 = 24.0f; /** * The SMPTE-based timing type with 25 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_25 = 25.0f; /** * The SMPTE-based timing type with 29.97 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_30DROP = 29.97f; /** * The SMPTE-based timing type with 30 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_30 = 30.0f; // Variables /** * The timing division type of the sequence. --- 56,98 ---- * The tempo-based timing type, for which the resolution is expressed in * pulses (ticks) per quarter note. * * @see #Sequence(float, int) */ ! public static final float PPQ = 0.0f; /** * The SMPTE-based timing type with 24 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_24 = 24.0f; /** * The SMPTE-based timing type with 25 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_25 = 25.0f; /** * The SMPTE-based timing type with 29.97 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_30DROP = 29.97f; /** * The SMPTE-based timing type with 30 frames per second (resolution is * expressed in ticks per frame). * * @see #Sequence(float, int) */ ! public static final float SMPTE_30 = 30.0f; // Variables /** * The timing division type of the sequence.
< prev index next >