
Reason for revert: Breaking Chromium FYI bots. Original issue's description: > Don't link with audio codecs that we don't use > > We used to link with all audio codecs unconditionally (except Opus); > this patch makes gyp and gn only link to the ones that are used. > > (This unfortunately fails to have a measurable impact on Chromium > binary size, at least on x86_64 Linux; it turns out that iLBC and iSAC > fix were already being excluded from Chromium by some other means > (likely just the linker omitting compilation units with no incoming > references).) > > BUG=webrtc:4557 > > Committed: https://crrev.com/f66a9251424351ea6d631c54dd1feb64cc13d809 > Cr-Commit-Position: refs/heads/master@{#10046} TBR=henrik.lundin@webrtc.org,tina.legrand@webrtc.org,kjellander@webrtc.org,kwiberg@webrtc.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=webrtc:4557 Review URL: https://codereview.webrtc.org/1368933002 Cr-Commit-Position: refs/heads/master@{#10069}
107 lines
3.4 KiB
C++
107 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_AUDIO_DECODER_IMPL_H_
|
|
#define WEBRTC_MODULES_AUDIO_CODING_NETEQ_AUDIO_DECODER_IMPL_H_
|
|
|
|
#include <assert.h>
|
|
|
|
#ifndef AUDIO_DECODER_UNITTEST
|
|
// If this is compiled as a part of the audio_deoder_unittest, the codec
|
|
// selection is made in the gypi file instead of in engine_configurations.h.
|
|
#include "webrtc/engine_configurations.h"
|
|
#endif
|
|
#include "webrtc/base/constructormagic.h"
|
|
#include "webrtc/modules/audio_coding/codecs/audio_decoder.h"
|
|
#include "webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h"
|
|
#ifdef WEBRTC_CODEC_G722
|
|
#include "webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h"
|
|
#endif
|
|
#include "webrtc/typedefs.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// AudioDecoderCng is a special type of AudioDecoder. It inherits from
|
|
// AudioDecoder just to fit in the DecoderDatabase. None of the class methods
|
|
// should be used, except constructor, destructor, and accessors.
|
|
// TODO(hlundin): Consider the possibility to create a super-class to
|
|
// AudioDecoder that is stored in DecoderDatabase. Then AudioDecoder and a
|
|
// specific CngDecoder class could both inherit from that class.
|
|
class AudioDecoderCng : public AudioDecoder {
|
|
public:
|
|
explicit AudioDecoderCng();
|
|
~AudioDecoderCng() override;
|
|
void Reset() override;
|
|
int IncomingPacket(const uint8_t* payload,
|
|
size_t payload_len,
|
|
uint16_t rtp_sequence_number,
|
|
uint32_t rtp_timestamp,
|
|
uint32_t arrival_timestamp) override;
|
|
|
|
CNG_dec_inst* CngDecoderInstance() override;
|
|
size_t Channels() const override;
|
|
|
|
protected:
|
|
int DecodeInternal(const uint8_t* encoded,
|
|
size_t encoded_len,
|
|
int sample_rate_hz,
|
|
int16_t* decoded,
|
|
SpeechType* speech_type) override;
|
|
|
|
private:
|
|
CNG_dec_inst* dec_state_;
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderCng);
|
|
};
|
|
|
|
enum NetEqDecoder {
|
|
kDecoderPCMu,
|
|
kDecoderPCMa,
|
|
kDecoderPCMu_2ch,
|
|
kDecoderPCMa_2ch,
|
|
kDecoderILBC,
|
|
kDecoderISAC,
|
|
kDecoderISACswb,
|
|
kDecoderISACfb,
|
|
kDecoderPCM16B,
|
|
kDecoderPCM16Bwb,
|
|
kDecoderPCM16Bswb32kHz,
|
|
kDecoderPCM16Bswb48kHz,
|
|
kDecoderPCM16B_2ch,
|
|
kDecoderPCM16Bwb_2ch,
|
|
kDecoderPCM16Bswb32kHz_2ch,
|
|
kDecoderPCM16Bswb48kHz_2ch,
|
|
kDecoderPCM16B_5ch,
|
|
kDecoderG722,
|
|
kDecoderG722_2ch,
|
|
kDecoderRED,
|
|
kDecoderAVT,
|
|
kDecoderCNGnb,
|
|
kDecoderCNGwb,
|
|
kDecoderCNGswb32kHz,
|
|
kDecoderCNGswb48kHz,
|
|
kDecoderArbitrary,
|
|
kDecoderOpus,
|
|
kDecoderOpus_2ch,
|
|
};
|
|
|
|
// Returns true if |codec_type| is supported.
|
|
bool CodecSupported(NetEqDecoder codec_type);
|
|
|
|
// Returns the sample rate for |codec_type|.
|
|
int CodecSampleRateHz(NetEqDecoder codec_type);
|
|
|
|
// Creates an AudioDecoder object of type |codec_type|. Returns NULL for for
|
|
// unsupported codecs, and when creating an AudioDecoder is not applicable
|
|
// (e.g., for RED and DTMF/AVT types).
|
|
AudioDecoder* CreateAudioDecoder(NetEqDecoder codec_type);
|
|
|
|
} // namespace webrtc
|
|
#endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ_AUDIO_DECODER_IMPL_H_
|