WebRtc_Word32 => int32_t etc. in audio_coding/

BUG=314

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3789 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org
2013-04-09 00:28:06 +00:00
parent 6faf71d27b
commit 0946a56023
382 changed files with 8469 additions and 8488 deletions

View File

@ -36,26 +36,26 @@ typedef struct
{
DSPInst_t DSPinst; /* DSP part of the NetEQ instance */
MCUInst_t MCUinst; /* MCU part of the NetEQ instance */
WebRtc_Word16 ErrorCode; /* Store last error code */
int16_t ErrorCode; /* Store last error code */
#ifdef NETEQ_STEREO
WebRtc_Word16 masterSlave; /* 0 = not set, 1 = master, 2 = slave */
int16_t masterSlave; /* 0 = not set, 1 = master, 2 = slave */
#endif /* NETEQ_STEREO */
} MainInst_t;
/* Struct used for communication between DSP and MCU sides of NetEQ */
typedef struct
{
WebRtc_UWord32 playedOutTS; /* Timestamp position at end of DSP data */
WebRtc_UWord16 samplesLeft; /* Number of samples stored */
WebRtc_Word16 MD; /* Multiple description codec information */
WebRtc_Word16 lastMode; /* Latest mode of NetEQ playout */
WebRtc_Word16 frameLen; /* Frame length of previously decoded packet */
uint32_t playedOutTS; /* Timestamp position at end of DSP data */
uint16_t samplesLeft; /* Number of samples stored */
int16_t MD; /* Multiple description codec information */
int16_t lastMode; /* Latest mode of NetEQ playout */
int16_t frameLen; /* Frame length of previously decoded packet */
} DSP2MCU_info_t;
/* Initialize instances with read and write address */
int WebRtcNetEQ_DSPinit(MainInst_t *inst);
/* The DSP side will call this function to interrupt the MCU side */
int WebRtcNetEQ_DSP2MCUinterrupt(MainInst_t *inst, WebRtc_Word16 *pw16_shared_mem);
int WebRtcNetEQ_DSP2MCUinterrupt(MainInst_t *inst, int16_t *pw16_shared_mem);
#endif