Changeset 5798
- Timestamp:
- May 29, 2018 9:02:51 AM (6 years ago)
- Location:
- pjproject/trunk/third_party
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/third_party/ilbc/iLBC_decode.c
r4728 r5798 252 252 /* update memory */ 253 253 254 mem cpy(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float));254 memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float)); 255 255 memcpy(mem+CB_MEML-SUBL, 256 256 … … 300 300 /* update memory */ 301 301 302 mem cpy(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float));302 memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float)); 303 303 memcpy(mem+CB_MEML-SUBL, 304 304 &reverseDecresidual[subframe*SUBL], -
pjproject/trunk/third_party/ilbc/iLBC_encode.c
r638 r5798 309 309 /* update memory */ 310 310 311 mem cpy(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float));311 memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float)); 312 312 memcpy(mem+CB_MEML-SUBL, 313 313 … … 387 387 /* update memory */ 388 388 389 mem cpy(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float));389 memmove(mem, mem+SUBL, (CB_MEML-SUBL)*sizeof(float)); 390 390 memcpy(mem+CB_MEML-SUBL, 391 391 &reverseDecresidual[subframe*SUBL],
Note: See TracChangeset
for help on using the changeset viewer.