Page 1 of 1

vlc 3.0.0 crash when visualization enabled

Posted: 05 Jun 2016 05:16
by dreadLocks
Hello,

I'm using vlc in a win32 C++ application. I wanted to turn on visualization but it crashes.

Here is my code:

char *arg[20];
int ix = 0;

arg[ix++] = "--reset-config";
arg[ix++] = "--ignore-config";
arg[ix++] = "--audio-visual visual";
arg[ix++] = "--effect-list spectrum";

inst = libvlc_new(ix,arg);
m = libvlc_media_new_path(inst, "D:\\MUD\\mp3\\Sugar Bum Bum.mp3"); <<<<<<<<<----- crashes in here


If comment out the two lines --audio-visual and --effect-list spectrum it doesnt crash

Anybody knows whats wrong?

Thanks

Re: vlc 3.0.0 crash when visualization enabled

Posted: 28 Jun 2016 10:17
by Jean-Baptiste Kempf
Please share a backtrace.