Search found 130 matches

Go to advanced search

by mangokm40
17 Sep 2010 20:43
Forum: Development around libVLC
Topic: toggle or switch audio tracks
Replies: 4
Views: 1088

Re: toggle or switch audio tracks

Here's a basic function that will scroll through the audio tracks: libvlc_media_player_t* vlcPlayer; bool SetNextAudioTrack(bool previous) { int total = libvlc_audio_get_track_count(vlcPlayer); if (total == 0) return false; int current = libvlc_audio_get_track(vlcPlayer); current = previous ? curren...
by mangokm40
13 Jul 2010 18:34
Forum: Development around libVLC
Topic: multiple '.text' sections found with different attributes
Replies: 4
Views: 1676

Re: multiple '.text' sections found with different attribute

As I did in version 1.0.5, I used this information:
http://wiki.videolan.org/GenerateLibFromDll

The warning is gone.
by mangokm40
13 Jul 2010 17:09
Forum: Development around libVLC
Topic: multiple '.text' sections found with different attributes
Replies: 4
Views: 1676

Re: multiple '.text' sections found with different attribute

I just downloaded the 1.1.0 version. I'm getting this message from the linker. Should I create my own '.lib' file as I did for version 1.0.5?
Thanks for your time.
by mangokm40
21 May 2010 14:57
Forum: Development around libVLC
Topic: Where is the documentation...
Replies: 2
Views: 518

Re: Where is the documentation...

Thanx for taking the time to answer such a dumb query. :)
by mangokm40
20 May 2010 20:17
Forum: Development around libVLC
Topic: Where is the documentation...
Replies: 2
Views: 518

Where is the documentation...

...for the libvlc API? I found nothing in the 'Documentation/Support' screen.

Thank you

Go to advanced search