-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fatal Signal 6 (SIGABRT), code -6 with Java CV 1.2 #527
Comments
This just means that you are not using JavaCPP 1.2, even though you say you are. Please figure out why this is happening. |
Maybe it's caused by these two lines: // compile files('libs/ffmpeg-android-arm.jar')
// compile files('libs/opencv-android-arm.jar') You need to uncomment that or find a way to include those files anyway. |
Thanks for the reply and help Sam! I've tried including the arm versions of ffmpeg and opencv as well. Same error still remains. I've tried linking it the repository in maven central as well using
It threw an error as well. Fatal signal 11 (SIGSEGV). I added these files manually after reading that there was a history of problems when linking to maven directly #412 I downloaded these files from here and the respective dependency links. I removed all files of the earlier version and added these files in. I will double check and verify if any file from the old version is remained and get back to you. Thanks again! |
SIGSEGV, that's most likely caused by a mistake in your code...
|
This might help with that: |
I deleted all files from libs, removed dependencies and included them in a clean manner. Still the same error for me. The code works fine with JavaCV 1.1 though save from a little anomalously behavior (Like each first use of the app doesn't seem to grab frames properly. Couldn't pin the reason why it fails to anything.), so I doubt it's from the code. The code crashes when it reaches FFmpegFrameGrabber initialization (First instance of JavaCV code) with JavaCV 1.2 included manually. Through maven it was SIGSEGV. I will try to use the native debugger and see what I pull up tomorrow. Thanks! |
Did you guys figure this out ?? I am experiencing the same bug. Steps taken :
Note that this works with javacv 1.1 |
Hi
I was trying to update JavaCV from 1.1 to 1.2 and now project crashes every time with
My build.gradle file
Versions:
Javacv - 1.2
Javacpp - 1.2.4
ffmpeg - 3.1.2-1.2
opencv - 3.1.0-1.2
Anyone faced the same issue before? What am I doing wrong?
The text was updated successfully, but these errors were encountered: