Searched refs:rateOut (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/java/android/media/
H A DResampleInputStream.java58 * @param rateOut the output sample rate.
59 * This only handles rateIn == rateOut / 2 for the moment.
61 public ResampleInputStream(InputStream inputStream, int rateIn, int rateOut) { argument
63 if (rateIn != 2 * rateOut) throw new IllegalArgumentException("only support 2:1 at the moment");
65 rateOut = 1;
69 mRateOut = rateOut;

Completed in 83 milliseconds