Searched defs:MODE_STATIC (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp56 #define MODE_STATIC 0 macro
253 // for the moment 8bitPCM in MODE_STATIC is not supported natively in the AudioTrack C++ class
254 // so we declare everything as 16bitPCM, the 8->16bit conversion for MODE_STATIC will be handled
257 && (memoryMode == MODE_STATIC)) {
258 ALOGV("android_media_AudioTrack_native_setup(): requesting MODE_STATIC for 8bit \
322 case MODE_STATIC:
/frameworks/base/media/java/android/media/
H A DAudioTrack.java88 public static final int MODE_STATIC = 0; field in class:AudioTrack
254 * If the track's creation mode is {@link #MODE_STATIC},
259 * @param mode streaming or static buffer. See {@link #MODE_STATIC} and {@link #MODE_STREAM}
299 * @param mode streaming or static buffer. See {@link #MODE_STATIC} and {@link #MODE_STREAM}
336 if (mDataLoadMode == MODE_STATIC) {
427 if ( (mode != MODE_STREAM) && (mode != MODE_STATIC) ) {
602 * If track's creation mode is {@link #MODE_STATIC},
908 * and must use the {@link #MODE_STATIC} mode.
930 * and must use the {@link #MODE_STATIC} mode.
977 * If track's creation mode is {@link #MODE_STATIC}, yo
[all...]

Completed in 50 milliseconds