Reputation: 4853
I try add and compile ffmpeg library in my own android application. When I add native support and add ffmpeg library in jni, Eclipse show many errors, something like:
uint8_t *bufferConverted=NULL;
static GLuint textureConverted=0;
errors:
Type 'uint8_t' could not be resolved
Symbol 'NULL' could not be resolved
Type 'GLuint' could not be resolved
How can I resolve this issue?
Upvotes: 1
Views: 3702
Reputation: 4853
I resolve this issue!!)) In project properties -> C/C++ General -> Paths and symbols -> Includes and add folowing path:
C:\android-ndk\platforms\android-5\arch-arm\usr\include
Upvotes: 5