This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

8168能同时实现音频的硬解和硬编码吗?



大神们,请问DM8168能实现硬件的音频转码的功能吗?

因为我在使用DVR RDK4.1中的

ADEC_CREATE_PARAMS_S adecParams

adecParams.decoderType = AUDIO_CODEC_TYPE_AAC_LC;
adecParams.desiredChannelMode = 2;

Adec_create(&adecParams);

以及

AENC_CREATE_PARAMS_S aencParams;
aencParams.bitRate =96000;
aencParams.encoderType = AUDIO_CODEC_TYPE_AAC_LC;
aencParams.numberOfChannels = 2;
Aenc_create(&aencParams);
来申请编解码的音频资源后,会出现程序崩溃
*** Error in `./transcoder': corrupted double-linked list: 0x002736e0 ***

但是单独执行Adec_create或者Aenc_create则没问题,请问如何解决呢?谢谢