HomeSort by relevance Sort by last modified time
    Searched refs:waveform (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorMarble.java 107 int waveform; local
108 if (marbleData.waveform > TEX_TRI || marbleData.waveform < TEX_SIN) {
109 waveform = 0;
111 waveform = marbleData.waveform;
118 mi = waveformFunctions[waveform].execute(mi);
134 public final int waveform; field in class:TextureGeneratorMarble.MarbleData
144 waveform = ((Number) tex.getFieldValue("noisebasis2")).intValue();
TextureGeneratorWood.java 122 protected static WaveForm[] waveformFunctions = new WaveForm[3];
124 waveformFunctions[0] = new WaveForm() {// sinus (TEX_SIN)
131 waveformFunctions[1] = new WaveForm() {// saw (TEX_SAW)
143 waveformFunctions[2] = new WaveForm() {// triangle (TEX_TRI)
189 public final WaveForm waveformFunction;
198 int waveform = ((Number) tex.getFieldValue("noisebasis2")).intValue();//wave form: TEX_SIN=0, TEX_SAW=1, TEX_TRI=2 local
199 if (waveform > TEX_TRI || waveform < TEX_SIN) {
200 waveform = 0; // check to be sure noisebasis2 is initialized ahead of tim
    [all...]
  /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);
  /frameworks/av/media/libmedia/
Visualizer.cpp 257 status_t Visualizer::getWaveForm(uint8_t *waveform)
259 if (waveform == NULL) {
269 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform);
276 memset(waveform, 0x80, mCaptureSize);
303 status_t Visualizer::doFft(uint8_t *fft, uint8_t *waveform)
310 ((waveform[i] ^ 0x80) << 24) | ((waveform[i + 1] ^ 0x80) << 8);
339 uint8_t waveform[mCaptureSize]; local
340 status_t status = getWaveForm(waveform);
346 status = doFft(fft, waveform);
    [all...]
  /external/srec/srec/EventLog/include/
riff.h 225 unsigned char *waveform,
236 void **waveform,
  /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...]
SR_RecognizerResultImpl.h 82 const asr_int16_t** waveform,
  /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);
  /frameworks/base/media/java/android/media/audiofx/
Visualizer.java 41 * <li>Waveform data: consecutive 8-bit (unsigned) mono samples by using the
422 * Returns a waveform capture of currently playing audio content. The capture consists in
426 * @param waveform array of bytes where the waveform should be returned
432 public int getWaveForm(byte[] waveform)
438 return native_getWaveForm(waveform);
546 * Method called when a new waveform capture is available.
547 * <p>Data in the waveform buffer is valid only within the scope of the callback.
548 * Applications which needs access to the waveform data after returning from the callback
551 * @param waveform array of bytes containing the waveform representation
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-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.7-4.6/sysroot/usr/include/sound/
asound_fm.h 62 unsigned char waveform; /* 3 bits: waveform shape */ member in struct:snd_dm_fm_voice
  /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]);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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
  /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...]
  /cts/tests/tests/media/src/android/media/cts/
VisualizerTest.java 178 assertNotNull("waveform capture failed", mWaveform);
284 Visualizer visualizer, byte[] waveform, int samplingRate) {
288 mWaveform = waveform;
  /frameworks/base/media/jni/audioeffect/
android_media_Visualizer.cpp 160 uint8_t *waveform,
184 if (waveformSize != 0 && waveform != NULL) {
192 memcpy(nArray, waveform, waveformSize);
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 142 const asr_int16_t *raw_waveform; /*Points to raw waveform returned from voice enrollment */
147 LCHAR raw_waveform_filename [P_PATH_MAX]; /* Name of file of saved waveform data. */
148 PFile *raw_waveform_file; /* Pointer to file of saved waveform data. */
2697 LCHAR waveform [MAX_LINE_LENGTH]; local
2791 LCHAR waveform [MAX_LINE_LENGTH]; local
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 109 mScript = new ScriptC_waveform(mRS, mResources, R.raw.waveform);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaVisualizerTest.java 354 Log.e(TAG, "Capture waveform: wait was interrupted.");
357 assertNotNull(msg +": waveform capture failed", mWaveform);
387 Log.e(TAG, "Capture waveform: wait was interrupted.");
390 assertNotNull(msg +": waveform capture failed", mWaveform);
584 Visualizer visualizer, byte[] waveform, int samplingRate) {
588 mWaveform = waveform;
  /development/ndk/platforms/android-3/include/linux/
input.h 657 __u16 waveform; member in struct:ff_periodic_effect
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
input.h 815 * @waveform: kind of the effect (wave)
832 __u16 waveform; member in struct:ff_periodic_effect
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
input.h 815 * @waveform: kind of the effect (wave)
832 __u16 waveform; member in struct:ff_periodic_effect

Completed in 813 milliseconds

1 2 3 4 5