Adding NOLINT for typedefs.h and common_types.h
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}
This commit is contained in:
committed by
Commit Bot
parent
563934e726
commit
7120742701
@ -11,7 +11,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_
|
||||
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
#if defined(__cplusplus) || defined(c_plusplus)
|
||||
extern "C" {
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_TABLES_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_TABLES_H_
|
||||
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
#if defined(__cplusplus) || defined(c_plusplus)
|
||||
extern "C" {
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
#include "rtc_base/sanitizer.h"
|
||||
#include "system_wrappers/include/cpu_features_wrapper.h"
|
||||
#include "test/gtest.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
class FilterBanksTest : public testing::Test {
|
||||
protected:
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#include "modules/audio_coding/codecs/isac/fix/source/codec.h"
|
||||
#include "system_wrappers/include/cpu_features_wrapper.h"
|
||||
#include "test/gtest.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
class FiltersTest : public testing::Test {
|
||||
protected:
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
|
||||
#include "settings.h"
|
||||
#include "signal_processing_library.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/* Filter ar_g_Q0[] and ar_f_Q0[] through an AR filter with coefficients
|
||||
* cth_Q15[] and sth_Q15[].
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#include <stddef.h>
|
||||
|
||||
#include "modules/audio_coding/codecs/isac/fix/source/settings.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
// Filter ar_g_Q0[] and ar_f_Q0[] through an AR filter with coefficients
|
||||
// cth_Q15[] and sth_Q15[].
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#include "modules/audio_coding/codecs/isac/fix/source/lpc_masking_model.h"
|
||||
#include "system_wrappers/include/cpu_features_wrapper.h"
|
||||
#include "test/gtest.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
class LpcMaskingModelTest : public testing::Test {
|
||||
protected:
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_LPC_TABLES_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_LPC_TABLES_H_
|
||||
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/* indices of KLT coefficients used */
|
||||
extern const uint16_t WebRtcIsacfix_kSelIndGain[12];
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_GAIN_TABLES_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_GAIN_TABLES_H_
|
||||
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/********************* Pitch Filter Gain Coefficient Tables ************************/
|
||||
/* cdf for quantized pitch filter gains */
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_LAG_TABLES_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_LAG_TABLES_H_
|
||||
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/********************* Pitch Filter Lag Coefficient Tables ************************/
|
||||
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
#define MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_SPECTRUM_AR_MODEL_TABLES_H_
|
||||
|
||||
#include "settings.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/********************* AR Coefficient Tables ************************/
|
||||
/* cdf for quantized reflection coefficient 1 */
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
#include "common_audio/signal_processing/include/signal_processing_library.h"
|
||||
#include "modules/audio_coding/codecs/isac/bandwidth_info.h"
|
||||
#include "modules/audio_coding/codecs/isac/fix/source/settings.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/* Bitstream struct for decoder */
|
||||
typedef struct Bitstreamstruct_dec {
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
*/
|
||||
|
||||
#include "modules/audio_coding/codecs/isac/fix/source/settings.h"
|
||||
#include "typedefs.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/* Cosine table 1 in Q14. */
|
||||
const int16_t WebRtcIsacfix_kCosTab1[FRAMESAMPLES/2] = {
|
||||
|
||||
Reference in New Issue
Block a user