hello everyone:
The board I use is IMX6q,Android is 7.1.1.
I'm having some problems.I want to add a print to the WebRtcNsx_ProcessCore function in the nsx_core. c file to print some data information,I used the following method:
1、
#include <utils/Log.h>
#define LOG_TAG "ns_core"
#undef NDEBUG
//#define LOG_NEDEBUG 0
ALOGE("Run WebRtcNs_ProcessCore");
2、
printf("enter WebRtcNsx_ProcessCore()\n");
Being able to determine that the added code was executed,but the same string is not seen in the terminal print.
The nsx_core.c path is $SDK/external/webrtc/webrtc/modules/audio_processing/ns/
Can you give me some help?
Thank you