/external/srec/srec/Recognizer/include/ |
SR_RecognizerResult.h | 44 * Returns the endpointed waveform that was used for recognition. This returns a read-only buffer, 48 * @param waveform [out] Waveform buffer 49 * @param size [out] Size of waveform buffer (in bytes) 50 * @return ESR_INVALID_ARGUMENT if self, or waveform are null 52 ESR_ReturnCode(*getWaveform)(const struct SR_RecognizerResult_t* self, const asr_int16_t** waveform, 114 * Returns the endpointed waveform that was used for recognition. This returns a read-only buffer, 118 * @param waveform [out] Waveform buffer 119 * @param size [out] Size of waveform buffer (in bytes [all...] |
/frameworks/av/media/libmedia/ |
Visualizer.cpp | 262 status_t Visualizer::getWaveForm(uint8_t *waveform) 264 if (waveform == NULL) { 274 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform); 281 memset(waveform, 0x80, mCaptureSize); 308 status_t Visualizer::doFft(uint8_t *fft, uint8_t *waveform) 315 ((waveform[i] ^ 0x80) << 24) | ((waveform[i + 1] ^ 0x80) << 8); 344 uint8_t waveform[mCaptureSize]; local 345 status_t status = getWaveForm(waveform); 351 status = doFft(fft, waveform); [all...] |
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
VisualizerTest.java | 148 public void onWaveFormDataCapture(Visualizer visualizer, byte[] waveform, int samplingRate) { 150 if (waveform.length > 0) { 151 Log.d(TAG, "onWaveFormDataCapture(): "+waveform[0]+" smp rate: "+samplingRate/1000); 152 displayVal(R.id.waveformMin, waveform[0]); 153 displayVal(R.id.waveformMax, waveform[waveform.length - 1]); 154 displayVal(R.id.waveformCenter, waveform[waveform.length/2]);
|
/frameworks/base/media/java/android/media/audiofx/ |
Visualizer.java | 40 * <li>Waveform data: consecutive 8-bit (unsigned) mono samples by using the 421 * Returns a waveform capture of currently playing audio content. The capture consists in 425 * @param waveform array of bytes where the waveform should be returned 431 public int getWaveForm(byte[] waveform) 437 return native_getWaveForm(waveform); 545 * Method called when a new waveform capture is available. 546 * <p>Data in the waveform buffer is valid only within the scope of the callback. 547 * Applications which needs access to the waveform data after returning from the callback 550 * @param waveform array of bytes containing the waveform representation [all...] |
/external/srec/srec/Recognizer/src/ |
RecognizerResult.c | 26 const asr_int16_t** waveform, size_t* size) 33 return self->getWaveform(self, waveform, size);
|
RecognizerResultImpl.c | 62 const asr_int16_t** waveform, size_t* size) 66 if (waveform == NULL) 75 *waveform = (asr_int16_t*)(((unsigned char *) impl->recogImpl->waveformBuffer->cbuffer) + 86 *waveform = (asr_int16_t*)(((unsigned char *) impl->recogImpl->waveformBuffer->cbuffer) + sizeof(CircularBuffer) + impl->recogImpl->waveformBuffer->cbuffer->readIdx);
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
PeriodicWave.idl | 25 // PeriodicWave represents a periodic audio waveform given by its Fourier coefficients.
|
OscillatorNode.h | 46 // The waveform type. 85 // One of the waveform types defined in the enum.
|
AnalyserNode.idl | 43 // Real-time waveform data
|
/frameworks/av/include/media/ |
Visualizer.h | 35 * - Waveform data: consecutive 8-bit (unsigned) mono samples by using the getWaveForm() method 90 uint8_t *waveform, 127 status_t getWaveForm(uint8_t *waveform); 158 status_t doFft(uint8_t *fft, uint8_t *waveform);
|
/packages/wallpapers/MusicVisualization/res/values-en-rGB/ |
cube.xml | 23 <string name="wallpaper_vis2" msgid="4565736588102466989">"Waveform"</string>
|
/packages/wallpapers/MusicVisualization/res/values-en-rIN/ |
cube.xml | 23 <string name="wallpaper_vis2" msgid="4565736588102466989">"Waveform"</string>
|
/packages/wallpapers/MusicVisualization/res/values-tl/ |
cube.xml | 23 <string name="wallpaper_vis2" msgid="4565736588102466989">"Waveform"</string>
|
/external/srec/srec/EventLog/src/ |
riff.c | 570 //GS_AppendResult(res,"\nnot a RIFF waveform audio file",NULL); 606 cb = MALLOC(chunk.length, MTAG); /* waveform */ 672 * waveform: allocated with size num_bytes 676 * If and only if ESR_SUCCESS, caller must free waveform, and swichunk contents (if any) 678 ESR_ReturnCode readRiff2Buf(FILE *f, void **waveform, unsigned int *num_bytes, 685 *waveform = NULL; 747 *waveform = CALLOC(chunk.length, 1, MTAG); 748 if (fread(*waveform, 1, chunk.length, f) != (size_t)chunk.length) 756 short_byte_swap((short *)*waveform, chunk.length); 758 int_byte_swap((int *)*waveform, chunk.length) [all...] |
/external/kernel-headers/original/uapi/sound/ |
asound_fm.h | 62 unsigned char waveform; /* 3 bits: waveform shape */ member in struct:snd_dm_fm_voice
|
/external/srec/srec/EventLog/include/ |
riff.h | 225 unsigned char *waveform, 236 void **waveform,
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/ |
waveform.rs | 93 // fade waveform to 0 115 // morph from idle animation back to waveform
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/sound/ |
asound_fm.h | 62 unsigned char waveform; /* 3 bits: waveform shape */ member in struct:snd_dm_fm_voice
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sound/ |
asound_fm.h | 62 unsigned char waveform; /* 3 bits: waveform shape */ member in struct:snd_dm_fm_voice
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/ |
asound_fm.h | 62 unsigned char waveform; /* 3 bits: waveform shape */ member in struct:snd_dm_fm_voice
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/ |
asound_fm.h | 62 unsigned char waveform; /* 3 bits: waveform shape */ member in struct:snd_dm_fm_voice
|
/external/chromium_org/media/base/ |
container_names.h | 56 CONTAINER_WAV, // WAV / WAVE (Waveform Audio)
|
/external/chromium_org/media/audio/win/ |
device_enumeration_win.cc | 97 // The waveform API is weird in that it has completely separate but 106 // Retrieve the number of active waveform input devices. 120 // Retrieve the capabilities of the specified waveform-audio input device.
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_fmengine.h | 66 EAS_U32 phase; /* current waveform phase */ 81 EAS_U8 flags; /* mode bits and noise waveform flags */ 90 EAS_U8 flags; /* mode bits and noise waveform flags */
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_fmengine.h | 66 EAS_U32 phase; /* current waveform phase */ 81 EAS_U8 flags; /* mode bits and noise waveform flags */ 90 EAS_U8 flags; /* mode bits and noise waveform flags */
|