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:
pbos@webrtc.org
2013-04-10 18:06:57 +00:00
parent ab9202b673
commit e4b6064f8e
11 changed files with 53 additions and 57 deletions

View File

@@ -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;