Home | History | Annotate | Download | only in media

Lines Matching refs:sync

74     // to keep in sync with the JetPlayer class constants
81 // to keep in sync with external/sonivox/arm-wt-22k/lib_src/jet_data.h
93 // to keep in sync with values used in external/sonivox/arm-wt-22k/Android.mk
326 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
332 public boolean setMuteFlags(int muteFlags, boolean sync) {
333 return native_setMuteFlags(muteFlags, sync);
342 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
348 public boolean setMuteArray(boolean[] muteArray, boolean sync) {
351 return native_setMuteArray(muteArray, sync);
359 * @param sync if false, the new mute flags will be applied as soon as possible by the JET
365 public boolean setMuteFlag(int trackId, boolean muteFlag, boolean sync) {
366 return native_setMuteFlag(trackId, muteFlag, sync);
372 * This will automatically update the mute flags in sync with the JET Clip Marker (controller
553 private native final boolean native_setMuteFlags(int muteFlags, boolean sync);
554 private native final boolean native_setMuteArray(boolean[]muteArray, boolean sync);
555 private native final boolean native_setMuteFlag(int trackId, boolean muteFlag, boolean sync);