diff --git a/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.c b/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.c index ab43aef8ac..bc08d431a6 100644 --- a/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.c +++ b/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.c @@ -11,7 +11,7 @@ #include "cng_helpfuns.h" #include "signal_processing_library.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" #include "webrtc_cng.h" /* Values in |k| are Q15, and |a| Q12. */ diff --git a/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.h b/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.h index de9e0d0a30..a553a7615e 100644 --- a/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.h +++ b/webrtc/modules/audio_coding/codecs/cng/cng_helpfuns.h @@ -10,7 +10,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_CNG_HELPFUNS_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_CNG_HELPFUNS_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" #ifdef __cplusplus extern "C" { diff --git a/webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h b/webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h index 6030f8ebe7..d90a269191 100644 --- a/webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h +++ b/webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h @@ -12,7 +12,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_MAIN_INTERFACE_WEBRTC_CNG_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_CNG_MAIN_INTERFACE_WEBRTC_CNG_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" #ifdef __cplusplus extern "C" { diff --git a/webrtc/modules/audio_coding/codecs/g711/g711.c b/webrtc/modules/audio_coding/codecs/g711/g711.c index ac9e44a651..a183757ec5 100644 --- a/webrtc/modules/audio_coding/codecs/g711/g711.c +++ b/webrtc/modules/audio_coding/codecs/g711/g711.c @@ -21,7 +21,7 @@ */ #include "g711.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" /* Copied from the CCITT G.711 specification */ static const uint8_t ulaw_to_alaw_table[256] = { diff --git a/webrtc/modules/audio_coding/codecs/g711/g711.h b/webrtc/modules/audio_coding/codecs/g711/g711.h index f34d266677..3b07d8ba8f 100644 --- a/webrtc/modules/audio_coding/codecs/g711/g711.h +++ b/webrtc/modules/audio_coding/codecs/g711/g711.h @@ -49,7 +49,7 @@ specification by other means. extern "C" { #endif -#include "typedefs.h" +#include "webrtc/typedefs.h" #if defined(__i386__) /*! \brief Find the bit position of the highest set bit in a word diff --git a/webrtc/modules/audio_coding/codecs/g711/g711_interface.c b/webrtc/modules/audio_coding/codecs/g711/g711_interface.c index 087e3e11cb..134c1e4e19 100644 --- a/webrtc/modules/audio_coding/codecs/g711/g711_interface.c +++ b/webrtc/modules/audio_coding/codecs/g711/g711_interface.c @@ -10,7 +10,7 @@ #include #include "g711.h" #include "g711_interface.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" int16_t WebRtcG711_EncodeA(void* state, int16_t* speechIn, diff --git a/webrtc/modules/audio_coding/codecs/g711/include/g711_interface.h b/webrtc/modules/audio_coding/codecs/g711/include/g711_interface.h index bee5ffad50..83357e474a 100644 --- a/webrtc/modules/audio_coding/codecs/g711/include/g711_interface.h +++ b/webrtc/modules/audio_coding/codecs/g711/include/g711_interface.h @@ -11,7 +11,7 @@ #ifndef MODULES_AUDIO_CODING_CODECS_G711_MAIN_INTERFACE_G711_INTERFACE_H_ #define MODULES_AUDIO_CODING_CODECS_G711_MAIN_INTERFACE_G711_INTERFACE_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" // Comfort noise constants #define G711_WEBRTC_SPEECH 1 diff --git a/webrtc/modules/audio_coding/codecs/g722/g722_decode.c b/webrtc/modules/audio_coding/codecs/g722/g722_decode.c index e62af981fd..65ca77bad5 100644 --- a/webrtc/modules/audio_coding/codecs/g722/g722_decode.c +++ b/webrtc/modules/audio_coding/codecs/g722/g722_decode.c @@ -34,13 +34,12 @@ #include #endif -#include #include +#include #include -#include "typedefs.h" #include "g722_enc_dec.h" - +#include "webrtc/typedefs.h" #if !defined(FALSE) #define FALSE 0 diff --git a/webrtc/modules/audio_coding/codecs/g722/g722_enc_dec.h b/webrtc/modules/audio_coding/codecs/g722/g722_enc_dec.h index ef279ac5a8..da61224562 100644 --- a/webrtc/modules/audio_coding/codecs/g722/g722_enc_dec.h +++ b/webrtc/modules/audio_coding/codecs/g722/g722_enc_dec.h @@ -31,6 +31,8 @@ #if !defined(_G722_ENC_DEC_H_) #define _G722_ENC_DEC_H_ +#include "webrtc/typedefs.h" + /*! \page g722_page G.722 encoding and decoding \section g722_page_sec_1 What does it do? The G.722 module is a bit exact implementation of the ITU G.722 specification for all three diff --git a/webrtc/modules/audio_coding/codecs/g722/g722_encode.c b/webrtc/modules/audio_coding/codecs/g722/g722_encode.c index 5b07615a0c..03ac3c52fa 100644 --- a/webrtc/modules/audio_coding/codecs/g722/g722_encode.c +++ b/webrtc/modules/audio_coding/codecs/g722/g722_encode.c @@ -34,12 +34,12 @@ #include #endif -#include #include +#include #include -#include "typedefs.h" #include "g722_enc_dec.h" +#include "webrtc/typedefs.h" #if !defined(FALSE) #define FALSE 0 diff --git a/webrtc/modules/audio_coding/codecs/g722/g722_interface.c b/webrtc/modules/audio_coding/codecs/g722/g722_interface.c index 7075669f59..a52981b9ad 100644 --- a/webrtc/modules/audio_coding/codecs/g722/g722_interface.c +++ b/webrtc/modules/audio_coding/codecs/g722/g722_interface.c @@ -12,10 +12,9 @@ #include #include -#include "g722_interface.h" #include "g722_enc_dec.h" -#include "typedefs.h" - +#include "g722_interface.h" +#include "webrtc/typedefs.h" int16_t WebRtcG722_CreateEncoder(G722EncInst **G722enc_inst) { diff --git a/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h b/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h index 0948a1831c..1d3d79908a 100644 --- a/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h +++ b/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h @@ -11,7 +11,7 @@ #ifndef MODULES_AUDIO_CODING_CODECS_G722_MAIN_INTERFACE_G722_INTERFACE_H_ #define MODULES_AUDIO_CODING_CODECS_G722_MAIN_INTERFACE_G722_INTERFACE_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" /* * Solution to support multiple instances diff --git a/webrtc/modules/audio_coding/codecs/g722/test/testG722.cc b/webrtc/modules/audio_coding/codecs/g722/test/testG722.cc index d51301d511..9df147692b 100644 --- a/webrtc/modules/audio_coding/codecs/g722/test/testG722.cc +++ b/webrtc/modules/audio_coding/codecs/g722/test/testG722.cc @@ -15,7 +15,7 @@ #include #include #include -#include "typedefs.h" +#include "webrtc/typedefs.h" /* include API */ #include "g722_interface.h" diff --git a/webrtc/modules/audio_coding/codecs/ilbc/constants.h b/webrtc/modules/audio_coding/codecs/ilbc/constants.h index cdc8a9c56e..ff6370e14c 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/constants.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/constants.h @@ -20,7 +20,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_CONSTANTS_H_ #include "defines.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" /* high pass filters */ diff --git a/webrtc/modules/audio_coding/codecs/ilbc/defines.h b/webrtc/modules/audio_coding/codecs/ilbc/defines.h index b60eaf4813..796d7b5862 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/defines.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/defines.h @@ -18,9 +18,9 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DEFINES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DEFINES_H_ -#include "typedefs.h" -#include "signal_processing_library.h" #include +#include "signal_processing_library.h" +#include "webrtc/typedefs.h" /* general codec settings */ diff --git a/webrtc/modules/audio_coding/codecs/ilbc/interface/ilbc.h b/webrtc/modules/audio_coding/codecs/ilbc/interface/ilbc.h index 9ab2e86a95..ccb3f5e3ed 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/interface/ilbc.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/interface/ilbc.h @@ -22,7 +22,7 @@ * Define the fixpoint numeric formats */ -#include "typedefs.h" +#include "webrtc/typedefs.h" /* * Solution to support multiple instances diff --git a/webrtc/modules/audio_coding/codecs/ilbc/vq3.h b/webrtc/modules/audio_coding/codecs/ilbc/vq3.h index e2e2ab5253..b146ea3d85 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/vq3.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/vq3.h @@ -19,7 +19,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ3_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ3_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" /*----------------------------------------------------------------* * Vector quantization of order 3 (based on MSE) diff --git a/webrtc/modules/audio_coding/codecs/ilbc/vq4.h b/webrtc/modules/audio_coding/codecs/ilbc/vq4.h index 5ae4c8747d..9263759367 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/vq4.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/vq4.h @@ -19,7 +19,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ4_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ4_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" /*----------------------------------------------------------------* * Vector quantization of order 4 (based on MSE) diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/interface/isacfix.h b/webrtc/modules/audio_coding/codecs/isac/fix/interface/isacfix.h index da7163e999..7cd2954408 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/interface/isacfix.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/interface/isacfix.h @@ -14,8 +14,7 @@ /* * Define the fixpoint numeric formats */ -#include "typedefs.h" - +#include "webrtc/typedefs.h" typedef struct { void *dummy; diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_internal.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_internal.h index 7a5f7462fa..2aa587fc0d 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_internal.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_internal.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" #if defined(__cplusplus) || defined(c_plusplus) extern "C" { diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_tables.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_tables.h index 9a888e4fc6..c96fb05b82 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_tables.h @@ -19,7 +19,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_TABLES_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" #if defined(__cplusplus) || defined(c_plusplus) extern "C" { diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c index d5b2d0e919..d7d198caf3 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c @@ -16,7 +16,7 @@ #include "settings.h" #include "signal_processing_library.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" /* Filter ar_g_Q0[] and ar_f_Q0[] through an AR filter with coefficients * cth_Q15[] and sth_Q15[]. diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/lpc_tables.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/lpc_tables.h index 587bcd4737..7e8121e834 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/lpc_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/lpc_tables.h @@ -18,8 +18,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_LPC_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_LPC_TABLES_H_ -#include "typedefs.h" - +#include "webrtc/typedefs.h" /* indices of KLT coefficients used */ extern const uint16_t WebRtcIsacfix_kSelIndGain[12]; diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_gain_tables.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_gain_tables.h index c4e0be594b..4aab2b6c41 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_gain_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_gain_tables.h @@ -18,8 +18,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_GAIN_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_GAIN_TABLES_H_ -#include "typedefs.h" - +#include "webrtc/typedefs.h" /********************* Pitch Filter Gain Coefficient Tables ************************/ /* cdf for quantized pitch filter gains */ diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_lag_tables.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_lag_tables.h index bb8b39ac58..a5478b2eb2 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_lag_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_lag_tables.h @@ -18,9 +18,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_LAG_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_PITCH_LAG_TABLES_H_ - -#include "typedefs.h" - +#include "webrtc/typedefs.h" /********************* Pitch Filter Lag Coefficient Tables ************************/ diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/spectrum_ar_model_tables.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/spectrum_ar_model_tables.h index 115509af01..55832063f4 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/spectrum_ar_model_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/spectrum_ar_model_tables.h @@ -19,9 +19,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_SPECTRUM_AR_MODEL_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_SPECTRUM_AR_MODEL_TABLES_H_ -#include "typedefs.h" #include "settings.h" - +#include "webrtc/typedefs.h" /********************* AR Coefficient Tables ************************/ /* cdf for quantized reflection coefficient 1 */ diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h index bd20ba0165..64171f74d1 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/structs.h @@ -21,7 +21,7 @@ #include "common_audio/signal_processing/include/signal_processing_library.h" #include "modules/audio_coding/codecs/isac/fix/source/settings.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" /* Bitstream struct for decoder */ typedef struct Bitstreamstruct_dec { diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h b/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h index dba87493ab..19d1bf31d5 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h @@ -18,7 +18,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_CRC_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_CRC_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" /**************************************************************************** * WebRtcIsac_GetCrc(...) diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.c b/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.c index 67e77b53f7..d59f7489ee 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.c +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.c @@ -17,16 +17,16 @@ */ #include "encode_lpc_swb.h" -#include "typedefs.h" -#include "settings.h" - -#include "lpc_shape_swb12_tables.h" -#include "lpc_shape_swb16_tables.h" -#include "lpc_gain_swb_tables.h" +#include #include #include -#include + +#include "lpc_gain_swb_tables.h" +#include "lpc_shape_swb12_tables.h" +#include "lpc_shape_swb16_tables.h" +#include "settings.h" +#include "webrtc/typedefs.h" /****************************************************************************** * WebRtcIsac_RemoveLarMean() diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.h b/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.h index eab98c157d..3dd2311bab 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/encode_lpc_swb.h @@ -19,10 +19,9 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_ENCODE_LPC_SWB_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_ENCODE_LPC_SWB_H_ -#include "typedefs.h" #include "settings.h" #include "structs.h" - +#include "webrtc/typedefs.h" /****************************************************************************** * WebRtcIsac_RemoveLarMean() diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.c b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.c index 8ce004b28e..5cc6c11c70 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.c +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.c @@ -18,7 +18,7 @@ #include "lpc_gain_swb_tables.h" #include "settings.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" const double WebRtcIsac_kQSizeLpcGain = 0.100000; diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.h b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.h index 121d05e7d8..c163f4ab55 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_gain_swb_tables.h @@ -20,7 +20,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_LPC_GAIN_SWB_TABLES_H_ #include "settings.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" extern const double WebRtcIsac_kQSizeLpcGain; diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.c b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.c index 2c5698fbbb..599b89d8a8 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.c +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.c @@ -18,7 +18,7 @@ #include "lpc_shape_swb12_tables.h" #include "settings.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" /* * Mean value of LAR diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.h b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.h index cef885a7f2..256f1d4a73 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb12_tables.h @@ -20,7 +20,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_LPC_SHAPE_SWB12_TABLES_H_ #include "settings.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" extern const double WebRtcIsac_kMeanLarUb12[UB_LPC_ORDER]; diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.c b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.c index 0f567ed7d7..6176d2cf76 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.c +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.c @@ -18,7 +18,7 @@ #include "lpc_shape_swb16_tables.h" #include "settings.h" -#include "typedefs.h" +#include "webrtc/typedefs.h" /* * Mean value of LAR diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.h b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.h index a4b3a59f46..3e1bdf71df 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/lpc_shape_swb16_tables.h @@ -20,8 +20,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_LPC_SHAPE_SWB16_TABLES_H_ #include "settings.h" -#include "typedefs.h" - +#include "webrtc/typedefs.h" extern const double WebRtcIsac_kMeanLarUb16[UB_LPC_ORDER]; diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/os_specific_inline.h b/webrtc/modules/audio_coding/codecs/isac/main/source/os_specific_inline.h index 891c67ccda..2b446e932d 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/os_specific_inline.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/os_specific_inline.h @@ -13,7 +13,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_OS_SPECIFIC_INLINE_H_ #include -#include "typedefs.h" +#include "webrtc/typedefs.h" #if defined(WEBRTC_POSIX) #define WebRtcIsac_lrint lrint diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_gain_tables.h b/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_gain_tables.h index e7518b1681..8d708ce68f 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_gain_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_gain_tables.h @@ -18,7 +18,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_PITCH_GAIN_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_PITCH_GAIN_TABLES_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" /* header file for coding tables for the pitch filter side-info in the entropy coder */ /********************* Pitch Filter Gain Coefficient Tables ************************/ diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_lag_tables.h b/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_lag_tables.h index 7c72571ffb..01989f0188 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_lag_tables.h +++ b/webrtc/modules/audio_coding/codecs/isac/main/source/pitch_lag_tables.h @@ -18,7 +18,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_PITCH_LAG_TABLES_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_SOURCE_PITCH_LAG_TABLES_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" /* header file for coding tables for the pitch filter side-info in the entropy coder */ /********************* Pitch Filter Lag Coefficient Tables ************************/ diff --git a/webrtc/modules/audio_coding/codecs/pcm16b/include/pcm16b.h b/webrtc/modules/audio_coding/codecs/pcm16b/include/pcm16b.h index 9db65ddab3..9c96b83042 100644 --- a/webrtc/modules/audio_coding/codecs/pcm16b/include/pcm16b.h +++ b/webrtc/modules/audio_coding/codecs/pcm16b/include/pcm16b.h @@ -14,7 +14,7 @@ * Define the fixpoint numeric formats */ -#include "typedefs.h" +#include "webrtc/typedefs.h" #ifdef __cplusplus extern "C" { diff --git a/webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.c b/webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.c index 3ade03724c..af6720f63a 100644 --- a/webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.c +++ b/webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.c @@ -16,7 +16,7 @@ #include #endif -#include "typedefs.h" +#include "webrtc/typedefs.h" #define HIGHEND 0xFF00 #define LOWEND 0xFF diff --git a/webrtc/modules/audio_coding/main/test/TimedTrace.h b/webrtc/modules/audio_coding/main/test/TimedTrace.h index 237b329e77..ef9609a267 100644 --- a/webrtc/modules/audio_coding/main/test/TimedTrace.h +++ b/webrtc/modules/audio_coding/main/test/TimedTrace.h @@ -11,7 +11,7 @@ #ifndef TIMED_TRACE_H #define TIMED_TRACE_H -#include "typedefs.h" +#include "webrtc/typedefs.h" #include #include