Lines Matching defs:resolution

61      * The tempo-based timing type, for which the resolution is expressed in pulses (ticks) per quarter note.
67 * The SMPTE-based timing type with 24 frames per second (resolution is expressed in ticks per frame).
73 * The SMPTE-based timing type with 25 frames per second (resolution is expressed in ticks per frame).
79 * The SMPTE-based timing type with 29.97 frames per second (resolution is expressed in ticks per frame).
85 * The SMPTE-based timing type with 30 frames per second (resolution is expressed in ticks per frame).
105 * The timing resolution of the sequence.
108 protected int resolution;
119 * type and timing resolution. The division type must be one of the
122 * the resolution is specified in ticks per beat. For SMTPE timing,
124 * second and the resolution is specified in ticks per frame.
130 * @param resolution the timing resolution
142 public Sequence(float divisionType, int resolution) throws InvalidMidiDataException {
156 this.resolution = resolution;
162 * type, timing resolution, and number of tracks. The division type must be one of the
165 * the resolution is specified in ticks per beat. For SMTPE timing,
167 * second and the resolution is specified in ticks per frame.
176 * @param resolution the timing resolution
188 public Sequence(float divisionType, int resolution, int numTracks) throws InvalidMidiDataException {
202 this.resolution = resolution;
228 * Obtains the timing resolution for this sequence.
229 * If the sequence's division type is PPQ, the resolution is specified in ticks per beat.
230 * For SMTPE timing, the resolution is specified in ticks per frame.
238 return resolution;