libvlc_event_detach crashing. qt linux
Posted: 26 Jun 2019 21:02
Hi: I have problems with libvlc_event_detach
I am working with Qt 5.9.5, ubuntu 18.04
qmake /home/andreski/myProject/myProject.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug && /usr/bin/make qmake_all
my problem may be this ?
https://trac.videolan.org/vlc/ticket/16503
maybe an error choosing the libraries?
I checked all instances are created and not null, but crash remains.
I am working with Qt 5.9.5, ubuntu 18.04
qmake /home/andreski/myProject/myProject.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug && /usr/bin/make qmake_all
my problem may be this ?
https://trac.videolan.org/vlc/ticket/16503
maybe an error choosing the libraries?
I checked all instances are created and not null, but crash remains.
Code: Select all
QList<libvlc_event_e> list;
list << libvlc_MediaPlayerEndReached
<< libvlc_MediaPlayerEncounteredError
<< libvlc_MediaPlayerPositionChanged;
foreach (const libvlc_event_e &event, list)
{
libvlc_event_detach(manager, event, f_callback, user_data);
}