Hi,
I am using DVR-RDK3.50 for DM8168 EVM.
I am trying to decode AAC audio frames coming from RTSP client. But Adec_process() funtion returns the error "AUDIO: DEC -> AUDIO: Rpe process call failed, status: 1"
See below code,
memcpy((void *)b129AudDecCtrl.inBuf, pBuffer, bufferSize);
b129AudDecCtrl.decPrm.inBuf.dataBufSize = bufferSize;
b129AudDecCtrl.decPrm.inBuf.dataBuf = b129AudDecCtrl.inBuf;
b129AudDecCtrl.decPrm.outBuf.dataBufSize = b129AudDecCtrl.outBufSize;
if(Adec_process(b129AudDecCtrl.decHndl, &b129AudDecCtrl.decPrm) < 0)
{
printf("Failed to processd encoded audio\n");
return -1;
}
pBuffer here in this case is a buffer received from RTSP client and bufferSize is number of bytes that pBuffer contains.
can anyone tell which situation causes this error ?
Seeking quick response.
Shabbir Limdiwala