I think this is a bug in Qt Module. The Qt frameworks destroy all of child widgets automatically, so if you have code like this: /** * QObject in this code can be: QWidget, QList, and etc. */ //In parent Object or main code QObject sObject(...); QObject* object; object = &sObject; //and some whe...
I try to open vlc on terminal with vlc -vvv and compare with log created by qt program. It's the same. So I don't know why it does not works with QT program.
I open vlc in the following details: - Open terminal - Type vlc, it open vlc gui application - Select a file to play by File > Open File ... (my example is a .mov file) When I click 'Close button' it show the following error message in Terminal: Program received signal SIGSEGV, Segmentation fault. 0...
I try with other file type it still works, and with vlc compiled program it works file. But, with libvlc in QT Program I got the following message, and no sound. The output: [0x7f6d20001a70] mp4 stream warning: detected moov hidden in a free box ... [0x7f6d18001a70] mp4 stream warning: unknown box t...
As you said, I try to parse a audio CD to get list of sub-items like this: libvlc_media_t* media = libvlc_media_new_location(instance, "cdda:///dev/cdrom3"); libvlc_media_list_t* mediaList = libvlc_media_subitems(media); But, I don't know why mediaList is NULL value after call libvlc_media...