mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

Now that we have moved WebRTC from src/webrtc to src/, common_types.h and typedefs.h are triggering a cpplint error. The cpplint complaint is: Include the directory when naming .h files [build/include] [4] This CL disables the error but we have to remove these two headers from the root directory. NOPRESUBMIT=true Bug: webrtc:5876 Change-Id: I08e1b69aadcc4b28ab83bf25e3819d135d41d333 Reviewed-on: https://webrtc-review.googlesource.com/1577 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@google.com> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19859}
207 lines
6.2 KiB
C++
207 lines
6.2 KiB
C++
/*
|
|
* Copyright (c) 2015 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 MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_
|
|
#define MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_
|
|
|
|
#include <stddef.h>
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
#include "api/array_view.h"
|
|
#include "api/audio_codecs/audio_decoder.h"
|
|
#include "api/audio_codecs/audio_encoder.h"
|
|
#include "api/optional.h"
|
|
#include "modules/audio_coding/include/audio_coding_module_typedefs.h"
|
|
#include "modules/audio_coding/neteq/neteq_decoder_enum.h"
|
|
#include "rtc_base/constructormagic.h"
|
|
#include "rtc_base/scoped_ref_ptr.h"
|
|
#include "typedefs.h" // NOLINT(build/include)
|
|
|
|
namespace webrtc {
|
|
|
|
struct CodecInst;
|
|
class LockedIsacBandwidthInfo;
|
|
|
|
namespace acm2 {
|
|
|
|
class RentACodec {
|
|
public:
|
|
enum class CodecId {
|
|
#if defined(WEBRTC_CODEC_ISAC) || defined(WEBRTC_CODEC_ISACFX)
|
|
kISAC,
|
|
#endif
|
|
#ifdef WEBRTC_CODEC_ISAC
|
|
kISACSWB,
|
|
#endif
|
|
// Mono
|
|
kPCM16B,
|
|
kPCM16Bwb,
|
|
kPCM16Bswb32kHz,
|
|
// Stereo
|
|
kPCM16B_2ch,
|
|
kPCM16Bwb_2ch,
|
|
kPCM16Bswb32kHz_2ch,
|
|
// Mono
|
|
kPCMU,
|
|
kPCMA,
|
|
// Stereo
|
|
kPCMU_2ch,
|
|
kPCMA_2ch,
|
|
#ifdef WEBRTC_CODEC_ILBC
|
|
kILBC,
|
|
#endif
|
|
#ifdef WEBRTC_CODEC_G722
|
|
kG722, // Mono
|
|
kG722_2ch, // Stereo
|
|
#endif
|
|
#ifdef WEBRTC_CODEC_OPUS
|
|
kOpus, // Mono and stereo
|
|
#endif
|
|
kCNNB,
|
|
kCNWB,
|
|
kCNSWB,
|
|
#ifdef ENABLE_48000_HZ
|
|
kCNFB,
|
|
#endif
|
|
kAVT,
|
|
kAVT16kHz,
|
|
kAVT32kHz,
|
|
kAVT48kHz,
|
|
#ifdef WEBRTC_CODEC_RED
|
|
kRED,
|
|
#endif
|
|
kNumCodecs, // Implementation detail. Don't use.
|
|
|
|
// Set unsupported codecs to -1.
|
|
#if !defined(WEBRTC_CODEC_ISAC) && !defined(WEBRTC_CODEC_ISACFX)
|
|
kISAC = -1,
|
|
#endif
|
|
#ifndef WEBRTC_CODEC_ISAC
|
|
kISACSWB = -1,
|
|
#endif
|
|
// 48 kHz not supported, always set to -1.
|
|
kPCM16Bswb48kHz = -1,
|
|
#ifndef WEBRTC_CODEC_ILBC
|
|
kILBC = -1,
|
|
#endif
|
|
#ifndef WEBRTC_CODEC_G722
|
|
kG722 = -1, // Mono
|
|
kG722_2ch = -1, // Stereo
|
|
#endif
|
|
#ifndef WEBRTC_CODEC_OPUS
|
|
kOpus = -1, // Mono and stereo
|
|
#endif
|
|
#ifndef WEBRTC_CODEC_RED
|
|
kRED = -1,
|
|
#endif
|
|
#ifndef ENABLE_48000_HZ
|
|
kCNFB = -1,
|
|
#endif
|
|
|
|
kNone = -1
|
|
};
|
|
|
|
static inline size_t NumberOfCodecs() {
|
|
return static_cast<size_t>(CodecId::kNumCodecs);
|
|
}
|
|
|
|
static inline rtc::Optional<int> CodecIndexFromId(CodecId codec_id) {
|
|
const int i = static_cast<int>(codec_id);
|
|
return i >= 0 && i < static_cast<int>(NumberOfCodecs())
|
|
? rtc::Optional<int>(i)
|
|
: rtc::Optional<int>();
|
|
}
|
|
|
|
static inline rtc::Optional<CodecId> CodecIdFromIndex(int codec_index) {
|
|
return static_cast<size_t>(codec_index) < NumberOfCodecs()
|
|
? rtc::Optional<RentACodec::CodecId>(
|
|
static_cast<RentACodec::CodecId>(codec_index))
|
|
: rtc::Optional<RentACodec::CodecId>();
|
|
}
|
|
|
|
static rtc::Optional<CodecId> CodecIdByParams(const char* payload_name,
|
|
int sampling_freq_hz,
|
|
size_t channels);
|
|
static rtc::Optional<CodecInst> CodecInstById(CodecId codec_id);
|
|
static rtc::Optional<CodecId> CodecIdByInst(const CodecInst& codec_inst);
|
|
static rtc::Optional<CodecInst> CodecInstByParams(const char* payload_name,
|
|
int sampling_freq_hz,
|
|
size_t channels);
|
|
static bool IsCodecValid(const CodecInst& codec_inst);
|
|
|
|
static inline bool IsPayloadTypeValid(int payload_type) {
|
|
return payload_type >= 0 && payload_type <= 127;
|
|
}
|
|
|
|
static rtc::ArrayView<const CodecInst> Database();
|
|
|
|
static rtc::Optional<bool> IsSupportedNumChannels(CodecId codec_id,
|
|
size_t num_channels);
|
|
|
|
static rtc::Optional<NetEqDecoder> NetEqDecoderFromCodecId(
|
|
CodecId codec_id,
|
|
size_t num_channels);
|
|
|
|
// Parse codec_inst and extract payload types. If the given CodecInst was for
|
|
// the wrong sort of codec, return kSkip; otherwise, if the rate was illegal,
|
|
// return kBadFreq; otherwise, update the given RTP timestamp rate (Hz) ->
|
|
// payload type map and return kOk.
|
|
enum class RegistrationResult { kOk, kSkip, kBadFreq };
|
|
static RegistrationResult RegisterCngPayloadType(std::map<int, int>* pt_map,
|
|
const CodecInst& codec_inst);
|
|
static RegistrationResult RegisterRedPayloadType(std::map<int, int>* pt_map,
|
|
const CodecInst& codec_inst);
|
|
|
|
RentACodec();
|
|
~RentACodec();
|
|
|
|
// Creates and returns an audio encoder built to the given specification.
|
|
// Returns null in case of error.
|
|
std::unique_ptr<AudioEncoder> RentEncoder(const CodecInst& codec_inst);
|
|
|
|
struct StackParameters {
|
|
StackParameters();
|
|
~StackParameters();
|
|
|
|
std::unique_ptr<AudioEncoder> speech_encoder;
|
|
|
|
bool use_codec_fec = false;
|
|
bool use_red = false;
|
|
bool use_cng = false;
|
|
ACMVADMode vad_mode = VADNormal;
|
|
|
|
// Maps from RTP timestamp rate (in Hz) to payload type.
|
|
std::map<int, int> cng_payload_types;
|
|
std::map<int, int> red_payload_types;
|
|
};
|
|
|
|
// Creates and returns an audio encoder stack constructed to the given
|
|
// specification. If the specification isn't compatible with the encoder, it
|
|
// will be changed to match (things will be switched off). The speech encoder
|
|
// will be stolen. If the specification isn't complete, returns nullptr.
|
|
std::unique_ptr<AudioEncoder> RentEncoderStack(StackParameters* param);
|
|
|
|
// Creates and returns an iSAC decoder.
|
|
std::unique_ptr<AudioDecoder> RentIsacDecoder(int sample_rate_hz);
|
|
|
|
private:
|
|
std::unique_ptr<AudioEncoder> speech_encoder_;
|
|
std::unique_ptr<AudioEncoder> cng_encoder_;
|
|
std::unique_ptr<AudioEncoder> red_encoder_;
|
|
rtc::scoped_refptr<LockedIsacBandwidthInfo> isac_bandwidth_info_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(RentACodec);
|
|
};
|
|
|
|
} // namespace acm2
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_AUDIO_CODING_ACM2_RENT_A_CODEC_H_
|