Search found 16 matches

Go to advanced search

by Rumpel
31 Mar 2011 14:32
Forum: Development around libVLC
Topic: Embedded VLC with Menubar
Replies: 2
Views: 480

Re: Embedded VLC with Menubar

Thanks for the answer =)
by Rumpel
31 Mar 2011 12:21
Forum: Development around libVLC
Topic: Embedded VLC with Menubar
Replies: 2
Views: 480

Embedded VLC with Menubar

Hello,
i have an app where i embed a VLC-Player. So is there some kind of option to activate the menubar, like in fullscreen if i move the mouse(playbutton etc.)?
by Rumpel
30 Mar 2011 15:13
Forum: Development around libVLC
Topic: playlist.stop() wont work... 1.1.7
Replies: 9
Views: 1487

Re: playlist.stop() wont work... 1.1.7

I have no great experience with C#.

But in my case i start a thread call a function like you (set_vlc_stop) and then after i started the thread i call WaitForSingleObject(threadhandle, timeout)
by Rumpel
17 Mar 2011 15:10
Forum: Development around libVLC
Topic: libvlc_media_player_stop hang
Replies: 11
Views: 2348

Re: libvlc_media_player_stop hang

And the result of the story?
by Rumpel
17 Mar 2011 10:28
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: LibVLC Deadlock on libvlc_media_player stop (win32) [Fix

I have still problems but i think it is the right way. EDIT: I have a question. So i get no deadlocks but in some cases if i will stop a video the libvlc_media_player_stop() function needs exactly 30sec to close but only in a few cases not all. Why? EDIT 2: Sorry now i read in the forum that RTSP is...
by Rumpel
16 Mar 2011 15:46
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: LibVLC Deadlock on libvlc_media_player stop (win32) [Fix

solud can you show me a littel bit of code form you as example??
by Rumpel
14 Mar 2011 07:53
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: LibVLC Deadlock on libvlc_media_player stop (win32)

So i removed the vlc_testcancel() call and my app works fine for me at the moment i have no problems. But on other machines with different CPUs i have still the problem with the deadlocks
by Rumpel
10 Mar 2011 13:38
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: LibVLC Deadlock on libvlc_media_player stop (win32)

Okay, i will test it and tell you the result
by Rumpel
08 Mar 2011 15:46
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: Deadlock when closing a form with 2 players (win32)

I think it doesn´t matter which function you call befor you will stop the player. But the aspect of solud is interesting. I will test it in my app EDIT: at the end of the function libvlc_media_player_stop() , input_resource_TerminateVout(p_mi->input.p_resource) is call and sometime i get a deadlock....
by Rumpel
04 Mar 2011 10:09
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: Deadlock when closing a form with 2 players (win32)

So, if i close a media player not all Threads are closed. I don´t know why cause i think i have the right order of function to stop and close a media player libvlc_media_player_set_hwnd(pvideo->mp, NULL); libvlc_media_player_stop(pvideo->mp); libvlc_media_player_release(pvideo->mp); libvlc_release(p...
by Rumpel
25 Feb 2011 07:40
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: Deadlock when closing a form with 2 players (win32)

Maybe could it be that there is a timing problem? EDIT: If i put a breakpoint in debugmode in this function void vlc_cancel (vlc_thread_t thread_id) { #ifndef UNDER_CE QueueUserAPC (vlc_cancel_self, thread_id, 0); <---- BREAKPOINT #else SetEvent (thread_id->cancel_event); #endif } everything is good
by Rumpel
24 Feb 2011 11:58
Forum: Development around libVLC
Topic: LibVLC Deadlock on libvlc_media_player stop (win32) [Fixed]
Replies: 39
Views: 13654

Re: Deadlock when closing a form with 2 players (win32)

I think i have the same problem. I have more then one player in my appilcation and in same cases if i will stop one of the players. I always gets a infinite loop by call vlc_join(vlc_thread_t handle, void **result) (src/win32/thread.c) cause this do-while loop never ends do vlc_testcancel (); while ...
by Rumpel
22 Feb 2011 10:06
Forum: Development around libVLC
Topic: deadlock in libvlc_media_player_stop Version 1.1.4
Replies: 8
Views: 1389

Re: deadlock in libvlc_media_player_stop Version 1.1.4

I have the same problem and i tried version 1.1.5 / 1.1.6 / 1.1.7
by Rumpel
17 Feb 2011 16:07
Forum: Development around libVLC
Topic: VLC 1.1x Mutex Lock problem
Replies: 5
Views: 1306

Re: VLC 1.1x Mutex Lock problem

So i checked the function signature and everything is good. I think it is better i give some more information about my application. I have an application which create more then one vlc instance so that i can play morge videos at the same time. On Windows XP i can call the stop function a few times b...
by Rumpel
11 Feb 2011 08:24
Forum: Development around libVLC
Topic: VLC 1.1x Mutex Lock problem
Replies: 5
Views: 1306

Re: VLC 1.1x Mutex Lock problem

Hi tommy382

how did you fix the problem? Cause i have the same problem by call libvlc_media_player_stop()

Go to advanced search