HomeSort by relevance Sort by last modified time
    Searched defs:audio (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAudioElement.cpp 51 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(audioTag, document, false)); local
52 audio->setPreload("auto");
54 audio->setSrc(src);
55 audio->scheduleDelayedAction(HTMLMediaElement::LoadMediaResource);
57 audio->suspendIfNeeded();
58 return audio.release();
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
SeekableStream.java 5 package com.jme3.audio;
AudioContext.java 33 package com.jme3.audio;
36 * Holds render thread specific audio context information.
ListenerParam.java 33 package com.jme3.audio;
AudioKey.java 33 package com.jme3.audio;
56 * @param stream If true, the audio will be streamed from harddrive,
59 * the stream cache is used. When enabled, the audio stream will
72 * @param stream If true, the audio will be streamed from harddrive,
98 * @return True if the loaded audio should be a {@link AudioStream} or
108 * When enabled, the audio stream will
Filter.java 33 package com.jme3.audio;
AudioBuffer.java 33 package com.jme3.audio;
35 import com.jme3.audio.AudioData.DataType;
41 * where the audio is buffered (stored in memory). All parts of it
50 * The audio data buffer. Should be direct and native ordered.
67 * @return The duration of the audio in seconds. It is expected
68 * that audio is uncompressed.
95 * @return The buffered audio data.
AudioData.java 33 package com.jme3.audio;
39 * of audio data. There are two ways to handle audio data, short audio files
40 * are to be stored entirely in memory, while long audio files (music) are
70 * @return the duration in seconds of the audio clip.
96 * Setup the format of the audio data.
AudioParam.java 1 package com.jme3.audio;
AudioRenderer.java 33 package com.jme3.audio;
36 * Interface to be implemented by audio renderers.
74 * Update the audio system. Must be called periodically.
80 * Cleanup/destroy the audio system. Call this when app closes.
LowPassFilter.java 33 package com.jme3.audio;
  /packages/apps/Mms/src/com/android/mms/ui/
MmsThumbnailPresenter.java 97 protected void presentAudioThumbnail(SlideViewInterface view, AudioModel audio) {
98 view.setAudio(audio.getUri(), audio.getSrc(), audio.getExtras());
  /external/jmonkeyengine/engine/src/android/com/jme3/audio/plugins/
AndroidAudioLoader.java 1 package com.jme3.audio.plugins;
5 import com.jme3.audio.android.AndroidAudioData;
  /external/chromium_org/content/renderer/media/
mock_media_stream_dispatcher.cc 34 StreamDeviceInfo audio; local
35 audio.device.id = "audio_device_id";
36 audio.device.name = "microphone";
37 audio.device.type = components.audio_type;
38 audio.session_id = request_id;
39 audio_array_.push_back(audio);
  /external/chromium_org/third_party/WebKit/Source/web/
WebUserMediaRequest.cpp 69 bool WebUserMediaRequest::audio() const function in class:WebKit::WebUserMediaRequest
72 return m_private->audio();
  /external/jmonkeyengine/engine/src/test/jme3test/asset/
TestAbsoluteLocators.java 38 import com.jme3.audio.AudioData;
39 import com.jme3.audio.plugins.WAVLoader;
54 AudioData audio = am.loadAudio("Sound/Effects/Gun.wav"); local
59 if (audio == null)
60 throw new RuntimeException("Cannot find audio!");
62 System.out.println("Audio loaded from Sounds/Effects/Gun.wav");
  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestMusicStreaming.java 33 package jme3test.audio;
37 import com.jme3.audio.AudioNode;
TestOgg.java 33 package jme3test.audio;
36 import com.jme3.audio.AudioNode;
37 import com.jme3.audio.LowPassFilter;
TestWav.java 30 package jme3test.audio;
33 import com.jme3.audio.AudioNode;
  /external/qemu/distrib/sdl-1.2.15/src/audio/baudio/
SDL_beaudio.cc 24 /* Allow access to the audio stream on BeOS */
39 /* Audio driver functions */
46 /* Audio driver bootstrap functions */
96 /* The BeOS callback for handling the audio buffer */
100 SDL_AudioDevice *audio = (SDL_AudioDevice *)device; local
103 SDL_memset(stream, audio->spec.silence, len);
105 /* Only do soemthing if audio is enabled */
106 if ( ! audio->enabled )
109 if ( ! audio->paused ) {
110 if ( audio->convert.needed )
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
SimTonesTest.java 17 package com.android.mediaframeworktest.functional.audio;
  /external/chromium_org/ppapi/shared_impl/
ppb_audio_shared.cc 8 #include "media/audio/shared_memory_util.h"
92 // Setup integer audio buffer for user audio data.
106 // Clear contents of shm buffer before starting audio thread. This will
107 // prevent a burst of static if for some reason the audio thread doesn't
132 // In general, the audio thread should not do Pepper calls, but it might
133 // anyway (for example, our Audio test does CallOnMainThread). If it did
163 PPB_Audio_Shared* audio = static_cast<PPB_Audio_Shared*>(self); local
164 audio->Run();
178 // Deinterleave the audio data into the shared memory as float
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
AndroidAudioData.java 1 package com.jme3.audio.android;
4 import com.jme3.audio.AudioData;
5 import com.jme3.audio.AudioRenderer;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebMediaStream.cpp 144 MediaStreamComponentVector audio, video; local
147 audio.append(component);
153 m_private = MediaStreamDescriptor::create(label, audio, video);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
UserMediaRequest.cpp 68 RefPtr<MediaConstraintsImpl> audio = parseOptions(options, "audio", es); local
76 if (!audio && !video)
79 return adoptRef(new UserMediaRequest(context, controller, audio.release(), video.release(), successCallback, errorCallback));
82 UserMediaRequest::UserMediaRequest(ScriptExecutionContext* context, UserMediaController* controller, PassRefPtr<MediaConstraintsImpl> audio, PassRefPtr<MediaConstraintsImpl> video, PassRefPtr<NavigatorUserMediaSuccessCallback> successCallback, PassRefPtr<NavigatorUserMediaErrorCallback> errorCallback)
84 , m_audio(audio)
96 bool UserMediaRequest::audio() const function in class:WebCore::UserMediaRequest

Completed in 764 milliseconds

1 2 3 4 5 6 7