- 21 May, 2009 31 commits
-
-
Rémi Denis-Courmont authored
On Linux, these functions cannot fail. On Windows, mutexes cannot fail and neither can real condition varaibles (but we use events instead to support pre-Vista versions). In practice, the needed resources are allocated as part of the mutex structure and per-thread data. In any case, basically none of the call sites for those functions were checking for errors. It seems best to abort in case of error than to hit undefined behaviour. We probably do not want to clutter the tree with untested never used error paths.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Those two functions can actually fail and leave the handle undefined. vlc_join() and vlc_thread_join() would then crash (say, be undefined), so errors should be taken care of explicitly.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Geoffroy Couprie authored
-
Rémi Denis-Courmont authored
Also remove conflict between browser back/forward and mouse wheel.
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Dominic Spitaler authored
Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
-
Pierre d'Herbemont authored
Doesn't work because variables callback can't be removed from their own callbacks. Some work will be required here.
-
Pierre d'Herbemont authored
Those finer grained locks help the media_list_player.
-
Pierre d'Herbemont authored
Basically pause() might play(). This may need some revamping.
-
Pierre d'Herbemont authored
libvlc_Ended is the state we want to check. When paused, if the media ended before, we need to allow that state.
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
Works here.
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
-
- 20 May, 2009 9 commits
-
-
Pierre Ynard authored
As WinCE doesn't support working directories, this function is basically empty, and merely returns an error.
-
Rémi Duraffort authored
Should fix #2767.
-
Rémi Duraffort authored
-
Rémi Duraffort authored
Conflicts: src/control/media_player.c
-
Rémi Duraffort authored
-
Rémi Duraffort authored
-
Rémi Duraffort authored
-
Rémi Duraffort authored
var_Change(VLC_VAR_GETCHOICES). The memory was freed by a call to var_Change(VLC_VAR_FREELIST). That's not a good idea as we were doing a lookup just to free some memory.
-
Rémi Duraffort authored
-