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

/packages/apps/SpeechRecorder/src/com/android/speechrecorder/
H A DWaveHeader.java31 * <li> numBytes - size of audio data after this header, in bytes.
71 * @param numBytes size of audio data after this header, in bytes.
73 public WaveHeader(short format, short numChannels, int sampleRate, short bitsPerSample, int numBytes) { argument
78 mNumBytes = numBytes;
167 * @param numBytes size of audio data after this header, in bytes.
170 public WaveHeader setNumBytes(int numBytes) { argument
171 mNumBytes = numBytes;
184 int numBytes = readInt(in) - 36;
272 "WaveHeader format=%d numChannels=%d sampleRate=%d bitsPerSample=%d numBytes=%d",

Completed in 97 milliseconds