Hi, I am trying to use VLC inside a Qt 5 application. Here is the code I use: #include "vlcwidget.h" VLCWidget::VLCWidget(QWidget *parent) : QWidget(parent) { holder = new QWidget(this); const char * const vlc_args[] = { "-I", "dummy", /* Don't use any interface */ &quo...