Delete root header file typedef.h.
Usage replaced with stdint.h, rtc_base/system/arch.h and rtc_base/system/unused.h, as appropriate. Bug: webrtc:6854 Change-Id: I97225465d14b969903d92979e2df3c3c05d35f18 Reviewed-on: https://webrtc-review.googlesource.com/90249 Reviewed-by: Niklas Enbom <niklas.enbom@webrtc.org> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24100}
This commit is contained in:
@ -20,7 +20,10 @@
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_CB_CONSTRUCT_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "rtc_base/system/unused.h"
|
||||
|
||||
/*----------------------------------------------------------------*
|
||||
* Construct decoded vector from codebook and gains.
|
||||
|
||||
@ -20,7 +20,6 @@
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_CONSTANTS_H_
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/* high pass filters */
|
||||
|
||||
|
||||
@ -16,6 +16,9 @@
|
||||
|
||||
******************************************************************/
|
||||
|
||||
// Defines WEBRTC_ARCH_BIG_ENDIAN, used below.
|
||||
#include "rtc_base/system/arch.h"
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "modules/audio_coding/codecs/ilbc/simple_lsf_dequant.h"
|
||||
#include "modules/audio_coding/codecs/ilbc/decoder_interpolate_lsf.h"
|
||||
|
||||
@ -19,7 +19,10 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DECODE_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DECODE_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "rtc_base/system/unused.h"
|
||||
|
||||
/*----------------------------------------------------------------*
|
||||
* main decoder function
|
||||
|
||||
@ -20,7 +20,10 @@
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DECODE_RESIDUAL_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "rtc_base/system/unused.h"
|
||||
|
||||
/*----------------------------------------------------------------*
|
||||
* frame residual decoder function (subrutine to iLBC_decode)
|
||||
|
||||
@ -21,7 +21,6 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "common_audio/signal_processing/include/signal_processing_library.h"
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
|
||||
/* general codec settings */
|
||||
|
||||
|
||||
@ -18,6 +18,9 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
// Defines WEBRTC_ARCH_BIG_ENDIAN, used below.
|
||||
#include "rtc_base/system/arch.h"
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "modules/audio_coding/codecs/ilbc/lpc_encode.h"
|
||||
#include "modules/audio_coding/codecs/ilbc/frame_classify.h"
|
||||
|
||||
@ -20,8 +20,11 @@
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_GET_CD_VEC_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
||||
#include "rtc_base/system/unused.h"
|
||||
|
||||
// Returns true on success, false on failure. In case of failure, the decoder
|
||||
// state may be corrupted and needs resetting.
|
||||
|
||||
@ -19,12 +19,7 @@
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_ILBC_H_
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
/*
|
||||
* Define the fixpoint numeric formats
|
||||
*/
|
||||
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
#include <stdint.h>
|
||||
|
||||
/*
|
||||
* Solution to support multiple instances
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ3_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ3_H_
|
||||
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
#include <stdint.h>
|
||||
|
||||
/*----------------------------------------------------------------*
|
||||
* Vector quantization of order 3 (based on MSE)
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
#ifndef MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ4_H_
|
||||
#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_VQ4_H_
|
||||
|
||||
#include "typedefs.h" // NOLINT(build/include)
|
||||
#include <stdint.h>
|
||||
|
||||
/*----------------------------------------------------------------*
|
||||
* Vector quantization of order 4 (based on MSE)
|
||||
|
||||
Reference in New Issue
Block a user