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

  /external/chromium_org/media/base/
audio_decoder.cc 11 AudioDecoder::AudioDecoder() {}
13 AudioDecoder::~AudioDecoder() {}
audio_decoder.h 23 class MEDIA_EXPORT AudioDecoder {
26 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
35 // Callback for AudioDecoder to return a decoded frame whenever it becomes
44 AudioDecoder();
50 virtual ~AudioDecoder();
55 // Initializes an AudioDecoder with the given DemuxerStream, executing the
82 DISALLOW_COPY_AND_ASSIGN(AudioDecoder);
  /external/chromium_org/remoting/codec/
audio_decoder.h 18 class AudioDecoder {
20 static scoped_ptr<AudioDecoder> CreateAudioDecoder(
23 virtual ~AudioDecoder() {}
  /external/chromium_org/media/cast/receiver/
audio_decoder.h 18 class AudioDecoder {
29 AudioDecoder(const scoped_refptr<CastEnvironment>& cast_environment,
33 virtual ~AudioDecoder();
58 DISALLOW_COPY_AND_ASSIGN(AudioDecoder);
audio_decoder.cc 22 class AudioDecoder::ImplBase
23 : public base::RefCountedThreadSafe<AudioDecoder::ImplBase> {
93 class AudioDecoder::OpusImpl : public AudioDecoder::ImplBase {
163 class AudioDecoder::Pcm16Impl : public AudioDecoder::ImplBase {
201 AudioDecoder::AudioDecoder(
220 AudioDecoder::~AudioDecoder() {}
    [all...]
  /frameworks/base/media/java/android/media/
DecoderCapabilities.java 39 * The AudioDecoder class represents the type of an audio decoder
41 public enum AudioDecoder {
65 * @see android.media.DecoderCapabilities.AudioDecoder
67 public static List<AudioDecoder> getAudioDecoders() {
68 List<AudioDecoder> decoderList = new ArrayList<AudioDecoder>();
71 decoderList.add(AudioDecoder.values()[native_get_audio_decoder_type(i)]);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/interface/
audio_decoder.h 56 class AudioDecoder {
66 explicit AudioDecoder(enum NetEqDecoder type)
72 virtual ~AudioDecoder() {}
133 // Creates an AudioDecoder object of type |codec_type|. Returns NULL for
134 // for unsupported codecs, and when creating an AudioDecoder is not
136 static AudioDecoder* CreateAudioDecoder(NetEqDecoder codec_type);
148 DISALLOW_COPY_AND_ASSIGN(AudioDecoder);
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 326 milliseconds