HomeSort by relevance Sort by last modified time
    Searched full:audiodecoder (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_decoder.cc 20 int AudioDecoder::Decode(const uint8_t* encoded, size_t encoded_len,
23 TRACE_EVENT0("webrtc", "AudioDecoder::Decode");
33 int AudioDecoder::DecodeRedundant(const uint8_t* encoded, size_t encoded_len,
36 TRACE_EVENT0("webrtc", "AudioDecoder::DecodeRedundant");
46 int AudioDecoder::DecodeRedundantInternal(const uint8_t* encoded,
54 bool AudioDecoder::HasDecodePlc() const { return false; }
56 size_t AudioDecoder::DecodePlc(size_t num_frames, int16_t* decoded) {
60 int AudioDecoder::IncomingPacket(const uint8_t* payload,
68 int AudioDecoder::ErrorCode() { return 0; }
70 int AudioDecoder::PacketDuration(const uint8_t* encoded
    [all...]
audio_decoder.h 24 class AudioDecoder {
34 AudioDecoder() = default;
35 virtual ~AudioDecoder() = default;
119 RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoder);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_decoder_impl.h 28 // AudioDecoderCng is a special type of AudioDecoder. It inherits from
29 // AudioDecoder just to fit in the DecoderDatabase. None of the class methods
32 // AudioDecoder that is stored in DecoderDatabase. Then AudioDecoder and a
34 class AudioDecoderCng : public AudioDecoder {
68 // Creates an AudioDecoder object of type |codec_type|. Returns NULL for for
69 // unsupported codecs, and when creating an AudioDecoder is not applicable
71 AudioDecoder* CreateAudioDecoder(NetEqDecoder codec_type);
decoder_database.h 41 DecoderInfo(NetEqDecoder ct, int fs, AudioDecoder* dec, bool ext)
46 AudioDecoder* dec,
60 AudioDecoder* decoder = nullptr;
79 // any AudioDecoder objects that were not externally created and inserted
91 // Registers an externally created AudioDecoder object, and associates it
97 AudioDecoder* decoder);
113 // Returns a pointer to the AudioDecoder object associated with
114 // |rtp_payload_type|, or NULL if none is registered. If the AudioDecoder
116 virtual AudioDecoder* GetDecoder(uint8_t rtp_payload_type);
133 // decoder's AudioDecoder object is deleted
    [all...]
post_decode_vad.cc 49 AudioDecoder::SpeechType speech_type,
56 if (speech_type == AudioDecoder::kComfortNoise || sid_frame ||
decoder_database.cc 64 AudioDecoder* decoder) {
124 AudioDecoder* DecoderDatabase::GetDecoder(uint8_t rtp_payload_type) {
137 AudioDecoder* decoder = CreateAudioDecoder(info->codec_type);
195 // Delete the AudioDecoder object, unless it is an externally created
206 AudioDecoder* DecoderDatabase::GetActiveDecoder() {
230 // Delete the AudioDecoder object, unless it is an externally created
240 AudioDecoder* DecoderDatabase::GetActiveCngDecoder() {
neteq_impl.h 117 int RegisterExternalDecoder(AudioDecoder* decoder,
245 AudioDecoder::SpeechType* speech_type)
249 int DecodeCng(AudioDecoder* decoder, int* decoded_length,
250 AudioDecoder::SpeechType* speech_type)
256 AudioDecoder* decoder,
258 AudioDecoder::SpeechType* speech_type)
264 AudioDecoder::SpeechType speech_type,
270 AudioDecoder::SpeechType speech_type,
280 AudioDecoder::SpeechType speech_type,
288 AudioDecoder::SpeechType speech_type
    [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/webrtc/webrtc/test/fuzzers/
audio_decoder_fuzzer.h 20 class AudioDecoder;
24 AudioDecoder* decoder,
audio_decoder_fuzzer.cc 31 AudioDecoder* decoder,
41 AudioDecoder::SpeechType speech_type;
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_decoder_database.h 38 AudioDecoder* decoder));
46 AudioDecoder*(uint8_t rtp_payload_type));
58 AudioDecoder*());
62 AudioDecoder*());
mock_audio_decoder.h 20 class MockAudioDecoder : public AudioDecoder {
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/
audio_decoder_pcm.h 19 class AudioDecoderPcmU final : public AudioDecoder {
40 class AudioDecoderPcmA final : public AudioDecoder {
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/
audio_decoder_g722.h 20 class AudioDecoderG722 final : public AudioDecoder {
41 class AudioDecoderG722Stereo final : public AudioDecoder {
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
audio_decoder_ilbc.h 20 class AudioDecoderIlbc final : public AudioDecoder {
  /external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
audio_decoder_pcm16b.h 19 class AudioDecoderPcm16B final : public AudioDecoder {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaProfileReader.java 25 import android.media.DecoderCapabilities.AudioDecoder;
34 private static final List<AudioDecoder> audioDecoders = DecoderCapabilities.getAudioDecoders();
61 for (AudioDecoder decoder: audioDecoders) {
62 if (decoder == AudioDecoder.AUDIO_DECODER_WMA) {
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_receive_test_oldapi.h 22 class AudioDecoder;
51 AudioDecoder* external_decoder,
codec_manager.h 26 class AudioDecoder;
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_external_decoder_test.h 30 NetEqExternalDecoderTest(NetEqDecoder codec, AudioDecoder* decoder);
55 AudioDecoder* decoder_;
neteq_external_decoder_test.cc 21 AudioDecoder* decoder)
  /external/webrtc/webrtc/
audio_receive_stream.h 26 class AudioDecoder;
101 // AudioDecoder instances once the Config is submitted to
104 std::map<uint8_t, AudioDecoder*> decoder_map;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
audio_decoder_isac_t.h 22 class AudioDecoderIsacT final : public AudioDecoder {
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
audio_decoder_opus.h 19 class AudioDecoderOpus final : public AudioDecoder {
  /cts/tests/tests/media/src/android/media/cts/
ExtractDecodeEditEncodeMuxTest.java 347 MediaCodec audioDecoder = null;
384 audioDecoder = createAudioDecoder(mcl, inputFormat);
395 audioDecoder,
460 if (audioDecoder != null) {
461 audioDecoder.stop();
462 audioDecoder.release();
465 Log.e(TAG, "error while releasing audioDecoder", e);
703 MediaCodec audioDecoder,
727 audioDecoderInputBuffers = audioDecoder.getInputBuffers();
728 audioDecoderOutputBuffers = audioDecoder.getOutputBuffers()
    [all...]

Completed in 750 milliseconds

1 2 3