Searched refs:AudioDecoder (Results 1 - 25 of 58) sorted by relevance

123

/external/chromium_org/media/base/
H A Daudio_decoder.cc11 AudioDecoder::AudioDecoder() {} function in class:media::AudioDecoder
13 AudioDecoder::~AudioDecoder() {}
H A Daudio_decoder.h23 class MEDIA_EXPORT AudioDecoder { class in namespace:media
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/
H A Daudio_decoder.cc14 scoped_ptr<AudioDecoder> AudioDecoder::CreateAudioDecoder(
19 return scoped_ptr<AudioDecoder>(new AudioDecoderVerbatim());
21 return scoped_ptr<AudioDecoder>(new AudioDecoderOpus());
25 return scoped_ptr<AudioDecoder>();
H A Daudio_decoder.h18 class AudioDecoder { class in namespace:remoting
20 static scoped_ptr<AudioDecoder> CreateAudioDecoder(
23 virtual ~AudioDecoder() {}
H A Daudio_decoder_verbatim.h17 class AudioDecoderVerbatim : public AudioDecoder {
H A Daudio_decoder_opus.h18 class AudioDecoderOpus : public AudioDecoder {
23 // AudioDecoder interface.
/external/chromium_org/media/cast/receiver/
H A Daudio_decoder.h18 class AudioDecoder { class in namespace:media::cast
29 AudioDecoder(const scoped_refptr<CastEnvironment>& cast_environment,
33 virtual ~AudioDecoder();
58 DISALLOW_COPY_AND_ASSIGN(AudioDecoder);
H A Daudio_decoder.cc22 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( function in class:media::cast::AudioDecoder
220 AudioDecoder::~AudioDecoder() {}
[all...]
H A Dcast_receiver_impl.h19 class AudioDecoder;
66 // AudioDecoder::DecodeFrame().
110 scoped_ptr<AudioDecoder> audio_decoder_;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_audio_decoder.h20 class MockAudioDecoder : public AudioDecoder {
22 MockAudioDecoder() : AudioDecoder(kDecoderArbitrary) {}
26 AudioDecoder::SpeechType*));
H A Dmock_decoder_database.h34 AudioDecoder* decoder));
42 AudioDecoder*(uint8_t rtp_payload_type));
54 AudioDecoder*());
58 AudioDecoder*());
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_decoder.cc19 int AudioDecoder::DecodeRedundant(const uint8_t* encoded,
26 bool AudioDecoder::HasDecodePlc() const { return false; }
28 int AudioDecoder::DecodePlc(int num_frames, int16_t* decoded) { return -1; }
30 int AudioDecoder::IncomingPacket(const uint8_t* payload,
38 int AudioDecoder::ErrorCode() { return 0; }
40 int AudioDecoder::PacketDuration(const uint8_t* encoded, size_t encoded_len) {
44 int AudioDecoder::PacketDurationRedundant(const uint8_t* encoded,
49 bool AudioDecoder::PacketHasFec(const uint8_t* encoded,
54 NetEqDecoder AudioDecoder::codec_type() const { return codec_type_; }
56 bool AudioDecoder
[all...]
H A Daudio_decoder_unittest.cc114 AudioDecoder::SpeechType speech_type;
181 AudioDecoder::SpeechType speech_type1, speech_type2;
199 AudioDecoder::SpeechType speech_type;
220 AudioDecoder* decoder_;
315 AudioDecoder::SpeechType speech_type;
529 decoder_ = AudioDecoder::CreateAudioDecoder(kDecoderCELT_32);
560 decoder_ = AudioDecoder::CreateAudioDecoder(kDecoderCELT_32_2ch);
675 EXPECT_TRUE(AudioDecoder::CodecSupported(kDecoderPCMu));
684 EXPECT_TRUE(AudioDecoder::CodecSupported(kDecoderPCMa));
693 EXPECT_TRUE(AudioDecoder
[all...]
H A Ddecoder_database.h25 class AudioDecoder;
48 DecoderInfo(NetEqDecoder ct, int fs, AudioDecoder* dec, bool ext)
59 AudioDecoder* decoder;
79 // any AudioDecoder objects that were not externally created and inserted
88 // Registers an externally created AudioDecoder object, and associates it
92 int fs_hz, AudioDecoder* decoder);
108 // Returns a pointer to the AudioDecoder object associated with
109 // |rtp_payload_type|, or NULL if none is registered. If the AudioDecoder
111 virtual AudioDecoder* GetDecoder(uint8_t rtp_payload_type);
128 // decoder's AudioDecoder objec
[all...]
H A Dpost_decode_vad.cc48 AudioDecoder::SpeechType speech_type,
55 if (speech_type == AudioDecoder::kComfortNoise || sid_frame ||
H A Daudio_decoder_impl.h27 class AudioDecoderPcmU : public AudioDecoder {
29 AudioDecoderPcmU() : AudioDecoder(kDecoderPCMu) {}
39 class AudioDecoderPcmA : public AudioDecoder {
41 AudioDecoderPcmA() : AudioDecoder(kDecoderPCMa) {}
76 class AudioDecoderPcm16B : public AudioDecoder {
101 class AudioDecoderIlbc : public AudioDecoder {
117 class AudioDecoderIsac : public AudioDecoder {
157 class AudioDecoderIsacFix : public AudioDecoder {
177 class AudioDecoderG722 : public AudioDecoder {
216 class AudioDecoderCelt : public AudioDecoder {
[all...]
H A Dpost_decode_vad.h50 AudioDecoder::SpeechType speech_type, bool sid_frame, int fs_hz);
H A Ddecoder_database.cc44 if (!AudioDecoder::CodecSupported(codec_type)) {
47 int fs_hz = AudioDecoder::CodecSampleRateHz(codec_type);
61 AudioDecoder* decoder) {
65 if (!AudioDecoder::CodecSupported(codec_type)) {
123 AudioDecoder* DecoderDatabase::GetDecoder(uint8_t rtp_payload_type) {
136 AudioDecoder* decoder = AudioDecoder::CreateAudioDecoder(info->codec_type);
195 // Delete the AudioDecoder object, unless it is an externally created
206 AudioDecoder* DecoderDatabase::GetActiveDecoder() {
230 // Delete the AudioDecoder objec
[all...]
H A Dneteq_impl.h120 virtual int RegisterExternalDecoder(AudioDecoder* decoder,
244 AudioDecoder::SpeechType* speech_type)
250 AudioDecoder* decoder,
252 AudioDecoder::SpeechType* speech_type)
258 AudioDecoder::SpeechType speech_type,
264 AudioDecoder::SpeechType speech_type,
274 AudioDecoder::SpeechType speech_type,
281 AudioDecoder::SpeechType speech_type,
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/interface/
H A Daudio_decoder.h56 class AudioDecoder { class in namespace:webrtc
66 explicit AudioDecoder(enum NetEqDecoder type) function in class:webrtc::AudioDecoder
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/media/filters/
H A Ddecoder_stream_traits.h14 class AudioDecoder;
27 typedef AudioDecoder DecoderType;
H A Ddecrypting_audio_decoder_unittest.cc140 AudioDecoder::Status status) {
174 DecodeAndExpect(encrypted_buffer_, AudioDecoder::kOk);
184 DecodeAndExpect(DecoderBuffer::CreateEOSBuffer(), AudioDecoder::kOk);
251 MOCK_METHOD1(DecodeDone, void(AudioDecoder::Status));
330 DecodeAndExpect(encrypted_buffer_, AudioDecoder::kDecodeError);
358 DecodeAndExpect(encrypted_buffer_, AudioDecoder::kOk);
397 EXPECT_CALL(*this, DecodeDone(AudioDecoder::kOk));
411 EXPECT_CALL(*this, DecodeDone(AudioDecoder::kOk));
440 EXPECT_CALL(*this, DecodeDone(AudioDecoder::kAborted));
450 EXPECT_CALL(*this, DecodeDone(AudioDecoder
[all...]
H A Daudio_decoder_unittest.cc99 last_decode_status_(AudioDecoder::kDecodeError) {
121 last_decode_status_ = AudioDecoder::kDecodeError;
220 void DecodeFinished(AudioDecoder::Status status) {
289 AudioDecoder::Status last_decode_status() const {
299 scoped_ptr<AudioDecoder> decoder_;
302 AudioDecoder::Status last_decode_status_;
327 ASSERT_EQ(last_decode_status(), AudioDecoder::kOk);
357 EXPECT_EQ(AudioDecoder::kOk, last_decode_status());
370 EXPECT_EQ(AudioDecoder::kDecodeError, last_decode_status());
/external/chromium_org/remoting/client/
H A Daudio_decode_scheduler.h22 class AudioDecoder;
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_isac.h32 class ACMISAC : public ACMGenericCodec, AudioDecoder {
70 // Methods below are inherited from AudioDecoder.
122 virtual AudioDecoder* Decoder(int codec_id) OVERRIDE;

Completed in 4152 milliseconds

123