【求助-在线等】请问V853 Tina4 MPP下的sample_aec 例程如何运行?我需要测试一下AEC效果,没有运行成功

我使用的sdk为V853 AI课程配套Tina4 SDK。使用的硬件为课程配套V853开发板,我想要测试一下AEC效果,根据文档提示编译运行了external/eyesee-mpp/middleware/sun8iw21/sample/sample_aec例程。程序运行结束后输出的ai_cap.wav只有一个wav头44byte大小。我尝试在保存wav的线程里加了一些debug日志,结果发现拿不到音频帧AiSaveDataThread: AW_MPI_AI_GetFrame timeout, buffer empty.。请问运行这个aec例程应该如何修改音频配置。我在menuconfig下勾选了 aec 模块,我当前的asound.conf配置如下:

pcm.!default {
type asym
playback.pcm “hw:{CARD=audiocodec, DEV=0}”
capture.pcm “hw:0,0”
}

pcm.PlaybackRateDmix {
type plug
slave {
pcm {
type dmix
ipc_key 1111
ipc_perm 0666
slave {
pcm “hw:0,0”
format S16_LE
rate 16000
channels 1
period_size 1024
periods 8
}
}
}
rate_converter “linear”
}

#pcm.resample rely on alsa-plugin and libspeexdsp. Select them in menuconfig if we want to use plugin pcm.resample.
pcm.resample {
type plug
slave {
pcm “hw:0,0”
format S16_LE
rate 16000
channels 1
}
rate_converter “speexrate”
}

pcm.CaptureMic {
type hooks
slave.pcm “hw:0,0”
hooks.0 {
type ctl_elems
hook_args [
{
name “MIC1 Switch”
preserve true
optional true
value 1
}
]
}
}

pcm.eq {
type awequal
slave.pcm “hw:0,0”
config_file “/etc/awequal.conf”
tuning_support true
verbose true
}

参考这个帖子修改后没有成功:https://bbs.aw-ol.com/topic/3144/faq-全志v853芯片-tina-v853-audio-dvr如何实现多路mic采集和回声消除