You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thread 11 "video_player-ar" received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x68809140 (LWP 2949)]
0x75cdaa08 in ?? () from /usr/lib/arm-linux-gnueabihf/libavformat.so.57
(gdb) bt
#0 0x75cdaa08 in ?? () from /usr/lib/arm-linux-gnueabihf/libavformat.so.57
#1 0x75cda9fc in ?? () from /usr/lib/arm-linux-gnueabihf/libavformat.so.57
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
code to reproduce (modified example-basic setup() function) :
string videoPath = ofToDataPath("/home/pi/big_buck_bunny_720p_h264.mov", true);
ofLog() << "videoPath: " << videoPath;
//Somewhat like ofFboSettings we may have a lot of options so this is the current model
ofxOMXPlayerSettings settings;
settings.useHDMIForAudio = true; //default true
settings.enableTexture = true; //default true
settings.enableLooping = true; //default true
settings.enableAudio = true; //default true, save resources by disabling
settings.doFlipTexture = true; //default false
//so either pass in the settings
omxPlayer.setup(settings);
omxPlayer.loadMovie(videoPath);
omxPlayer.start();
The text was updated successfully, but these errors were encountered:
it crashes with a weird backtrace :
code to reproduce (modified example-basic setup() function) :
The text was updated successfully, but these errors were encountered: