Replace legacy G_CONST with const.
BUG=1608 Review URL: https://webrtc-codereview.appspot.com/1310005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3814 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@@ -52,8 +52,8 @@ static int16_t plc_filterma_Fast(
|
||||
|
||||
for (i = 0; i < len; i++)
|
||||
{
|
||||
G_CONST int16_t *b_ptr = &B[0];
|
||||
G_CONST int16_t *x_ptr = &In[i];
|
||||
const int16_t *b_ptr = &B[0];
|
||||
const int16_t *x_ptr = &In[i];
|
||||
|
||||
o = (int32_t)0;
|
||||
|
||||
|
||||
@@ -301,7 +301,7 @@ int WebRtcNetEQ_RecInInternal(MCUInst_t *MCU_inst, RTPPacket_t *RTPpacketInput,
|
||||
|
||||
MCU_inst->codec_DB_inst.funcUpdBWEst[codecPos](
|
||||
MCU_inst->codec_DB_inst.codec_state[codecPos],
|
||||
(G_CONST uint16_t *) RTPpacket[0].payload,
|
||||
(const uint16_t *) RTPpacket[0].payload,
|
||||
(int32_t) RTPpacket[0].payloadLen, RTPpacket[0].seqNumber,
|
||||
(uint32_t) RTPpacket[0].timeStamp, (uint32_t) uw32_timeRec);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user