I am using QT 4.7 and VLC 1.1.4
When I was trying to create an instance of the libvlc, I got a NULL pointer, why?
Here is the example of the creation:
libvlc_instance_t *pVLCInstance = libvlc_new (0, NULL);
I also tried the following, still not luck:
const char * const vlc_args[] = {
"--no-media-library",
"--reset-plugins-cache",
"--no-stats",
"--no-osd",
"--no-video-title-show"};
libvlc_instance_t *pVLCInstance = libvlc_new (sizeof(vlc_args) / sizeof(vlc_args[0]), vlc_args);
Any clue for me? What are the default arguments that I can use without any conflict? Thanks.