I\'ve got some C functions which I am calling through JNI which take a pointer to a structure, and some other functions which will allocate/free a pointer to the same type of structure so that it is a
I\'m looking for a way to decode AAC natively to PCM on Android. The decoder source code is at https://android.googlesource.com/platform/external/opencore/+/master/codecs_v2/audio/aac/dec, but I\'m no
I compiled the hello-exe sample, which is conta开发者_Python百科ined in the Android ndk. The problem is that I don\'t know how to run it on the emulator (I\'m using the Windows emulator).
I was wondering if there is an easy way to get the current time in native Android code. Opt开发者_Python百科imally it would be something comparable to System.getTimeMillies(). I will only be using it
Does anyone knows some convinient method to capture video to file or stream from OpenGL app on Android device?
I want to run tcpdump on the NDK using Process.start() and want to capture this output to a buffer.Can anybody show me how i can do this?Also is the process created in the sam开发者_如何转开发e Dalvik
I am writing an android game that involves some c++. I have a fairly开发者_开发技巧 repeatable crash that seems to be due to my c++ code
I\'m trying to re-partition an SDCard on Android, with root access. I have the 512 byte MBR file, and it shows up as this:
I would like to know how to intercept incoming calls and also how to forward them. I know there are several questions regarding this topic here and elsewhere on the net, but all the answers use the an
I learned about the debug tool of \"ndk-gdb\" from Android NDK r4. Now I can start debugging the hello-jni sample(although some issue exists).