Lines Matching defs:track

360      * HW_AV_SYNC track AV Sync Header
364 * HW_AV_SYNC track audio data bytes remaining to write after current AV sync header
407 * <p> If the track's creation mode is {@link #MODE_STATIC},
409 * <p> If the track's creation mode is {@link #MODE_STREAM},
446 * will be created for this track if none is supplied.
463 * <p> If the track's creation mode is {@link #MODE_STATIC},
465 * <p> If the track's creation mode is {@link #MODE_STREAM},
511 * <p> If the track's creation mode is {@link #MODE_STATIC},
513 * <p> If the track's creation mode is {@link #MODE_STREAM},
903 final AudioTrack track = new AudioTrack(
905 if (track.getState() == STATE_UNINITIALIZED) {
909 return track;
1213 * @throws IllegalStateException if track is not initialized.
1308 * <p> If the track is subsequently routed to a different output sink, the buffer
1316 * @throws IllegalStateException if track is not initialized.
1329 * the buffer for this track. A smaller size will give lower latency
1343 * @throws IllegalStateException if track is not initialized.
1357 * <p> If the track's creation mode is {@link #MODE_STATIC},
1359 * A static track's frame count will not change.
1360 * <p> If the track's creation mode is {@link #MODE_STREAM},
1364 * if the track is subsequently routed to a different output sink, the
1372 * @throws IllegalStateException if track is not initialized.
1413 * If the track's creation mode is {@link #MODE_STATIC}, the return value indicates
1422 * Returns this track's estimated latency in milliseconds. This includes the latency due
1458 * @throws IllegalStateException if track is not initialized.
1556 * If you need to track timestamps during initial warmup or after a routing or mode change,
1728 * Sets the specified output gain value on all channels of this track.
1764 * Sets the playback sample rate for this track. This sets the sampling rate at which
1804 * @throws IllegalStateException if track is not initialized.
1847 * The track must be stopped or paused for the position to be changed,
1877 * the track must be stopped or paused for the loop points to be changed,
1938 * If track's creation mode is {@link #MODE_STATIC}, you must have called one of
1947 * data, then the track will be in underrun state at play(). In this case,
1952 * the track underruns due to failure to call write() in a timely manner with sufficient data.
1957 * @throws IllegalStateException if the track isn't properly initialized
2050 * or if the track's creation mode is not {@link #MODE_STREAM}.
2076 * playback, and will return a full transfer count. However, if the track is stopped or paused
2093 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2117 * {@link #WRITE_NON_BLOCKING}, or the track is stopped or paused on entry, or another thread
2141 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2187 * playback, and will return a full transfer count. However, if the track is stopped or paused
2204 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2227 * {@link #WRITE_NON_BLOCKING}, or the track is stopped or paused on entry, or another thread
2250 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2298 * {@link #WRITE_NON_BLOCKING}, or the track is stopped or paused on entry, or another thread
2331 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2386 * {@link #WRITE_NON_BLOCKING}, or the track is stopped or paused on entry, or another thread
2412 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2465 * Writes the audio data to the audio sink for playback in streaming mode on a HW_AV_SYNC track.
2485 * <li>{@link #ERROR_INVALID_OPERATION} if the track isn't properly initialized</li>
2507 Log.e(TAG, "AudioTrack.write() with timestamp called for non-streaming mode track");
2570 * The track must be stopped or paused, and
2571 * the track's creation mode must be {@link #MODE_STATIC}.
2594 * Attaches an auxiliary effect to the audio track. A typical auxiliary
2602 * this method to attach the audio track to the effect.
2603 * <p>To detach the effect from the audio track, call this method with a
2618 * Sets the send level of the audio track to the attached auxiliary effect
2861 void onMarkerReached(AudioTrack track);
2867 void onPeriodicNotification(AudioTrack track);
2880 NativePositionEventHandlerDelegate(final AudioTrack track,
2898 if (track == null) {
2904 listener.onMarkerReached(track);
2909 listener.onPeriodicNotification(track);
2935 NativeRoutingEventHandlerDelegate(final AudioTrack track,
2953 if (track == null) {
2959 listener.onRoutingChanged(track);
3003 AudioTrack track = (AudioTrack)((WeakReference)audiotrack_ref).get();
3004 if (track == null) {
3009 track.broadcastRoutingChange();
3012 NativePositionEventHandlerDelegate delegate = track.mEventHandlerDelegate;