Remove or rename typedefs with _t prefixes.

_t prefixes are reserved for additional typenames in POSIX.

R=henrik.lundin@webrtc.org, hta@webrtc.org, stefan@webrtc.org
BUG=162

Review URL: https://webrtc-codereview.appspot.com/36559004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7931 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org
2014-12-17 13:43:55 +00:00
parent 5263c58923
commit e728ee03ba
16 changed files with 165 additions and 140 deletions

View File

@ -52,8 +52,8 @@ int main(int argc, char* argv[])
int packetlosscount = 0;
int frameLen;
int16_t speechType;
iLBC_encinst_t *Enc_Inst;
iLBC_decinst_t *Dec_Inst;
IlbcEncoderInstance *Enc_Inst;
IlbcDecoderInstance *Dec_Inst;
#ifdef __ILBC_WITH_40BITACC
/* Doublecheck that long long exists */

View File

@ -44,8 +44,8 @@ int main(int argc, char* argv[])
short len, mode, pli;
int blockcount = 0;
iLBC_encinst_t *Enc_Inst;
iLBC_decinst_t *Dec_Inst;
IlbcEncoderInstance *Enc_Inst;
IlbcDecoderInstance *Dec_Inst;
#ifdef JUNK_DATA
int i;
FILE *seedfile;