Searched defs:startInFrames (Results 1 - 1 of 1) sorted by path

/frameworks/base/media/java/android/media/
H A DAudioTrack.java1659 * @param startInFrames loop start marker expressed in frames.
1669 * If the loop period (endInFrames - startInFrames) is too small for the implementation to
1672 * The loop range is the interval [startInFrames, endInFrames).
1685 public int setLoopPoints(int startInFrames, int endInFrames, int loopCount) { argument
1692 } else if (!(0 <= startInFrames && startInFrames < mNativeBufferSizeInFrames &&
1693 startInFrames < endInFrames && endInFrames <= mNativeBufferSizeInFrames)) {
1696 return native_set_loop(startInFrames, endInFrames, loopCount);

Completed in 76 milliseconds