我看DEC6713_CODEC例子的程序中没有延时处理,我想加进去,就是要用原程序中写的但没有使用的一段可是我debug发现内存申请始终失败,为什么,要修改设置的什么地方? 例程中的内容如下我想用它的pEchoBuf 缓冲区 /* * ======== initEchoBuffer ======== * Allocate echo buffer and fill with silence */ int initEchoBuffer() { pEchoBuf = MEM_calloc(0, echoBufSize * sizeof(short), BUFALIGN); return (pEchoBuf == MEM_ILLEGAL) ? -1 : 0; }
|