Search found 4 matches

Go to advanced search

by matthewdumas
02 Jun 2020 04:00
Forum: Development around libVLC
Topic: libvlcpp MediaPlayerEventManager callback question
Replies: 1
Views: 393

Re: libvlcpp MediaPlayerEventManager callback question

If anyone is waiting for the answer to this, the issue was actually in my reading of the SendMessage Win32 call. SendMessage is serial, so it was sending a message and processing in a different thread, causing issues. PostMessage, however, returns immediately, so by switching to PostMessage the issu...
by matthewdumas
28 May 2020 23:09
Forum: Development around libVLC
Topic: libvlcpp MediaPlayerEventManager callback question
Replies: 1
Views: 393

libvlcpp MediaPlayerEventManager callback question

I'm working in a visual studio c++/MFC project. I've got a single main dialog with two list boxes, where you can add a "station" which has its own rudimentary playlist. If you click an item in the playlist, you can click play/stop to play or stop the video. I want to make this so that my c...
by matthewdumas
28 May 2020 22:46
Forum: Development around libVLC
Topic: Using LibVLC in Visual Studio (C++) 2019
Replies: 2
Views: 2404

Re: Using LibVLC in Visual Studio (C++) 2019

Just in case someone else is looking for the solution, I ended up switching to libvlcpp after spending several hours with trying to get something going. Basically, you need to define ssize_t in order to get it to work with 3.x.x. libvlcpp gets around this with this code: #ifdef _MSC_VER using ssize_...
by matthewdumas
19 May 2020 22:36
Forum: Development around libVLC
Topic: Using LibVLC in Visual Studio (C++) 2019
Replies: 2
Views: 2404

Using LibVLC in Visual Studio (C++) 2019

I recently decided to refresh my C++ skills a bit after not having needed to use them for a while with a project what will utilize LibVLC (something I wanted to learn more about), but I've run into some serious issues just getting a demo working. I'm using Visual Studio/C++. I've downloaded the LibV...

Go to advanced search