HomeSort by relevance Sort by last modified time
    Searched defs:silence (Results 1 - 19 of 19) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
SDL_dx5audio.h 39 int mixlen, silence; member in struct:SDL_PrivateAudioData
50 #define silence (this->hidden->silence) macro
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioDestination.cpp 99 // extra silence for the input. Otherwise, we can over-consume the input FIFO.
102 RefPtr<AudioBus> silence = AudioBus::create(2, renderBufferSize); local
103 m_inputFifo->push(silence.get());
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio.c 66 SDL_memset(buffer, audio->spec.silence, audio->spec.size);
72 int silence; local
75 silence = 0x80;
77 silence = 0;
79 SDL_memset(audio->convert.buf, silence, audio->convert.len);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_audio.h 60 * - 'desired->silence' is the value used to set the buffer to silence,
78 Uint8 silence; /**< Audio buffer silence value (calculated) */ member in struct:SDL_AudioSpec
170 * The audio device starts out playing silence when it's opened, and should
194 * Silence will be written to the audio device during the pause.
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audio.c 132 int silence; local
146 silence = 0x80;
148 silence = 0;
152 silence = audio->spec.silence;
194 SDL_memset(stream, silence, stream_len);
489 /* Calculate the silence and size of the audio specification */
686 spec->silence = 0x80;
689 spec->silence = 0x00;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
warnings.py 386 silence = [ImportWarning, PendingDeprecationWarning] variable
387 # Don't silence DeprecationWarning if -3 or -Q was used.
389 silence.append(DeprecationWarning)
390 for cls in silence:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
warnings.py 386 silence = [ImportWarning, PendingDeprecationWarning] variable
387 # Don't silence DeprecationWarning if -3 or -Q was used.
389 silence.append(DeprecationWarning)
390 for cls in silence:
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_audio.h 60 * - 'desired->silence' is the value used to set the buffer to silence,
78 Uint8 silence; /**< Audio buffer silence value (calculated) */ member in struct:SDL_AudioSpec
170 * The audio device starts out playing silence when it's opened, and should
194 * Silence will be written to the audio device during the pause.
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_audio.h 60 * - 'desired->silence' is the value used to set the buffer to silence,
78 Uint8 silence; /**< Audio buffer silence value (calculated) */ member in struct:SDL_AudioSpec
170 * The audio device starts out playing silence when it's opened, and should
194 * Silence will be written to the audio device during the pause.
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_audio.h 60 * - 'desired->silence' is the value used to set the buffer to silence,
78 Uint8 silence; /**< Audio buffer silence value (calculated) */ member in struct:SDL_AudioSpec
170 * The audio device starts out playing silence when it's opened, and should
194 * Silence will be written to the audio device during the pause.
  /packages/services/Telecomm/src/com/android/server/telecom/
Ringer.java 134 void silence() { method in class:Ringer
  /external/qemu/audio/
winaudio.c 93 int silence; member in struct:WinAudioOut
179 s->silence = 0;
183 case AUD_FMT_U8: shift = 0; s->silence = 0x80; break;
185 case AUD_FMT_U16: shift = 1; s->silence = 0x8000; break;
  /external/chromium_org/third_party/opus/src/src/
opus_decoder.c 482 unsigned char silence[2] = {0xFF, 0xFF}; local
486 do a fade-out by decoding a silence frame */
490 celt_decode_with_ec(celt_dec, silence, 2, pcm, F2_5, NULL);
  /external/libopus/src/
opus_decoder.c 482 unsigned char silence[2] = {0xFF, 0xFF}; local
486 do a fade-out by decoding a silence frame */
490 celt_decode_with_ec(celt_dec, silence, 2, pcm, F2_5, NULL);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 282 public void silence() { method in class:ShadowWrangler
  /external/chromium_org/third_party/opus/src/celt/
celt_decoder.c 694 int silence; local
783 silence = 1;
785 silence = ec_dec_bit_logp(dec, 15);
787 silence = 0;
788 if (silence)
916 if (silence)
    [all...]
celt_encoder.c 1294 int silence=0; local
    [all...]
  /external/libopus/celt/
celt_decoder.c 694 int silence; local
783 silence = 1;
785 silence = ec_dec_bit_logp(dec, 15);
787 silence = 0;
788 if (silence)
916 if (silence)
    [all...]
celt_encoder.c 1294 int silence=0; local
    [all...]

Completed in 609 milliseconds