Я новичок в нативном Android, пытаюсь скомпилировать собственный образец аудио (Android 2.3), при этом он показывает ошибку: undeclared следующим образом
это часть моих ошибок:
apps/na/project/jni/native-audio-jni.c:562: error: 'bqPlayerObject' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:565: error: 'bqPlayerPlay' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:566: error: 'bqPlayerBufferQueue' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:567: error: 'bqPlayerEffectSend' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:571: error: 'fdPlayerObject' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:574: error: 'fdPlayerPlay' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:575: error: 'fdPlayerSeek' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:579: error: 'uriPlayerObject' undeclared(first use in this function)
apps/na/project/jni/native-audio-jni.c:582: error: 'uriPlayerPlay' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:583: error: 'uriPlayerSeek' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:587: error: 'recorderObject' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:590: error: 'recorderRecord' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:591: error: 'recorderBufferQueue' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:595: error: 'outputMixObject' undeclared(first use in this function)
apps/na/project/jni/native-audio-jni.c:598: error: 'outputMixEnvironmentalReverb' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:602: error: 'engineObject' undeclared (first use in this function)
apps/na/project/jni/native-audio-jni.c:605: error: 'engineEngine' undeclared (first use in this function)
make: *** [out/apps/na/armeabi/objs/native-audio-jni/native-audio-jni.o] Error 1
Может ли кто-нибудь помочь мне скомпилировать его?Я никогда не сталкивался с API openMAX прежде.