Ensured that all files in APM are using the webrtc namespace

This CL adds namespaces to those files remaining within APM that do not
have any such.

BUG=webrtc:5298

Change-Id: I710b3d2a3644bea9d4bdffef0d77883b30303338
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/171111
Commit-Queue: Per Åhgren <peah@webrtc.org>
Reviewed-by: Sam Zackrisson <saza@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#30850}
This commit is contained in:
Per Åhgren
2020-03-20 16:43:34 +01:00
committed by Commit Bot
parent be36db1024
commit e7175c9a09
16 changed files with 66 additions and 0 deletions

View File

@ -11,6 +11,8 @@
#ifndef MODULES_AUDIO_PROCESSING_AGC_GAIN_MAP_INTERNAL_H_
#define MODULES_AUDIO_PROCESSING_AGC_GAIN_MAP_INTERNAL_H_
namespace webrtc {
static const int kGainMapSize = 256;
// Uses parameters: si = 2, sf = 0.25, D = 8/256
static const int kGainMap[kGainMapSize] = {
@ -33,4 +35,6 @@ static const int kGainMap[kGainMapSize] = {
60, 60, 60, 61, 61, 61, 61, 62, 62, 62, 62, 63, 63, 63, 63,
64};
} // namespace webrtc
#endif // MODULES_AUDIO_PROCESSING_AGC_GAIN_MAP_INTERNAL_H_

View File

@ -12,6 +12,8 @@
#include <math.h>
namespace webrtc {
static const double kLog10 = 2.30258509299;
static const double kLinear2DbScale = 20.0 / kLog10;
static const double kLinear2LoudnessScale = 13.4 / kLog10;
@ -33,3 +35,5 @@ double Db2Loudness(double db) {
double Dbfs2Loudness(double dbfs) {
return Db2Loudness(90 + dbfs);
}
} // namespace webrtc

View File

@ -11,6 +11,8 @@
#ifndef MODULES_AUDIO_PROCESSING_AGC_UTILITY_H_
#define MODULES_AUDIO_PROCESSING_AGC_UTILITY_H_
namespace webrtc {
// TODO(turajs): Add description of function.
double Loudness2Db(double loudness);
@ -20,4 +22,6 @@ double Db2Loudness(double db);
double Dbfs2Loudness(double dbfs);
} // namespace webrtc
#endif // MODULES_AUDIO_PROCESSING_AGC_UTILITY_H_