/* * 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. */ // GMM tables for inactive segments. Generated by MakeGmmTables.m. #ifndef MODULES_AUDIO_PROCESSING_VAD_NOISE_GMM_TABLES_H_ #define MODULES_AUDIO_PROCESSING_VAD_NOISE_GMM_TABLES_H_ namespace webrtc { static const int kNoiseGmmNumMixtures = …; static const int kNoiseGmmDim = …; static const double kNoiseGmmCovarInverse[kNoiseGmmNumMixtures][kNoiseGmmDim][kNoiseGmmDim] = …; static const double kNoiseGmmMean[kNoiseGmmNumMixtures][kNoiseGmmDim] = …; static const double kNoiseGmmWeights[kNoiseGmmNumMixtures] = …; } // namespace webrtc #endif // MODULES_AUDIO_PROCESSING_VAD_NOISE_GMM_TABLES_H_