- always link AMR & Opus codecs; it reduces number of problems during builds.

This commit is contained in:
Dmytro Bogovych 2019-03-14 13:37:12 +02:00
parent e8963264e9
commit c27d7d2b6c
8 changed files with 488 additions and 497 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,6 @@
#include "MT_Codec.h"
#include "../helper/HL_Pointer.h"
#if defined(USE_AMR_CODEC)
# include "opencore-amr/amrnb/interf_enc.h"
# include "opencore-amr/amrnb/interf_dec.h"
@ -156,7 +155,6 @@ namespace MT
} // End of MT namespace
#endif
#endif // MT_AMRCODEC_H

View File

@ -227,7 +227,6 @@ int G729Codec::plc(int lostFrames, void* output, int outputCapacity)
}
#ifdef USE_OPUS_CODEC
// -------------- Opus -------------------
#define OPUS_CODEC_NAME "OPUS"
#define OPUS_CODEC_RATE 16000
@ -528,8 +527,6 @@ int OpusCodec::plc(int lostFrames, void* output, int outputCapacity)
return lostFrames * pcmLength();
}
#endif
// -------------- ILBC -------------------
#define ILBC_CODEC_NAME "ILBC"

View File

@ -24,9 +24,7 @@ extern "C"
#include "libg729/g729_typedef.h"
#include "libg729/g729_ld8a.h"
#ifdef USE_OPUS_CODEC
# include "opus.h"
#endif
#include "opus.h"
namespace MT
{
@ -66,8 +64,6 @@ namespace MT
int plc(int lostFrames, void* output, int outputCapacity) override;
};
#ifdef USE_OPUS_CODEC
class OpusCodec: public Codec
{
protected:
@ -124,7 +120,6 @@ namespace MT
int decode(const void* input, int inputBytes, void* output, int outputCapacity);
int plc(int lostFrames, void* output, int outputCapacity);
};
#endif
class IlbcCodec: public Codec
{

View File

@ -12,10 +12,7 @@
#include "../helper/HL_Log.h"
#include "../audio/Audio_Interface.h"
#include "../audio/Audio_Resampler.h"
#if defined(USE_AMR_CODEC)
# include "MT_AmrCodec.h"
#endif
#include "MT_AmrCodec.h"
#include <algorithm>
@ -573,9 +570,7 @@ bool AudioReceiver::getAudio(Audio::DataWindow& output, DecodeOptions options, i
result = mFrameCount > 0;
// Check for bitrate counter
#if defined(USE_AMR_CODEC)
processStatisticsWithAmrCodec(mCodec.get());
#endif
}
else
ICELogMedia(<< "RTP packet with tail.");
@ -692,8 +687,6 @@ float AudioReceiver::calculatePvqaMos(int rate, std::string& report)
}
#endif
#if defined(USE_AMR_CODEC)
void AudioReceiver::processStatisticsWithAmrCodec(Codec* c)
{
AmrNbCodec* nb = dynamic_cast<AmrNbCodec*>(c);
@ -705,7 +698,6 @@ void AudioReceiver::processStatisticsWithAmrCodec(Codec* c)
if (wb != nullptr)
mStat.mBitrateSwitchCounter = wb->getSwitchCounter();
}
#endif
int AudioReceiver::getSize() const
{

View File

@ -182,9 +182,7 @@ namespace MT
std::shared_ptr<Audio::DataWindow> mPvqaBuffer;
#endif
#if defined(USE_AMR_CODEC)
void processStatisticsWithAmrCodec(Codec* c);
#endif
};
class DtmfReceiver: public Receiver

View File

@ -1,4 +1,4 @@
/* Copyright(C) 2007-2017 VoIPobjects (voipobjects.com)
/* Copyright(C) 2007-2019 VoIPobjects (voipobjects.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@ -18,7 +18,6 @@ CodecList::CodecList(const Settings& settings)
:mSettings(settings)
{
//mFactoryList.push_back(new OpusCodec::OpusFactory(16000, 1));
#ifdef USE_OPUS_CODEC
if (settings.mOpusSpec.empty())
{
mFactoryList.push_back(new OpusCodec::OpusFactory(48000, 2, MT_OPUS_CODEC_PT));
@ -30,8 +29,7 @@ CodecList::CodecList(const Settings& settings)
mFactoryList.push_back(new OpusCodec::OpusFactory(spec.mRate, spec.mChannels, spec.mPayloadType));
}
}
#endif
#ifdef USE_AMR_CODEC
for (int pt: mSettings.mAmrWbPayloadType)
mFactoryList.push_back(new AmrWbCodec::CodecFactory({mSettings.mWrapIuUP, false, pt}));
for (int pt: mSettings.mAmrWbOctetPayloadType)
@ -44,7 +42,6 @@ CodecList::CodecList(const Settings& settings)
mFactoryList.push_back(new GsmEfrCodec::GsmEfrFactory(mSettings.mWrapIuUP, mSettings.mGsmEfrPayloadType));
#endif
//mFactoryList.push_back(new IsacCodec::IsacFactory16K(mSettings.mIsac16KPayloadType));
//mFactoryList.push_back(new IlbcCodec::IlbcFactory(mSettings.mIlbc20PayloadType, mSettings.mIlbc30PayloadType));
mFactoryList.push_back(new G711Codec::AlawFactory());
@ -66,7 +63,7 @@ CodecList::~CodecList()
int CodecList::count() const
{
return (int)mFactoryList.size();
return static_cast<int>(mFactoryList.size());
}
Codec::Factory& CodecList::codecAt(int index) const

View File

@ -258,9 +258,7 @@ Statistics& Statistics::operator += (const Statistics& src)
if (src.mFirstRtpTime.is_initialized())
mFirstRtpTime = src.mFirstRtpTime;
#if defined(USE_AMR_CODEC)
mBitrateSwitchCounter += src.mBitrateSwitchCounter;
#endif
mRemotePeer = src.mRemotePeer;
mSsrc = src.mSsrc;